X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingsdlg.h;h=cefc780695a0546daedacf12fbdc737bdc60538d;hp=c4640bde2959809e1e075869bfc02df9d6bb64dd;hb=3361bcc5945293951a62ebd2fb2a21f3b90bd115;hpb=8b68bdc964968d1d988242c37a598ba88cd0551c diff --git a/src/qtui/settingsdlg.h b/src/qtui/settingsdlg.h index c4640bde..cefc7806 100644 --- a/src/qtui/settingsdlg.h +++ b/src/qtui/settingsdlg.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,31 +33,31 @@ class SettingsDlg : public QDialog { void registerSettingsPage(SettingsPage *); void unregisterSettingsPage(SettingsPage *); + SettingsPage *currentPage() const; + + //QSize sizeHint() const; + public slots: void selectPage(const QString &category, const QString &title); private slots: void itemSelected(); void buttonClicked(QAbstractButton *); - void applyChanges(); + bool applyChanges(); + void undoChanges(); + void reload(); + void loadDefaults(); + void setButtonStates(); private: Ui::SettingsDlg ui; + SettingsPage *_currentPage; QHash pages; -}; - -/* -class CoreSettingsPage : public QWidget, SettingsInterface { - Q_OBJECT - - public: - - - private: - Ui::CoreSettingsPage ui; + QHash treeItems; + //QSize recommendedSize; }; -*/ + #endif