#ifndef CONFIGPAGEBASE_H #define CONFIGPAGEBASE_H #include /** * @short The base for all pages of the config dialog * @author Daniel Faust * @version 0.3 */ class ConfigPageBase : public TQWidget { Q_OBJECT public: /** * Constructor */ ConfigPageBase( TQWidget *parent=0, const char *name=0 ); /** * Destructor */ virtual ~ConfigPageBase(); public slots: virtual void resetDefaults(); virtual void saveSettings(); void cfgChanged(); signals: void configChanged(); }; #endif // CONFIGPAGEBASE_H