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 #include "Fl_Valuator.h"
00026 
00028 class FL_API Fl_Roller : public Fl_Valuator {
00029 public:
00030 
00032     Fl_Roller(int X,int Y,int W,int H,const char* L=0);
00033 
00035     Fl_Roller(const char* l = 0,int layout_size=30,Fl_Align layout_al=FL_ALIGN_TOP,int label_w=100);
00036 
00037     enum { 
00038         VERTICAL = 0,
00039         HORIZONTAL = 1
00040     };
00041 
00042     virtual int handle(int);
00043     virtual void draw();
00044 };
00045 
00046 #endif