OK, disabled warnings for the moment :)
[quassel.git] / src / qtui / settingsdlg.h
index c4640bd..31be186 100644 (file)
@@ -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,18 +33,30 @@ 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<QString, SettingsPage *> pages;
+    QHash<SettingsPage *, QTreeWidgetItem *> treeItems;
+
+    //QSize recommendedSize;
 };
 
 /*