summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/dir/dir_setup.h
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/impl/dir/dir_setup.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/impl/dir/dir_setup.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/impl/dir/dir_setup.h b/noncore/graphics/opie-eye/impl/dir/dir_setup.h
new file mode 100644
index 0000000..932af17
--- a/dev/null
+++ b/noncore/graphics/opie-eye/impl/dir/dir_setup.h
@@ -0,0 +1,22 @@
1#ifndef _DIRSETUP_H
2#define _DIRSETUP_H
3
4#include <qframe.h>
5
6class QCheckBox;
7class QSpinBox;
8class QLabel;
9
10class DirImageWidget : public QFrame {
11 Q_OBJECT
12public:
13 DirImageWidget();
14 ~DirImageWidget();
15 QCheckBox* chkbox,*recBox;
16 QSpinBox * recDepth;
17 QLabel* recDepthLabel,*recWarningLabel;
18protected slots:
19 void recBoxToggled(bool);
20};
21
22#endif