- Improved the speed of IrcServerHandler (and other BasicHandler
[quassel.git] / src / qtui / settingspages.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _SETTINGSPAGES_H_
22 #define _SETTINGSPAGES_H_
23
24 #include <QtCore>
25 #include <QtGui>
26
27 #include "settingspage.h"
28 #include "ui_buffermgmntsettingspage.h"
29 #include "ui_connectionsettingspage.h"
30 #include "ui_usermgmtsettingspage.h"
31
32 class BufferManagementSettingsPage : public QWidget, public SettingsInterface {
33   Q_OBJECT
34   Q_INTERFACES(SettingsInterface);
35
36   public:
37     QString category() { return tr("Buffers"); }
38     QString title() { return tr("Buffer Management"); }
39     QWidget *settingsWidget() { return this; }
40
41     BufferManagementSettingsPage();
42
43     void applyChanges();
44
45
46   private:
47     Ui::BufferManagementSettingsPage ui;
48
49 };
50
51 class ConnectionSettingsPage : public QWidget, public SettingsInterface {
52   Q_OBJECT
53   Q_INTERFACES(SettingsInterface);
54
55   public:
56     QString category() { return tr("Behavior"); }
57     QString title() { return tr("Connection"); }
58     QWidget *settingsWidget() { return this; }
59
60     ConnectionSettingsPage();
61
62     void applyChanges();
63
64   private:
65     Ui::ConnectionSettingsPage ui;
66
67 };
68
69 class AccountManagementSettingsPage : public QWidget, public SettingsInterface {
70   Q_OBJECT
71   Q_INTERFACES(SettingsInterface);
72
73   public:
74     QString category() { return tr("Administration"); }
75     QString title() { return tr("Account Management"); }
76     QWidget *settingsWidget() { return this; }
77
78     AccountManagementSettingsPage();
79
80     void applyChanges();
81
82   private:
83     Ui::AccountManagementSettingsPage ui;
84
85 };
86
87
88
89
90 #endif