summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/vmchooser/src/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/plugins/vmchooser/src/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H')
-rw-r--r--os-plugins/plugins/vmchooser/src/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H14
1 files changed, 14 insertions, 0 deletions
diff --git a/os-plugins/plugins/vmchooser/src/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H b/os-plugins/plugins/vmchooser/src/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H
new file mode 100644
index 00000000..9afda08c
--- /dev/null
+++ b/os-plugins/plugins/vmchooser/src/fltk-2/include/fltk/compat/FL/Fl_Value_Slider.H
@@ -0,0 +1,14 @@
+#ifndef Fl_Value_Slider_H
+#define Fl_Value_Slider_H
+
+#include "Fl_Slider.H"
+#include <fltk/ValueSlider.h>
+
+class Fl_Value_Slider : public fltk::ValueSlider {
+public:
+ Fl_Value_Slider(int x, int y, int w, int h, const char*l = 0)
+ : fltk::ValueSlider(x,y,w,h,l) {set_vertical();}
+};
+
+#endif
+