rename translation files to <2 letter ISO code>.po
[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   virtual inline bool needsCoreConnection() const { return true; }
42
43   bool aboutToSave();
44
45 public slots:
46   void save();
47   void load();
48
49 private slots:
50   void widgetHasChanged();
51   void setWidgetStates();
52   void coreConnectionStateChanged(bool);
53   void networkConnectionStateChanged(Network::ConnectionState state);
54   void networkConnectionError(const QString &msg);
55
56   void displayNetwork(NetworkId);
57   void setItemState(NetworkId, QListWidgetItem *item = 0);
58
59   void clientNetworkAdded(NetworkId);
60   void clientNetworkRemoved(NetworkId);
61   void clientNetworkUpdated();
62
63   void clientIdentityAdded(IdentityId);
64   void clientIdentityRemoved(IdentityId);
65   void clientIdentityUpdated();
66
67   void on_networkList_itemSelectionChanged();
68   void on_addNetwork_clicked();
69   void on_deleteNetwork_clicked();
70   void on_renameNetwork_clicked();
71   void on_editIdentities_clicked();
72
73   // void on_connectNow_clicked();
74
75   void on_serverList_itemSelectionChanged();
76   void on_addServer_clicked();
77   void on_deleteServer_clicked();
78   void on_editServer_clicked();
79   void on_upServer_clicked();
80   void on_downServer_clicked();
81
82 private:
83   Ui::NetworksSettingsPage ui;
84
85   NetworkId currentId;
86   QHash<NetworkId, NetworkInfo> networkInfos;
87   bool _ignoreWidgetChanges;
88
89   QPixmap connectedIcon, connectingIcon, disconnectedIcon;
90
91   void reset();
92   bool testHasChanged();
93   QListWidgetItem *insertNetwork(NetworkId);
94   QListWidgetItem *insertNetwork(const NetworkInfo &info);
95   QListWidgetItem *networkItem(NetworkId) const;
96   void saveToNetworkInfo(NetworkInfo &);
97   IdentityId defaultIdentity() const;
98 };
99
100
101 class NetworkAddDlg : public QDialog {
102   Q_OBJECT
103
104   public:
105     NetworkAddDlg(const QStringList &existing = QStringList(), QWidget *parent = 0);
106
107     NetworkInfo networkInfo() const;
108
109   private slots:
110     void setButtonStates();
111
112   private:
113     Ui::NetworkAddDlg ui;
114
115     QStringList existing;
116 };
117
118
119 class NetworkEditDlg : public QDialog {
120   Q_OBJECT
121
122   public:
123     NetworkEditDlg(const QString &old, const QStringList &existing = QStringList(), QWidget *parent = 0);
124
125     QString networkName() const;
126
127   private slots:
128     void on_networkEdit_textChanged(const QString &);
129
130   private:
131     Ui::NetworkEditDlg ui;
132
133     QStringList existing;
134 };
135
136
137 class ServerEditDlg : public QDialog {
138   Q_OBJECT
139
140 public:
141   ServerEditDlg(const Network::Server &server = Network::Server(), QWidget *parent = 0);
142
143   Network::Server serverData() const;
144
145 private slots:
146   void on_host_textChanged();
147
148 private:
149   Ui::ServerEditDlg ui;
150 };
151
152
153 class SaveNetworksDlg : public QDialog {
154   Q_OBJECT
155
156   public:
157     SaveNetworksDlg(const QList<NetworkInfo> &toCreate, const QList<NetworkInfo> &toUpdate, const QList<NetworkId> &toRemove, QWidget *parent = 0);
158
159   private slots:
160     void clientEvent();
161
162   private:
163     Ui::SaveIdentitiesDlg ui;
164
165     int numevents, rcvevents;
166 };
167
168 #endif