blob: b3445e6c3f981d812dbbdfdf296540e0ed6954b6 [file] [log] [blame]
Edric Milaret67007d12015-05-07 09:40:09 -04001/***************************************************************************
2 * Copyright (C) 2015 by Savoir-Faire Linux *
3 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
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 3 of the License, or *
8 * (at your option) any later version. *
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, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
Edric Milaret559bda52015-04-29 17:02:31 -040019#ifndef WIZARDDIALOG_H
20#define WIZARDDIALOG_H
21
22#include <QDialog>
Edric Milaret67007d12015-05-07 09:40:09 -040023#include <QtConcurrent/QtConcurrent>
Edric Milaret559bda52015-04-29 17:02:31 -040024
Edric Milaret74e4b8b2015-05-15 10:25:00 -040025#include "account.h"
26
Edric Milaret559bda52015-04-29 17:02:31 -040027namespace Ui {
28class WizardDialog;
29}
30
31class WizardDialog : public QDialog
32{
33 Q_OBJECT
34
35public:
36 explicit WizardDialog(QWidget *parent = 0);
37 ~WizardDialog();
38
39private slots:
Edric Milaret559bda52015-04-29 17:02:31 -040040 void on_usernameEdit_textChanged(const QString &arg1);
Edric Milaret67007d12015-05-07 09:40:09 -040041 void accept();
42
Edric Milaret559bda52015-04-29 17:02:31 -040043private:
44 Ui::WizardDialog *ui;
Edric Milaret67007d12015-05-07 09:40:09 -040045
46private:
47 void setup();
Edric Milaret74e4b8b2015-05-15 10:25:00 -040048
49private slots:
50 void endSetup(Account* a);
Edric Milaret559bda52015-04-29 17:02:31 -040051};
52
53#endif // WIZARDDIALOG_H