hildon-libs 0.14.11 Reference Manual |
---|
HildonWizardDialogHildonWizardDialog — A widget to create a guided installation process wizard |
HildonWizardDialogPrivate; GtkWidget* hildon_wizard_dialog_new (GtkWindow *parent, const char *wizard_name, GtkNotebook *notebook);
HildonWizardDialog is a widget to create a guided installation process. The dialog has four standard buttons, previous, next, finish, cancel, and contains several pages with optional icons. Response buttons are dimmed/undimmed automatically and the standard icon is shown/hidden in response to page navigation. The notebook widget provided by users contains the actual wizard pages.
hildon_wizard_dialog_new (parent, wizard_name, notebook);
Using of the API is very simple, it has only one function to create it and the rest of it is handled by developers notebook. Also the response is returned, either cancel or finnish. Next and previous buttons are handled by the wizard dialog it self, by switching the page either forward or backward in the notebook.
GtkWidget* hildon_wizard_dialog_new (GtkWindow *parent, const char *wizard_name, GtkNotebook *notebook);
Creates a new HildonWizardDialog.
parent : |
a GtkWindow |
wizard_name : |
the name of dialog |
notebook : |
the notebook to be shown on the dialog |
Returns : | a new HildonWizardDialog |
<< HildonCodeDialog | Other >> |