putting it all together: core is now capable to connect to ircservers using a proxy...
[quassel.git] / src / client / clientidentity.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 CLIENTIDENTITY_H
22 #define CLIENTIDENTITY_H
23
24 #include "identity.h"
25
26 class ClientCertManager;
27
28 class CertIdentity : public Identity {
29   Q_OBJECT
30
31 public:
32   CertIdentity(IdentityId id = 0, QObject *parent = 0);
33   CertIdentity(const Identity &other, QObject *parent = 0);
34   CertIdentity(const CertIdentity &other, QObject *parent = 0);
35
36   void enableEditSsl(bool enable = true);
37   inline bool isDirty() const { return _isDirty; }
38
39   inline const QSslKey &sslKey() const { return _sslKey; }
40   inline const QSslCertificate &sslCert() const { return _sslCert; }
41
42   void setSslKey(const QSslKey &key);
43   void setSslCert(const QSslCertificate &cert);
44
45 public slots:
46   void requestUpdateSslSettings();
47
48 signals:
49   void sslSettingsUpdated();
50
51 private slots:
52   void markClean();
53
54 private:
55   ClientCertManager *_certManager;
56   bool _isDirty;
57   QSslKey _sslKey;
58   QSslCertificate _sslCert;
59 };
60
61 // ========================================
62 //  ClientCertManager
63 // ========================================
64 class ClientCertManager : public CertManager {
65   Q_OBJECT
66
67 public:
68   ClientCertManager(IdentityId id, CertIdentity *parent) : CertManager(id, parent), _certIdentity(parent) {}
69
70   virtual inline const QSslKey &sslKey() const { return _certIdentity->sslKey(); }
71   virtual inline const QSslCertificate &sslCert() const { return _certIdentity->sslCert(); }
72
73 public slots:
74   virtual void setSslKey(const QByteArray &encoded);
75   virtual void setSslCert(const QByteArray &encoded);
76
77 private:
78   CertIdentity *_certIdentity;
79 };
80
81 #endif //CLIENTIDENTITY_H