Se recuerda si se debe mostrar o no la "label" informaci?n.

Corregido bug que provocaba el fallo de YACReader al pasar muy r?pido las p?ginas.
Modificado el di?logo "server config" para que muestre todas las ips y regenere
el c?digo qr en caso de que el usuario cambie la ip.
This commit is contained in:
Luis Ángel San Martín
2013-02-13 22:49:21 +01:00
parent 06174deb7f
commit 154d82a84b
11 changed files with 43 additions and 20 deletions

View File

@ -8,6 +8,7 @@
#include <QPixmap>
#include <QProcess>
#include <QPixmap>
#include <QComboBox>
class ServerConfigDialog : public QDialog
{
@ -15,7 +16,7 @@ Q_OBJECT
public:
ServerConfigDialog(QWidget * parent = 0);
private:
QLineEdit * ip;
QComboBox * ip;
QLineEdit * port;
QPushButton * close;
QPushButton * accept;
@ -26,6 +27,7 @@ Q_OBJECT
public slots:
void generateQR();
void generateQR(const QString & serverAddress);
void regenerateQR(const QString & ip);
void updateImage();
signals:
void portChanged(QString port);