diff options
Diffstat (limited to 'src/configgeneralpage.h')
-rwxr-xr-x | src/configgeneralpage.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/configgeneralpage.h b/src/configgeneralpage.h new file mode 100755 index 0000000..270cb47 --- /dev/null +++ b/src/configgeneralpage.h @@ -0,0 +1,69 @@ + + +#ifndef CONFIGGENERALPAGE_H +#define CONFIGGENERALPAGE_H + +#include <configpagebase.h> + +class Config; +class QCheckBox; +class KComboBox; +class KIntSpinBox; +class KLineEdit; +class KPushButton; + +/** + * @short The page for the general configuration + * @author Daniel Faust <[email protected]> + * @version 0.3 + */ +class ConfigGeneralPage : public ConfigPageBase +{ + Q_OBJECT +public: + /** + * Default Constructor + */ + ConfigGeneralPage( Config*, QWidget *parent=0, const char *name=0 ); + + /** + * Default Destructor + */ + virtual ~ConfigGeneralPage(); + +private: + KComboBox* cStartTab; + KComboBox* cDefaultProfile; + QStringList sDefaultProfile; + KComboBox* cDefaultFormat; + QStringList sDefaultFormat; +// KLineEdit* lDir; + //KPushButton* pDirInfo; +// KPushButton* pDirSelect; + KComboBox* cPriority; + QStringList sPriority; + QCheckBox* cUseVFATNames; + QStringList sConflictHandling; + KComboBox* cConflictHandling; + KIntSpinBox* iNumFiles; + KIntSpinBox* iUpdateDelay; + QCheckBox* cAskForNewOptions; + QCheckBox* cExecuteUserScript; + + Config* config; + + int profileIndex( const QString& string ); + int formatIndex( const QString& string ); + +public slots: + void resetDefaults(); + void saveSettings(); + +private slots: +// void selectDir(); + void profileChanged(); + +}; + +#endif // CONFIGGENERALPAGE_H + |