summaryrefslogtreecommitdiffstats
path: root/docs/wizard.doc
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2005-09-02 16:38:15 +0000
committerMystery Man <unknown@mandriva.org>2005-09-02 16:38:15 +0000
commitd53d83f3f80a9cad384644bb0d98b4d3d257b4d8 (patch)
tree575ef8f623300f7315ed26bec8c2ef670327366f /docs/wizard.doc
parent46a079ddbe5c93b62183e0a30aed11328eee5939 (diff)
downloaddrakx-backup-do-not-use-d53d83f3f80a9cad384644bb0d98b4d3d257b4d8.tar
drakx-backup-do-not-use-d53d83f3f80a9cad384644bb0d98b4d3d257b4d8.tar.gz
drakx-backup-do-not-use-d53d83f3f80a9cad384644bb0d98b4d3d257b4d8.tar.bz2
drakx-backup-do-not-use-d53d83f3f80a9cad384644bb0d98b4d3d257b4d8.tar.xz
drakx-backup-do-not-use-d53d83f3f80a9cad384644bb0d98b4d3d257b4d8.zip
This commit was manufactured by cvs2svn to create tagV10_3_0_52mdk
'V10_3_0_52mdk'.
Diffstat (limited to 'docs/wizard.doc')
-rw-r--r--docs/wizard.doc31
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/wizard.doc b/docs/wizard.doc
deleted file mode 100644
index 0bbf8d254..000000000
--- a/docs/wizard.doc
+++ /dev/null
@@ -1,31 +0,0 @@
-How to handle wizard?
-
-to switch in wizard mode:
-set $::isWizard to true;
-if $::Wizard_no_previous is set to true, the wizard won't display the previous button. Usefull for first step
-if $::Wizard_finished is set to true, the wizard will display Finish instead of Next. Usefull for last step
-
-how to code:
-Code as if there were no wizard.
-OK button is displayed as Next
-Cancel is displayed as Previous
-a additional button Cancel is added, xhich die with the exception 'wizard_cancelled'
-
-You have to handle the previous button. For example:
-
-step 1:
-ask_from list( blablablabl) or return;
-step2:
-ask_from list( blablablabl) or goto step1;
-step3:
-ask_from list( blablablabl) or goto step2;
-
-etc... You don't have to handle the wizard Cancel button as it send an exception.
-
-Understood? If yes, you'll see that there is a pb with ask_yesorno. In this case, yes+next returns true, no+next returns false, Cancel send the exception 'wizard_canceled' and previous send the exception 'wizard previous'. So you have to handle the previous button manually.
-
-plop.
-
-dam's, pour vous servir
-
-