Yearly copyright bump :)
[quassel.git] / src / qtui / coreconnectdlg.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 CORECONNECTDLG_H
22 #define CORECONNECTDLG_H
23
24 #include <QAbstractSocket>
25
26 #include "types.h"
27
28 #include "ui_coreconnectdlg.h"
29 #include "ui_coreaccounteditdlg.h"
30
31 class ClientSyncer;
32 class CoreConfigWizard;
33
34 class CoreConnectDlg : public QDialog {
35   Q_OBJECT
36
37 public:
38   CoreConnectDlg(bool = false, QWidget *parent = 0);
39   ~CoreConnectDlg();
40
41 // signals:
42 //   void newClientSyncer(ClientSyncer *);
43
44 private slots:
45   /*** Phase Null: Accounts ***/
46   void restartPhaseNull();
47
48   void on_accountList_itemSelectionChanged();
49   void on_autoConnect_clicked(bool);
50
51   void on_addAccount_clicked();
52   void on_editAccount_clicked();
53   void on_deleteAccount_clicked();
54   void on_useInternalCore_clicked();
55
56   void on_accountList_itemDoubleClicked(QListWidgetItem *item);
57   void on_accountButtonBox_accepted();
58
59   void setAccountWidgetStates();
60
61   /*** Phase One: Connection ***/
62   void connectToCore();
63
64   void initPhaseError(const QString &error);
65   void initPhaseMsg(const QString &msg);
66   void initPhaseSocketState(QAbstractSocket::SocketState);
67   void encrypted(bool);
68
69   /*** Phase Two: Login ***/
70   void startLogin();
71   void doLogin();
72   void doLogin(const QVariantMap &loginData);
73   void loginFailed(const QString &);
74   void startCoreConfig(const QVariantList &backends);
75   void configWizardAccepted();
76   void configWizardRejected();
77   void on_launchCoreConfigWizard_clicked();
78
79   void setLoginWidgetStates();
80
81   /*** Phase Three: Sync ***/
82   void startSync();
83   void syncFinished();
84
85   void coreSessionProgress(quint32, quint32);
86   void coreNetworksProgress(quint32, quint32);
87
88 private:
89   AccountId findFreeAccountId();
90
91   Ui::CoreConnectDlg ui;
92
93   AccountId autoConnectAccount;
94   QHash<AccountId, QVariantMap> accounts;
95   AccountId _internalAccountId;
96   QVariantMap accountData;
97   AccountId account;
98
99   bool doingAutoConnect;
100
101   QVariantList storageBackends;
102
103   ClientSyncer *clientSyncer;
104   CoreConfigWizard *wizard;
105 };
106
107 class CoreAccountEditDlg : public QDialog {
108   Q_OBJECT
109
110 public:
111   CoreAccountEditDlg(AccountId id, const QVariantMap &data, const QStringList &existing = QStringList(), QWidget *parent = 0);
112
113   QVariantMap accountData();
114
115 private slots:
116   void on_host_textChanged(const QString &);
117   void on_accountName_textChanged(const QString &);
118
119   void setWidgetStates();
120
121 private:
122   Ui::CoreAccountEditDlg ui;
123
124   QStringList existing;
125   QVariantMap account;
126 };
127
128 #endif