FLTK 1.3.9
Loading...
Searching...
No Matches
Fl_Wizard.H
1//
2// "$Id$"
3//
4// Fl_Wizard widget definitions.
5//
6// Copyright 1999-2010 by Easy Software Products.
7//
8// This library is free software. Distribution and use rights are outlined in
9// the file "COPYING" which should have been included with this file. If this
10// file is missing or damaged, see the license at:
11//
12// http://www.fltk.org/COPYING.php
13//
14// Please report all bugs and problems on the following page:
15//
16// http://www.fltk.org/str.php
17//
18
19/* \file
20 Fl_Wizard widget . */
21
22//
23// Include necessary header files...
24//
25
26#ifndef _Fl_Wizard_H_
27# define _Fl_Wizard_H_
28
29# include <FL/Fl_Group.H>
30
31
41class FL_EXPORT Fl_Wizard : public Fl_Group {
42
43 Fl_Widget *value_;
44
45 void draw();
46
47 public:
48
49 Fl_Wizard(int, int, int, int, const char * = 0);
50
51 void next();
52 void prev();
53 Fl_Widget *value();
54 void value(Fl_Widget *);
55};
56
57#endif // !_Fl_Wizard_H_
58
59//
60// End of "$Id$".
61//
The Fl_Group class is the FLTK container widget.
Definition Fl_Group.H:41
void draw()
Draws the widget.
Definition Fl_Group.cxx:738
Fl_Widget is the base class for all widgets in FLTK.
Definition Fl_Widget.H:101
This widget is based off the Fl_Tabs widget, but instead of displaying tabs it only changes "tabs" un...
Definition Fl_Wizard.H:41