summaryrefslogtreecommitdiffstats
path: root/fltk-2/include/fltk/compat/FL/Fl_Button.H
blob: a49c809c824ad5690d44358ad2ca81c88edd277f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef Fl_Button_H
#define Fl_Button_H

#include "Fl_Widget.H"
#include <fltk/Button.h>
typedef fltk::Button Fl_Button;

enum {
  FL_NORMAL_BUTTON	= 0,
  FL_TOGGLE_BUTTON	= fltk::Button::TOGGLE,
  FL_RADIO_BUTTON	= fltk::Button::RADIO,
  FL_HIDDEN_BUTTON	= fltk::Button::HIDDEN // may not work in 2.0
};

#endif