Make the newly arrived topicbutton display background colors and font styles.
[quassel.git] / src / qtui / settingsdlg.h
index c4640bd..cefc780 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,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<QString, SettingsPage *> pages;
-};
-
-/*
-class CoreSettingsPage : public QWidget, SettingsInterface {
-  Q_OBJECT
-
-  public:
-
-
-  private:
-    Ui::CoreSettingsPage ui;
+    QHash<SettingsPage *, QTreeWidgetItem *> treeItems;
 
+    //QSize recommendedSize;
 };
-*/
+
 
 #endif