1/* This file is part of the KDE Libraries
2 Copyright (C) 1999 Harri Porten (porten@kde.org)
3
4 Replacement for KWizard from KDE 1.x.
5 Copyright (C) 1998 Thomas Tanghus (tanghus@earthling.net)
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
16
17 You should have received a copy of the GNU Library General Public License
18 along with this library; see the file COPYING.LIB. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21*/
22
23#ifndef K3WIZARD_H
24#define K3WIZARD_H
25
26#include <kde3support_export.h>
27#include <Qt3Support/Q3Wizard>
28
29/**
30* General-purpose multi-page dialog.
31*
32* KWizard is a class for a multi-page dialog. The user can navigate trough
33* the pages with "Next" and "Back" buttons and is optionally offered "Finish",
34* "Cancel" and "Help" buttons. A wizard comes in handy for tutorials or
35* configuration dialogs with sequential steps.
36*
37* KWizard is just a wrapper for Qt's QWizard class. See the
38* QWizard documentation for a detailed description of available
39* functions. The only added functionality is a KDE conformant translation
40* mechanism for the built-in buttons.
41*
42* @author Harri Porten <porten@kde.org>
43* @version 0.3
44*/
45class KDE3SUPPORT_EXPORT K3Wizard : public Q3Wizard
46{
47 Q_OBJECT
48public:
49/**
50* Constructor
51*/
52 K3Wizard(QWidget *parent = 0, const char *name = 0, bool modal = false, Qt::WindowFlags f = 0);
53/**
54* Destructor
55*/
56 ~K3Wizard() {}
57};
58
59#endif // K3WIZARD_H
60
61
62