00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef Fl_Roller_H
00023 #define Fl_Roller_H
00024
00025 #ifndef Fl_Valuator_H
00026 #include "Fl_Valuator.H"
00027 #endif
00028
00035 class FL_EXPORT Fl_Roller : public Fl_Valuator {
00036 protected:
00037 void draw();
00038 public:
00039 int handle(int);
00040 Fl_Roller(int X,int Y,int W,int H,const char* L=0);
00041 };
00042
00043 #endif
00044
00045
00046
00047