00001 #ifndef _DIRSETUP_H 00002 #define _DIRSETUP_H 00003 00004 #include <qframe.h> 00005 00006 class QCheckBox; 00007 class QSpinBox; 00008 class QLabel; 00009 00010 class DirImageWidget : public QFrame { 00011 Q_OBJECT 00012 public: 00013 DirImageWidget(); 00014 ~DirImageWidget(); 00015 QCheckBox* chkbox,*recBox; 00016 QSpinBox * recDepth; 00017 QLabel* recDepthLabel,*recWarningLabel; 00018 protected slots: 00019 void recBoxToggled(bool); 00020 }; 00021 00022 #endif
1.4.2