source: NonGTP/include/FL/Fl_Button.H @ 769

Revision 769, 333 bytes checked in by gumbau, 18 years ago (diff)

FLTK imported to SVN repository to be linked agains the GeoTool? application

Line 
1#ifndef Fl_Button_H
2#define Fl_Button_H
3
4#include "Fl_Widget.H"
5#include <fltk/Button.h>
6typedef fltk::Button Fl_Button;
7
8enum {
9  FL_NORMAL_BUTTON      = fltk::Button::NORMAL,
10  FL_TOGGLE_BUTTON      = fltk::Button::TOGGLE,
11  FL_RADIO_BUTTON       = fltk::Button::RADIO,
12  FL_HIDDEN_BUTTON      = fltk::Button::HIDDEN // may not work in 2.0
13};
14
15#endif
16
Note: See TracBrowser for help on using the repository browser.