summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-sheet/numberdlg.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-sheet/numberdlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-sheet/numberdlg.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/apps/opie-sheet/numberdlg.h b/noncore/apps/opie-sheet/numberdlg.h
new file mode 100644
index 0000000..46af1d0
--- a/dev/null
+++ b/noncore/apps/opie-sheet/numberdlg.h
@@ -0,0 +1,24 @@
1#ifndef NUMBERDLG_H
2#define NUMBERDLG_H
3
4#include <qdialog.h>
5#include <qlabel.h>
6#include <qspinbox.h>
7
8class NumberDialog: public QDialog
9{
10 Q_OBJECT
11
12 // QT objects
13 QLabel *label;
14 QSpinBox *edit;
15
16 public:
17 NumberDialog(QWidget *parent=0);
18 ~NumberDialog();
19
20 int exec(const QString &caption, const QString &text, int value=1, int min=1, int max=99, int step=1);
21 int getValue();
22};
23
24#endif