Lines Matching refs:wizard

41 …<p>A wizard is a dialog which guides the user through a number of tasks (usually input of data), w…
42 …accomplish either sequentially or out-of-order. For this, a wizard is comprised of a number of tab…
45 …<p>Sequential navigation in a wizard is done via a <em>Next</em> and a <em>Back</em> button. Non-s…
46 …is done via a roadmap, which is displayed on the left hand side of the wizard dialog, lists all av…
47 …steps, and allows jumping to a certain step (where the creator of the wizard can restrict the avai…
48 depending on the current situation in the wizard, see below).</p>
50 …<p>A sequence of steps in a wizard dialog is called a <em>path</em>. A given wizard can support on…
51 which are declared at the time of construction of the wizard.</p>
53 …<p>In the simplest case, where the wizard supports only one path, all available steps are displaye…
56 …<p>If the wizard is more complex, and supports multiple paths, things become more complicated. In …
57 …of the wizard, where the user is at step <em>k</em> of the current path, the <em>potential</em> or…
64 …method. Usually, this is done depending on user input. For instance, your wizard could have radio …
65 first page which effectively decide about which path to take in the wizard.</p>
67 …<p>Single steps in the wizard can be freely enabled and disabled, using the <member>enablePage</me…
72 …methods. More sophisticated wizard logic, however, will need manual calls to the <member>enableBut…
73 …Also, the <em>Finish</em> button needs to be maintained by the wizard's controller, too, as it can…
83 /** is the help URL of the wizard's main window.
90 /** provides access to the current page of the wizard
95 /** enables or disables a certain button in the wizard
109 /** sets a button in the wizard as default button
111 … <p>In general, the default button in a wizard is the one which is activated when the user presses
122 …his method is equivalent to the user pressing the <em>Next</em> button in the wizard. Consequently,
123 …the method will fail if in the current state of the wizard, it is not allowed to advance to a next…
129 …>Calling this method is equivalent to the user pressing the <em>Back</em> button in the wizard.</p>
135 …<p>You can use this method when not all pages of your wizard are necessarily needed in all cases. …
136 …assume that your first wizard page contains a check box, which the user can check to enter additio…
140 …a page is disabled, it can reached neither by clicking the respective item in the wizard's roadmap,
152 /** updates the wizard elements which are related to traveling.
157 …<p>You usually call this method from within a wizard page whose state changed in a way that it aff…
179 …<p>If the wizard has been created with multiple paths of control flow, then this method allows swi…
203 … and entering some data on the reachable pages) before the wizard can actually be finished.</p>
212 if the path cannot be activated in the current state of the wizard.