00001 #ifndef _BASESETUP_H 00002 #define _BASESETUP_H 00003 00004 #include <opie2/oconfig.h> 00005 00006 #include <qframe.h> 00007 00008 class QVBoxLayout; 00009 class QGridLayout; 00010 class QSpinBox; 00011 class QLabel; 00012 class QCheckBox; 00013 class QSpacerItem; 00014 00015 class BaseSetup:public QFrame 00016 { 00017 Q_OBJECT 00018 public: 00019 BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent=0, const char * name=0, WFlags f=0); 00020 virtual ~BaseSetup(); 00021 00022 public slots: 00023 virtual void save_values(); 00024 00025 protected: 00026 Opie::Core::OConfig *m_cfg; 00027 QVBoxLayout * m_MainLayout; 00028 QGridLayout * m_SlidetimeLayout; 00029 QSpinBox * m_SlideShowTime; 00030 QLabel * m_SlidetimeLabel; 00031 QCheckBox *m_SaveStateAuto; 00032 QSpacerItem *spacer1; 00033 QGridLayout * m_IconsizeLayout; 00034 QSpinBox * m_Iconsize; 00035 QLabel * m_IconsizeLabel; 00036 00037 QGridLayout * m_IntensityLayout; 00038 QSpinBox * m_Intensity; 00039 QLabel * m_IntensityLabel; 00040 00041 }; 00042 00043 #endif
1.4.2