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.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/dialdialog.h b/noncore/apps/opie-console/dialdialog.h
new file mode 100644
index 0000000..5c5b948
--- a/dev/null
+++ b/noncore/apps/opie-console/dialdialog.h
@@ -0,0 +1,29 @@
1
2#ifndef DIALDIALOG_H
3#define DIALDIALOG_H
4
5#include <qdialog.h>
6#include <qstring.h>
7#include <qlcdnumber.h>
8
9class DialDialog : public QDialog {
10
11 Q_OBJECT
12
13public:
14 DialDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
15
16 ~DialDialog();
17
18 QString number();
19
20private:
21 float m_number;
22 QLCDNumber *LCD;
23
24private slots:
25 void slotEnterNumber( int );
26};
27
28
29#endif