1/***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
20
21#ifndef IRCCONNECTIONWIZARD_H
22#define IRCCONNECTIONWIZARD_H
23
24#include <QWizard>
25
26#include "types.h"
27
28class IrcConnectionWizard : public QWizard
29{
30 Q_OBJECT
31
32public:
33 IrcConnectionWizard(QWidget *parent = 0, Qt::WindowFlags flags = 0);
34
35 static QWizardPage *createIntroductionPage(QWidget *parent = 0);
36
37private slots:
38 void finishClicked();
39 void identityReady(IdentityId id);
40 void networkReady(NetworkId id);
41
42private:
43 QWizardPage *_introductionPage;
44 QWizardPage *_identityPage;
45 QWizardPage *_networkPage;
46};
47
48
49// ==============================
50// Wizard Pages
51// ==============================
52
53// Identity Page
54#include "clientidentity.h"
55
56class IdentityEditWidget;
57
58class IdentityPage : public QWizardPage
59{
60 Q_OBJECT
61
62public:
63 IdentityPage(QWidget *parent = 0);
64
65 CertIdentity *identity();
66
67private:
68 IdentityEditWidget *_identityEditWidget;
69 CertIdentity *_identity;
70};
71
72
73// Network Page
74#include "network.h"
75
76class SimpleNetworkEditor;
77
78class NetworkPage : public QWizardPage
79{
80 Q_OBJECT
81
82public:
83 NetworkPage(QWidget *parent = 0);
84
85 NetworkInfo networkInfo();
86 QStringList channelList();
87
88private:
89 SimpleNetworkEditor *_networkEditor;
90 NetworkInfo _networkInfo;
91 QStringList _channelList;
92};
93
94
95#endif //IRCCONNECTIONWIZARD_H
96