FLTK 1.3.0
|
00001 // 00002 // "$Id$" 00003 // 00004 // Fl_Wizard widget definitions. 00005 // 00006 // Copyright 1999-2010 by Easy Software Products. 00007 // 00008 // This library is free software. Distribution and use rights are outlined in 00009 // the file "COPYING" which should have been included with this file. If this 00010 // file is missing or damaged, see the license at: 00011 // 00012 // http://www.fltk.org/COPYING.php 00013 // 00014 // Please report all bugs and problems on the following page: 00015 // 00016 // http://www.fltk.org/str.php 00017 // 00018 00019 /* \file 00020 Fl_Wizard widget . */ 00021 00022 // 00023 // Include necessary header files... 00024 // 00025 00026 #ifndef _Fl_Wizard_H_ 00027 # define _Fl_Wizard_H_ 00028 00029 # include <FL/Fl_Group.H> 00030 00031 00041 class FL_EXPORT Fl_Wizard : public Fl_Group { 00042 00043 Fl_Widget *value_; 00044 00045 void draw(); 00046 00047 public: 00048 00049 Fl_Wizard(int, int, int, int, const char * = 0); 00050 00051 void next(); 00052 void prev(); 00053 Fl_Widget *value(); 00054 void value(Fl_Widget *); 00055 }; 00056 00057 #endif // !_Fl_Wizard_H_ 00058 00059 // 00060 // End of "$Id$". 00061 //