summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/dialdialog.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/dialdialog.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/dialdialog.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/dialdialog.h b/noncore/apps/opie-console/dialdialog.h
index 4a74b66..6da26a1 100644
--- a/noncore/apps/opie-console/dialdialog.h
+++ b/noncore/apps/opie-console/dialdialog.h
@@ -1,31 +1,32 @@
1 1
2#ifndef DIALDIALOG_H 2#ifndef DIALDIALOG_H
3#define DIALDIALOG_H 3#define DIALDIALOG_H
4 4
5#include <qdialog.h> 5#include <qdialog.h>
6#include <qstring.h> 6#include <qstring.h>
7#include <qlcdnumber.h> 7#include <qlineedit.h>
8
8 9
9class DialDialog : public QDialog { 10class DialDialog : public QDialog {
10 11
11 Q_OBJECT 12 Q_OBJECT
12 13
13public: 14public:
14 DialDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 15 DialDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
15 16
16 ~DialDialog(); 17 ~DialDialog();
17 18
18 QString number(); 19 QString number();
19 20
20 void setNumber( QString number ); 21 void setNumber( QString number );
21 22
22private: 23private:
23 QString m_number; 24 QString m_number;
24 QLCDNumber *LCD1, *LCD2; 25 QLineEdit *m_dialLine;
25 26
26private slots: 27private slots:
27 void slotEnterNumber( int ); 28 void slotEnterNumber( int );
28}; 29};
29 30
30 31
31#endif 32#endif