FLTK 1.3.0
Fl_Wizard.H
00001 //
00002 // "$Id: Fl_Wizard.H 8306 2011-01-24 17:04:22Z matt $"
00003 //
00004 // Fl_Wizard widget definitions.
00005 //
00006 // Copyright 1999-2010 by Easy Software Products.
00007 //
00008 // This library is free software; you can redistribute it and/or
00009 // modify it under the terms of the GNU Library General Public
00010 // License as published by the Free Software Foundation; either
00011 // version 2 of the License, or (at your option) any later version.
00012 //
00013 // This library is distributed in the hope that it will be useful,
00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00016 // Library General Public License for more details.
00017 //
00018 // You should have received a copy of the GNU Library General Public
00019 // License along with this library; if not, write to the Free Software
00020 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00021 // USA.
00022 //
00023 // Please report all bugs and problems on the following page:
00024 //
00025 //     http://www.fltk.org/str.php
00026 //
00027 
00028 /* \file
00029    Fl_Wizard widget . */
00030 
00031 //
00032 // Include necessary header files...
00033 //
00034 
00035 #ifndef _Fl_Wizard_H_
00036 #  define _Fl_Wizard_H_
00037 
00038 #  include <FL/Fl_Group.H>
00039 
00040 
00050 class FL_EXPORT Fl_Wizard : public Fl_Group {
00051 
00052   Fl_Widget *value_;
00053 
00054   void draw();
00055 
00056   public:
00057 
00058   Fl_Wizard(int, int, int, int, const char * = 0);
00059 
00060   void          next();
00061   void          prev();
00062   Fl_Widget     *value();
00063   void          value(Fl_Widget *);
00064 };
00065 
00066 #endif // !_Fl_Wizard_H_
00067 
00068 //
00069 // End of "$Id: Fl_Wizard.H 8306 2011-01-24 17:04:22Z matt $".
00070 //