f9039b2ae2
git-svn-id: file:///fltk/svn/fltk/trunk@2 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
20 lines
283 B
C++
20 lines
283 B
C++
// Fl_Roller.H
|
|
|
|
// Rapid-App style knob
|
|
|
|
#ifndef Fl_Roller_H
|
|
#define Fl_Roller_H
|
|
|
|
#ifndef Fl_Valuator_H
|
|
#include "Fl_Valuator.H"
|
|
#endif
|
|
|
|
class Fl_Roller : public Fl_Valuator {
|
|
void draw();
|
|
public:
|
|
int handle(int);
|
|
Fl_Roller(int X,int Y,int W,int H,const char* L=0);
|
|
};
|
|
|
|
#endif
|