diff options
Diffstat (limited to 'kwin-styles/cde/config/config.h')
-rw-r--r-- | kwin-styles/cde/config/config.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/kwin-styles/cde/config/config.h b/kwin-styles/cde/config/config.h deleted file mode 100644 index fc7fa136..00000000 --- a/kwin-styles/cde/config/config.h +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef __KDE_CDECONFIG_H -#define __KDE_CDECONFIG_H - -#include <tqcheckbox.h> -#include <tqgroupbox.h> -#include <tqbuttongroup.h> -#include <tqlabel.h> -#include <tqradiobutton.h> -#include <tqhbox.h> -#include <kconfig.h> - -class TQCheckBox; -class TQGroupBox; -class TQVBox; -class TQLabel; -class TQRadioButton; - -class CdeConfig: public TQObject -{ - Q_OBJECT - TQ_OBJECT - - public: - CdeConfig( KConfig* conf, TQWidget* parent ); - ~CdeConfig(); - - // These public signals/slots work similar to KCM modules - signals: - void changed(); - - public slots: - void load( KConfig* conf ); - void save( KConfig* conf ); - void defaults(); - - protected slots: - void slotSelectionChanged(); // Internal use - void slotSelectionChanged( int ); - - private: - KConfig* cdeConfig; - TQCheckBox* cbColorBorder; -// TQCheckBox* cbTitlebarButton; - TQHBox* groupBox; - TQGroupBox* gbSlider; - TQButtonGroup* bgAlign; -}; - - -#endif - -// vim: ts=4 |