home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / kwizard.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-10-10  |  1.9 KB  |  63 lines

  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 __KWIZARD_H
  24. #define __KWIZARD_H
  25.  
  26. #include <qwizard.h>
  27.  
  28. #include <kdelibs_export.h>
  29.  
  30. /**
  31. * General-purpose multi-page dialog.
  32. *
  33. * KWizard is a class for a multi-page dialog. The user can navigate trough
  34. * the pages with "Next" and "Back" buttons and is optionally offered "Finish",
  35. * "Cancel" and "Help" buttons. A wizard comes in handy for tutorials or
  36. * configuration dialogs with sequential steps.  
  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. */
  45. class KDEUI_EXPORT KWizard : public QWizard
  46. {
  47.   Q_OBJECT
  48. public:
  49. /**
  50. * Constructor
  51. */
  52.   KWizard(QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags f = 0);
  53. /**
  54. * Destructor
  55. */
  56.   ~KWizard() {}
  57. };
  58.  
  59. #endif // __KWIZARD_H
  60.  
  61.  
  62.