Introduce old redir program
[lcapit-junk-code.git] / qt-course / exer355-base-converter / MyWidget.h
blob05e735d9a9568dc3d1c813251ac9e20c459f77c8
1 #ifndef MYWIDGET_H
2 #define MYWIDGET_H
4 #include <QWidget>
6 #define NR_LABELS 4
8 class QLineEdit;
9 class QString;
11 class MyWidget : public QWidget
13 Q_OBJECT;
14 public:
15 MyWidget(QWidget *parent = 0);
16 ~MyWidget();
17 private:
18 QLineEdit *m_qlines[NR_LABELS];
19 QString *text;
20 void resetLines();
22 private slots:
23 void m_update_lines();
26 #endif // MYWIDGET_H