| 1 | /* |
|---|
| 2 | * QuteCom, a voice over Internet phone |
|---|
| 3 | * Copyright (C) 2004-2010 Mbdsys |
|---|
| 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) 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, write to the Free Software |
|---|
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 18 | */ |
|---|
| 19 | |
|---|
| 20 | #ifndef OWWIZARD_H |
|---|
| 21 | #define OWWIZARD_H |
|---|
| 22 | |
|---|
| 23 | #include <qtutil/owqtutildll.h> |
|---|
| 24 | |
|---|
| 25 | #include <util/NonCopyable.h> |
|---|
| 26 | |
|---|
| 27 | #include <QtCore/QObject> |
|---|
| 28 | |
|---|
| 29 | class QWidget; |
|---|
| 30 | class QDialog; |
|---|
| 31 | namespace Ui { class Wizard; } |
|---|
| 32 | |
|---|
| 33 | /** |
|---|
| 34 | * Wizard dialog for Qt. |
|---|
| 35 | * |
|---|
| 36 | * @see http://doc.trolltech.com/4.1/dialogs-simplewizard.html |
|---|
| 37 | * @see http://doc.trolltech.com/4.1/dialogs-complexwizard.html |
|---|
| 38 | * @see http://doc.trolltech.com/3.3/qwizard.html |
|---|
| 39 | * @author Tanguy Krotoff |
|---|
| 40 | */ |
|---|
| 41 | class OWQTUTIL_API Wizard : public QObject, NonCopyable { |
|---|
| 42 | Q_OBJECT |
|---|
| 43 | public: |
|---|
| 44 | |
|---|
| 45 | Wizard(QWidget * parent); |
|---|
| 46 | |
|---|
| 47 | ~Wizard(); |
|---|
| 48 | |
|---|
| 49 | void show(); |
|---|
| 50 | |
|---|
| 51 | void addPage(QWidget * page); |
|---|
| 52 | |
|---|
| 53 | Q_SIGNALS: |
|---|
| 54 | |
|---|
| 55 | void finished(); |
|---|
| 56 | |
|---|
| 57 | private Q_SLOTS: |
|---|
| 58 | |
|---|
| 59 | void backButtonClicked(); |
|---|
| 60 | |
|---|
| 61 | void nextButtonClicked(); |
|---|
| 62 | |
|---|
| 63 | void finishedButtonClicked(); |
|---|
| 64 | |
|---|
| 65 | private: |
|---|
| 66 | |
|---|
| 67 | void switchPage(QWidget * oldPage); |
|---|
| 68 | |
|---|
| 69 | Ui::Wizard * _ui; |
|---|
| 70 | |
|---|
| 71 | QDialog * _wizardDialog; |
|---|
| 72 | |
|---|
| 73 | QList<QWidget *> _history; |
|---|
| 74 | }; |
|---|
| 75 | |
|---|
| 76 | #endif //OWWIZARD_H |
|---|