fixing build on non-mac systems. ooopsi.
[quassel.git] / src / qtui / ircconnectionwizard.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 IRCCONNECTIONWIZARD_H
22 #define IRCCONNECTIONWIZARD_H
23
24 #include <QWizard>
25
26 #include "types.h"
27
28 class IrcConnectionWizard : public QWizard {
29   Q_OBJECT
30
31 public:
32   IrcConnectionWizard(QWidget *parent = 0, Qt::WindowFlags flags = 0);
33
34   static QWizardPage *createIntroductionPage(QWidget *parent = 0);
35
36 private slots:
37   void finishClicked();
38   void identityReady(IdentityId id);
39   void networkReady(NetworkId id);
40
41 private:
42   QWizardPage *_introductionPage;
43   QWizardPage *_identityPage;
44   QWizardPage *_networkPage;
45 };
46
47
48 // ==============================
49 //  Wizard Pages
50 // ==============================
51
52 // Identity Page
53 #include "clientidentity.h"
54
55 class IdentityEditWidget;
56
57 class IdentityPage : public QWizardPage {
58   Q_OBJECT
59
60 public:
61   IdentityPage(QWidget *parent = 0);
62
63   CertIdentity *identity();
64
65 private:
66   IdentityEditWidget *_identityEditWidget;
67   CertIdentity *_identity;
68 };
69
70
71 // Network Page
72 #include "network.h"
73
74 class SimpleNetworkEditor;
75
76 class NetworkPage : public QWizardPage {
77   Q_OBJECT
78
79 public:
80   NetworkPage(QWidget *parent = 0);
81
82   NetworkInfo networkInfo();
83   QStringList channelList();
84
85 private:
86   SimpleNetworkEditor *_networkEditor;
87   NetworkInfo _networkInfo;
88   QStringList _channelList;
89 };
90
91 #endif //IRCCONNECTIONWIZARD_H