blob: 7ccca86d1ee2c0c3e12c3def9831e6bea5744587 [file] [log] [blame]
Edric Milaret67007d12015-05-07 09:40:09 -04001/***************************************************************************
Edric Milaretbab169d2016-01-07 15:13:33 -05002 * Copyright (C) 2015-2016 by Savoir-faire Linux *
Edric Milaret67007d12015-05-07 09:40:09 -04003 * 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 Milaret5f316da2015-09-28 11:57:42 -040019#pragma once
Edric Milaret559bda52015-04-29 17:02:31 -040020
21#include <QDialog>
Edric Milaret67007d12015-05-07 09:40:09 -040022#include <QtConcurrent/QtConcurrent>
Edric Milaret559bda52015-04-29 17:02:31 -040023
Edric Milaret74e4b8b2015-05-15 10:25:00 -040024#include "account.h"
25
Edric Milaret559bda52015-04-29 17:02:31 -040026namespace Ui {
27class WizardDialog;
28}
29
30class WizardDialog : public QDialog
31{
32 Q_OBJECT
33
34public:
35 explicit WizardDialog(QWidget *parent = 0);
36 ~WizardDialog();
37
Edric Milareted0b2802015-10-01 15:10:02 -040038protected slots:
39 void closeEvent(QCloseEvent *event);
Edric Milaret559bda52015-04-29 17:02:31 -040040private slots:
Edric Milaret559bda52015-04-29 17:02:31 -040041 void on_usernameEdit_textChanged(const QString &arg1);
Edric Milaret67007d12015-05-07 09:40:09 -040042 void accept();
43
Edric Milaret559bda52015-04-29 17:02:31 -040044private:
45 Ui::WizardDialog *ui;
Edric Milaret67007d12015-05-07 09:40:09 -040046
47private:
48 void setup();
Edric Milaret74e4b8b2015-05-15 10:25:00 -040049
50private slots:
51 void endSetup(Account* a);
Edric Milaret559bda52015-04-29 17:02:31 -040052};
53