Reformat ALL the source!
[quassel.git] / src / qtui / settingspages / chatmonitorsettingspage.h
index 9ce8fb9..4748aaf 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 
 class BufferViewConfig;
 
-class ChatMonitorSettingsPage : public SettingsPage {
-  Q_OBJECT
+class ChatMonitorSettingsPage : public SettingsPage
+{
+    Q_OBJECT
 
-  public:
+public:
     ChatMonitorSettingsPage(QWidget *parent = 0);
     bool hasDefaults() const;
 
-  public slots:
+public slots:
     void save();
     void load();
     void loadSettings();
     void defaults();
 
-  private slots:
+private slots:
     void widgetHasChanged();
     void on_activateBuffer_clicked();
     void on_deactivateBuffer_clicked();
-    void on_highlightAlways_toggled(bool state);
-    void switchOperationMode(int modeIndex);
-    
-  private:
+    void switchOperationMode(int idx);
+
+private:
     Ui::ChatMonitorSettingsPage ui;
     QHash<QString, QVariant> settings;
     bool testHasChanged();
     void toggleBuffers(BufferView *inView, BufferViewConfig *inCfg, BufferView *outView, BufferViewConfig *outCfg);
-    BufferViewConfig *configAvailable;
-    BufferViewConfig *configActive;
+
+    BufferViewConfig *_configAvailable;
+    BufferViewConfig *_configActive;
 };
+
+
 #endif