FLTK 1.3.2
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
Fl_Wizard.H
1
//
2
// "$Id: Fl_Wizard.H 8864 2011-07-19 04:49:30Z greg.ercolano $"
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
41
class
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: Fl_Wizard.H 8864 2011-07-19 04:49:30Z greg.ercolano $".
61
//
© 1998-2012 by Bill Spitzak and others.