00001 #ifndef __FL_RADIO_BUTTONS_H_
00002 #define __FL_RADIO_BUTTONS_H_
00003
00004 #include "Fl_Button_Group.h"
00005
00010 class FL_API Fl_Radio_Buttons : public Fl_Button_Group
00011 {
00012 public:
00014 Fl_Radio_Buttons(int x, int y, int w, int h, const char *label = 0)
00015 : Fl_Button_Group(x,y,w,h,label) { type(RADIO_BUTTONS); }
00016
00018 Fl_Radio_Buttons(const char* l = 0,int layout_size=30,Fl_Align layout_al=FL_ALIGN_TOP,int label_w=100)
00019 : Fl_Button_Group(l,layout_size,layout_al,label_w) { type(RADIO_BUTTONS); }
00020 };
00021
00022 #endif