summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/impl/dir/dir_setup.h
authoralwin <alwin>2004-11-02 22:59:10 (UTC)
committer alwin <alwin>2004-11-02 22:59:10 (UTC)
commit6034297853dc1edd6009cfe7c6786d12cab9367a (patch) (side-by-side diff)
tree557639b47018613a32cd59f33f4b5d2b4fcfaf0c /noncore/graphics/opie-eye/impl/dir/dir_setup.h
parentb2cb5b7e90c13c90a6090ab11831f1369675c14b (diff)
downloadopie-6034297853dc1edd6009cfe7c6786d12cab9367a.zip
opie-6034297853dc1edd6009cfe7c6786d12cab9367a.tar.gz
opie-6034297853dc1edd6009cfe7c6786d12cab9367a.tar.bz2
setup dlg into extra files - its a little bit cleaner
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