CGII/framework/include/libs/fltk/compat/FL/Fl_Roller.H

14 lines
282 B
C++
Raw Normal View History

2018-05-17 13:50:03 +00:00
#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