Redesign network settings page
[quassel.git] / src / qtui / settingspages / networkssettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 NETWORKSSETTINGSPAGE_H
22 #define NETWORKSSETTINGSPAGE_H
23
24 #include <QPixmap>
25
26 #include "network.h"
27 #include "settingspage.h"
28
29 #include "ui_networkssettingspage.h"
30 #include "ui_networkadddlg.h"
31 #include "ui_networkeditdlg.h"
32 #include "ui_servereditdlg.h"
33 #include "ui_saveidentitiesdlg.h"
34
35 class NetworksSettingsPage : public SettingsPage {
36   Q_OBJECT
37
38   public:
39     NetworksSettingsPage(QWidget *parent = 0);
40
41     bool aboutToSave();
42
43   public slots:
44     void save();
45     void load();
46
47   private slots:
48     void widgetHasChanged();
49     void setWidgetStates();
50     void coreConnectionStateChanged(bool);
51     void networkConnectionStateChanged(Network::ConnectionState state);
52     void networkConnectionError(const QString &msg);
53
54     void displayNetwork(NetworkId);
55     void setItemState(NetworkId, QListWidgetItem *item = 0);
56
57     void clientNetworkAdded(NetworkId);
58     void clientNetworkRemoved(NetworkId);
59     void clientNetworkUpdated();
60
61     void clientIdentityAdded(IdentityId);
62     void clientIdentityRemoved(IdentityId);
63     void clientIdentityUpdated();
64
65     void on_networkList_itemSelectionChanged();
66     void on_addNetwork_clicked();
67     void on_deleteNetwork_clicked();
68     void on_renameNetwork_clicked();
69
70     // void on_connectNow_clicked();
71
72     void on_serverList_itemSelectionChanged();
73     void on_addServer_clicked();
74     void on_deleteServer_clicked();
75     void on_editServer_clicked();
76     void on_upServer_clicked();
77     void on_downServer_clicked();
78
79   private:
80     Ui::NetworksSettingsPage ui;
81
82     NetworkId currentId;
83     QHash<NetworkId, NetworkInfo> networkInfos;
84     bool _ignoreWidgetChanges;
85
86     QPixmap connectedIcon, connectingIcon, disconnectedIcon;
87
88     void reset();
89     bool testHasChanged();
90     QListWidgetItem *insertNetwork(NetworkId);
91     QListWidgetItem *insertNetwork(const NetworkInfo &info);
92     QListWidgetItem *networkItem(NetworkId) const;
93     void saveToNetworkInfo(NetworkInfo &);
94 };
95
96
97 class NetworkAddDlg : public QDialog {
98   Q_OBJECT
99
100   public:
101     NetworkAddDlg(const QStringList &existing = QStringList(), QWidget *parent = 0);
102
103     NetworkInfo networkInfo() const;
104
105   private slots:
106     void setButtonStates();
107
108   private:
109     Ui::NetworkAddDlg ui;
110
111     QString networksFilePath;
112     QStringList existing;
113 };
114
115
116 class NetworkEditDlg : public QDialog {
117   Q_OBJECT
118
119   public:
120     NetworkEditDlg(const QString &old, const QStringList &existing = QStringList(), QWidget *parent = 0);
121
122     QString networkName() const;
123
124   private slots:
125     void on_networkEdit_textChanged(const QString &);
126
127   private:
128     Ui::NetworkEditDlg ui;
129
130     QStringList existing;
131 };
132
133
134 class ServerEditDlg : public QDialog {
135   Q_OBJECT
136
137 public:
138   ServerEditDlg(const Network::Server &server = Network::Server(), QWidget *parent = 0);
139
140   Network::Server serverData() const;
141
142 private slots:
143   void on_host_textChanged();
144
145 private:
146   Ui::ServerEditDlg ui;
147 };
148
149
150 class SaveNetworksDlg : public QDialog {
151   Q_OBJECT
152
153   public:
154     SaveNetworksDlg(const QList<NetworkInfo> &toCreate, const QList<NetworkInfo> &toUpdate, const QList<NetworkId> &toRemove, QWidget *parent = 0);
155
156   private slots:
157     void clientEvent();
158
159   private:
160     Ui::SaveIdentitiesDlg ui;
161
162     int numevents, rcvevents;
163 };
164
165 #endif