Source Code (Use browser search to find items of interest.)
Class Index
kiconedit'KWizardPage (./kdegraphics/kiconedit/kwizard.h:39)
struct KWizardPage
{
QString title;
QWidget *w;
bool enabled;
int id;
};
/**
* General-purpose multi-page dialog.
*
* KWizard is very useful for:
*
* @li Configuration dialogs where the order in which the entries are
* filled is important.
*
* @li Tutorials. Just create some HTML-widgets and feed them to a KWizard
* and your done (almost).
*
* @li NoteBooks. KWizard is an integrated part of KNoteBook which provides
* a notebook dialog similar to the ones in OS/2 Warp 4.
*
* @li Propably many other things...
*
* The dialog contains:
*
* @li A title at the top of the page.
* @li A separator.
* @li The userprovided page-liwidget.
* @li A separator.
* @li A label indicating the pagination.
* @li A Previous and a Next button.
* @li Optional Ok, Cancel and Help buttons.
*
* @author Thomas Tanghus <tanghus@earthling.net>
* @version 0.2
*/