From dfeb8ebdc3f035b35e24dda340244a2ffbfeeff1 Mon Sep 17 00:00:00 2001 From: damien Date: Wed, 21 Feb 2001 16:24:26 +0000 Subject: =?UTF-8?q?putain=20de=20doc=20de=20merde=20pout=20petite=20qui=20?= =?UTF-8?q?est=20trop=20d=C3=A9bile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/wizard.doc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docs/wizard.doc (limited to 'docs/wizard.doc') diff --git a/docs/wizard.doc b/docs/wizard.doc new file mode 100644 index 000000000..0bbf8d254 --- /dev/null +++ b/docs/wizard.doc @@ -0,0 +1,31 @@ +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 + + -- cgit v1.2.1