X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fcoreconnectdlg.h;h=b892a20d9bbc3f262270a44dd76f95c44a254e55;hp=9f988a3fd7bc3b83c57fb31d4e461adf0df5a481;hb=d45d1044c030312878cb648fd1325ce70b079c44;hpb=9fd4619e9aca7d53d7c5df156a0b25956a1bf682 diff --git a/src/qtui/coreconnectdlg.h b/src/qtui/coreconnectdlg.h index 9f988a3f..b892a20d 100644 --- a/src/qtui/coreconnectdlg.h +++ b/src/qtui/coreconnectdlg.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005/06 by The Quassel Team * + * Copyright (C) 2009 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -18,51 +18,44 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _CORECONNECTDLG_H -#define _CORECONNECTDLG_H +#ifndef CORECONNECTDLG_H +#define CORECONNECTDLG_H_ -#include "ui_coreconnectdlg.h" -#include "global.h" +#include -class CoreConnectDlg: public QDialog { +#include "coreaccount.h" + +#include "ui_coreconnectauthdlg.h" + +class CoreAccountSettingsPage; + +class CoreConnectDlg : public QDialog { Q_OBJECT - public: - CoreConnectDlg(QWidget *parent, bool doAutoConnect = false); - ~CoreConnectDlg(); - QVariant getCoreState(); +public: + CoreConnectDlg(QWidget *parent = 0); + AccountId selectedAccount() const; - bool willDoInternalAutoConnect(); + void accept(); - public slots: - void doAutoConnect(); +private: + CoreAccountSettingsPage *_settingsPage; +}; + +class CoreConnectAuthDlg : public QDialog { + Q_OBJECT - private slots: - void createAccount(); - void removeAccount(); - void accountChanged(const QString & = ""); - void setAccountEditEnabled(bool); - void autoConnectToggled(bool); - bool checkInputValid(); - void hostEditChanged(QString); - void hostSelected(); - void doConnect(); +public: + CoreConnectAuthDlg(CoreAccount *account, QWidget *parent = 0); - void coreConnected(); - void coreConnectionError(QString); - //void coreConnectionMsg(const QString &); - //void coreConnectionProgress(uint partial, uint total); - void updateProgressBar(uint partial, uint total); - void recvCoreState(QVariant); + void accept(); - private: - Ui::CoreConnectDlg ui; - QVariant coreState; +private slots: + void setButtonStates(); - void cancelConnect(); - void setStartState(); - QVariantMap accountData; - QString curacc; +private: + Ui::CoreConnectAuthDlg ui; + CoreAccount *_account; }; #endif