correct tab order for the settingspages
[quassel.git] / src / qtui / settingspages / identitiessettingspage.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) any later version.                                   *
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 IDENTITIESSETTINGSPAGE_H
22 #define IDENTITIESSETTINGSPAGE_H
23
24 #include "clientidentity.h"
25 #include "settingspage.h"
26
27 #include "identityeditwidget.h"
28
29 #include "ui_identitiessettingspage.h"
30 #include "ui_createidentitydlg.h"
31 #include "ui_saveidentitiesdlg.h"
32
33 class QAbstractItemModel;
34
35 class IdentitiesSettingsPage : public SettingsPage {
36   Q_OBJECT
37
38 public:
39   IdentitiesSettingsPage(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 coreConnectionStateChanged(bool);
51   void clientIdentityCreated(IdentityId);
52   void clientIdentityUpdated();
53   void clientIdentityRemoved(IdentityId);
54
55   void on_identityList_currentIndexChanged(int index);
56
57   void on_addIdentity_clicked();
58   void on_deleteIdentity_clicked();
59   void on_renameIdentity_clicked();
60
61 #ifdef HAVE_SSL
62   void continueUnsecured();
63 #endif
64   void widgetHasChanged();
65   void setWidgetStates();
66
67 private:
68   Ui::IdentitiesSettingsPage ui;
69
70   QHash<IdentityId, CertIdentity *> identities;
71   IdentityId currentId;
72
73   QList<IdentityId> changedIdentities;  // for setting the widget changed state
74   QList<IdentityId> deletedIdentities;
75
76   bool _editSsl;
77
78   void insertIdentity(CertIdentity *identity);
79   void removeIdentity(Identity *identity);
80   void renameIdentity(IdentityId id, const QString &newName);
81
82 #ifdef HAVE_SSL
83   QSslKey keyByFilename(const QString &filename);
84   void showKeyState(const QSslKey &key);
85   QSslCertificate certByFilename(const QString &filename);
86   void showCertState(const QSslCertificate &cert);
87 #endif
88
89   bool testHasChanged();
90 };
91
92 // ==============================
93 //  Various Dialogs
94 // ==============================
95 class CreateIdentityDlg : public QDialog {
96   Q_OBJECT
97
98 public:
99   CreateIdentityDlg(QAbstractItemModel *model, QWidget *parent = 0);
100
101   QString identityName() const;
102   IdentityId duplicateId() const;
103
104 private slots:
105   void on_identityName_textChanged(const QString &text);
106
107 private:
108   Ui::CreateIdentityDlg ui;
109 };
110
111
112
113 class SaveIdentitiesDlg : public QDialog {
114   Q_OBJECT
115
116 public:
117   SaveIdentitiesDlg(const QList<CertIdentity *> &toCreate, const QList<CertIdentity *> &toUpdate, const QList<IdentityId> &toRemove, QWidget *parent = 0);
118
119 private slots:
120   void clientEvent();
121
122 private:
123   Ui::SaveIdentitiesDlg ui;
124
125   int numevents, rcvevents;
126 };
127
128
129
130 #endif