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) (unidiff)
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 @@
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