Committing my local state. Mostly still invisible part on the not yet enabled network...
[quassel.git] / src / qtui / settingspages / networkssettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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 <QIcon>
25
26 #include "settingspage.h"
27 #include "ui_networkssettingspage.h"
28
29 #include "network.h"
30 #include "types.h"
31
32 class NetworksSettingsPage : public SettingsPage {
33   Q_OBJECT
34
35   public:
36     NetworksSettingsPage(QWidget *parent = 0);
37
38     //bool aboutToSave();
39
40   public slots:
41     void save();
42     void load();
43
44   private slots:
45     void widgetHasChanged();
46     void setWidgetStates();
47     void coreConnectionStateChanged(bool);
48
49     void displayNetwork(NetworkId, bool dontsave = false);
50
51     void clientNetworkAdded(NetworkId);
52     void clientNetworkUpdated();
53
54     void clientIdentityAdded(IdentityId);
55     void clientIdentityRemoved(IdentityId);
56     void clientIdentityUpdated();
57
58     void on_networkList_itemSelectionChanged();
59
60   private:
61     Ui::NetworksSettingsPage ui;
62
63     NetworkId currentId;
64     QHash<NetworkId, NetworkInfo> networkInfos;
65
66     QIcon connectedIcon, disconnectedIcon;
67
68     void reset();
69     bool testHasChanged();
70     void insertNetwork(NetworkId);
71     QListWidgetItem *networkItem(NetworkId) const;
72
73 };
74
75 #endif