Prevent the core from restoring its state if it is unconfigured.
[quassel.git] / src / qtopia / coreconnectdlg.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 _CORECONNECTDLG_H
22 #define _CORECONNECTDLG_H
23
24 #include "ui_coreconnectdlg.h"
25 #include "ui_coreconnectprogressdlg.h"
26 #include "ui_editcoreacctdlg.h"
27
28 class CoreConnectProgressDlg;
29
30 class CoreConnectDlg : public QDialog {
31   Q_OBJECT
32
33   public:
34     CoreConnectDlg(QWidget *parent = 0, bool doAutoConnect = false);
35     ~CoreConnectDlg();
36     QVariant getCoreState();
37
38   private slots:
39     void createAccount();
40     void removeAccount();
41     void editAccount();
42     void setWidgetStates();
43     void doConnect();
44     void connectionSuccess();
45     void connectionFailure();
46
47   private:
48     Ui::CoreConnectDlg ui;
49     QVariant coreState;
50
51     void editAccount(QString);
52
53     QAction *newAccAction, *editAccAction, *delAccAction;
54
55     CoreConnectProgressDlg *progressDlg;
56 };
57
58 class EditCoreAcctDlg : public QDialog {
59   Q_OBJECT
60
61   public:
62     EditCoreAcctDlg(QString accname = 0, QDialog *parent = 0);
63     QString accountName() const;
64
65   public slots:
66     void accept();
67
68   private slots:
69
70
71   private:
72     Ui::EditCoreAcctDlg ui;
73     QString accName;
74
75 };
76
77 class CoreConnectProgressDlg : public QDialog {
78   Q_OBJECT
79
80   public:
81     CoreConnectProgressDlg(QDialog *parent = 0);
82     bool isConnected() const;
83
84   public slots:
85     void connectToCore(QVariantMap connInfo);
86
87   private slots:
88     void coreConnected();
89     void coreConnectionError(QString);
90     void updateProgressBar(uint partial, uint total);
91
92   private:
93     Ui::CoreConnectProgressDlg ui;
94     bool connectsuccess;
95
96 };
97
98 #endif