blob: ba1865d94a8f5384638566eb60c3e53e632c1f3a [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"
Edric Milaret25236d92016-03-28 09:40:58 -040025#include "person.h"
Edric Milaret74e4b8b2015-05-15 10:25:00 -040026
Edric Milaret559bda52015-04-29 17:02:31 -040027namespace Ui {
28class WizardDialog;
29}
30
31class WizardDialog : public QDialog
32{
33 Q_OBJECT
34
35public:
Edric Milaret25236d92016-03-28 09:40:58 -040036 explicit WizardDialog(QWidget* parent = 0);
Edric Milaret559bda52015-04-29 17:02:31 -040037 ~WizardDialog();
38
Edric Milaret25236d92016-03-28 09:40:58 -040039// Overrided function
Edric Milareted0b2802015-10-01 15:10:02 -040040protected slots:
Edric Milaret67007d12015-05-07 09:40:09 -040041 void accept();
Edric Milaret25236d92016-03-28 09:40:58 -040042 void closeEvent(QCloseEvent* event);
Edric Milaret67007d12015-05-07 09:40:09 -040043
Edric Milaret25236d92016-03-28 09:40:58 -040044//UI Slots
45private slots:
46 void on_avatarButton_clicked();
Edric Milaret74e4b8b2015-05-15 10:25:00 -040047
48private slots:
49 void endSetup(Account* a);
Edric Milaret25236d92016-03-28 09:40:58 -040050
51private:
52 Ui::WizardDialog* ui;
53
54 void setup();
Edric Milaret559bda52015-04-29 17:02:31 -040055};
56