From a6163888f3c56123b1db313743c6147ba498732c Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Fri, 8 Aug 2014 14:42:07 +0300 Subject: Add third_party libs --- .../fltk-1.1.10/documentation/Fl_Wizard.html | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 third_party/windows/fltk-1.1.10/documentation/Fl_Wizard.html (limited to 'third_party/windows/fltk-1.1.10/documentation/Fl_Wizard.html') diff --git a/third_party/windows/fltk-1.1.10/documentation/Fl_Wizard.html b/third_party/windows/fltk-1.1.10/documentation/Fl_Wizard.html new file mode 100644 index 0000000..4cb7c9c --- /dev/null +++ b/third_party/windows/fltk-1.1.10/documentation/Fl_Wizard.html @@ -0,0 +1,73 @@ + + + Fl_Wizard + + + + +

class Fl_Wizard

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Wizard widget is based off the Fl_Tabs +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. + +

As with Fl_Tabs, wizard panes are composed of child (usually +Fl_Group) widgets. Navigation buttons must be added separately. + +

Methods

+ + + +

Fl_Wizard(int xx, int yy, int ww, int hh, const char *l = 0)

+ +

The constructor creates the Fl_Wizard widget at the specified +position and size. + +

~Fl_Wizard()

+ +

The destructor destroys the widget and its children. + +

void next()

+ +

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

void prev()

+ +

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

void value(Fl_Widget *w)
+Fl_Widget *value()

+ +

Sets or gets the child widget that is visible. + + + -- cgit v1.3.1