ffa3c6bafa92312a448e1a5b3f455ee0ead06c27
[opencv] / otherlibs / _fltk / include / FL / Fl_Wizard.H
1 //
2 // "$Id: Fl_Wizard.H,v 1.2 2002/12/01 15:38:37 neurosurg Exp $"
3 //
4 // Fl_Wizard widget definitions.
5 //
6 // Copyright 1999-2002 by Easy Software Products.
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // Library General Public License for more details.
17 //
18 // You should have received a copy of the GNU Library General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 // USA.
22 //
23 // Please report all bugs and problems to "fltk-bugs@fltk.org".
24 //
25
26 //
27 // Include necessary header files...
28 //
29
30 #ifndef _Fl_Wizard_H_
31 #  define _Fl_Wizard_H_
32
33 #  include <FL/Fl_Group.H>
34
35
36 //
37 // Fl_Wizard class...
38 //
39
40 class FL_EXPORT Fl_Wizard : public Fl_Group
41 {
42   Fl_Widget *value_;
43
44   void draw();
45
46   public:
47
48   Fl_Wizard(int, int, int, int, const char * = 0);
49
50   void          next();
51   void          prev();
52   Fl_Widget     *value();
53   void          value(Fl_Widget *);
54 };
55
56 #endif // !_Fl_Wizard_H_
57
58 //
59 // End of "$Id: Fl_Wizard.H,v 1.2 2002/12/01 15:38:37 neurosurg Exp $".
60 //