File: Fl_Wizard.html

package info (click to toggle)
pose 3.5-1
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 13,108 kB
  • ctags: 29,485
  • sloc: cpp: 93,990; ansic: 62,838; sh: 1,970; perl: 1,891; python: 1,242; makefile: 616
file content (75 lines) | stat: -rw-r--r-- 1,885 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<HTML>
<HEAD>
	<TITLE>Fl_Wizard - ESP Widget Set for FLTK</TITLE>
	<LINK REL="STYLESHEET" TYPE="text/css" HREF="fltk.css">
</HEAD>

<BODY BGCOLOR="#ccccff">

<!-- NEW PAGE -->
<H2>class Fl_Wizard</H2>

<HR>

<H3>Class Hierarchy</H3>

<UL><PRE>
Fl_Group
   |
   +----<B>Fl_Wizard</B>
</PRE></UL>

<H3>Include Files</H3>

<UL><PRE>
#include "Fl_Wizard.h"
</PRE></UL>

<H3>Description</H3>

<P>The <CODE>Fl_Wizard</CODE> widget is based off the <CODE>Fl_Tabs</CODE>
widget, but instead of displaying tabs it only changes "tabs" under
program control. Its primary purpose is to support "wizards" that
step a user through configuration or troubleshooting tasks.

<P>As with <CODE>Fl_Tabs</CODE>, wizard panes are composed of child (usually
<CODE>Fl_Group</CODE>) widgets. Navigation buttons must be added separately.

<H3>Methods</H3>

<UL>

	<LI><A HREF="#Fl_Wizard.Fl_Wizard">Fl_Wizard</A>
	<LI><A HREF="#Fl_Wizard.~Fl_Wizard">~Fl_Wizard</A>
	<LI><A HREF="#Fl_Wizard.next">next</A>
	<LI><A HREF="#Fl_Wizard.prev">prev</A>
	<LI><A HREF="#Fl_Wizard.value">value</A>

</UL>

<H4><A NAME="Fl_Wizard.Fl_Wizard">Fl_Wizard(int xx, int yy, int ww, int hh, const char *l = 0)</A></H4>

<P>The constructor creates the <CODE>Fl_Wizard</CODE> widget at the specified
position and size.

<H4><A NAME="Fl_Wizard.~Fl_Wizard">~Fl_Wizard()</A></H4>

<P>The destructor destroys the widget and its children.

<H4><A NAME="Fl_Wizard.next">void next()</A></H4>

<P>This method shows the next child of the wizard. If the last child
is already visible, this function does nothing.

<H4><A NAME="Fl_Wizard.prev">void prev()</A></H4>

<P>This method shows the previous child of the wizard. If the first child
is already visible, this function does nothing.

<H4><A NAME="Fl_Wizard.value">void value(Fl_Widget *w)<BR>
Fl_Widget *value()</A></H4>

<P>Sets or gets the child widget that is visible.

</BODY>
</HTML>