00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 #ifndef _FL_INT_INPUT_H_
00023 #define _FL_INT_INPUT_H_
00024 
00025 #include "Fl_Float_Input.h"
00026 
00028 class Fl_Int_Input : public Fl_Float_Input {
00029 public:
00031     Fl_Int_Input(int x,int y,int w,int h,const char *l = 0) 
00032     : Fl_Float_Input(x,y,w,h,l) { type(INT); }
00033 
00035     Fl_Int_Input(const char* l = 0,int layout_size=30,Fl_Align layout_al=FL_ALIGN_TOP,int label_w=100) 
00036     : Fl_Float_Input(l,layout_size,layout_al,label_w) { type(INT); }
00037 
00038     
00039     virtual bool load_data(Fl_Data_Source *ds);
00040     virtual bool save_data(Fl_Data_Source *ds);
00041 };
00042 
00043 #endif