CGII/framework/include/libs/fltk/compat/FL/Fl_Roller.H
2018-05-17 15:50:03 +02:00

14 lines
282 B
C++

#ifndef Fl_Roller_H
#define Fl_Roller_H
#include "Fl_Valuator.H"
#include <fltk/ThumbWheel.h>
class Fl_Roller : public fltk::ThumbWheel {
public:
Fl_Roller(int x, int y, int w, int h, const char*l = 0)
: fltk::ThumbWheel(x,y,w,h,l) {set_vertical();}
};
#endif