summaryrefslogtreecommitdiffstats
path: root/fltk/fltk/compat/FL/Fl_Roller.H
diff options
context:
space:
mode:
Diffstat (limited to 'fltk/fltk/compat/FL/Fl_Roller.H')
-rw-r--r--fltk/fltk/compat/FL/Fl_Roller.H13
1 files changed, 13 insertions, 0 deletions
diff --git a/fltk/fltk/compat/FL/Fl_Roller.H b/fltk/fltk/compat/FL/Fl_Roller.H
new file mode 100644
index 0000000..6e966f1
--- /dev/null
+++ b/fltk/fltk/compat/FL/Fl_Roller.H
@@ -0,0 +1,13 @@
+#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