summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/dir/dir_setup.h
Side-by-side diff
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 @@
+#ifndef _DIRSETUP_H
+#define _DIRSETUP_H
+
+#include <qframe.h>
+
+class QCheckBox;
+class QSpinBox;
+class QLabel;
+
+class DirImageWidget : public QFrame {
+ Q_OBJECT
+public:
+ DirImageWidget();
+ ~DirImageWidget();
+ QCheckBox* chkbox,*recBox;
+ QSpinBox * recDepth;
+ QLabel* recDepthLabel,*recWarningLabel;
+protected slots:
+ void recBoxToggled(bool);
+};
+
+#endif