Revision 773,
295 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Line | |
---|
1 | #ifndef Fl_Value_Slider_H |
---|
2 | #define Fl_Value_Slider_H |
---|
3 | |
---|
4 | #include "Fl_Slider.H" |
---|
5 | #include <fltk/ValueSlider.h> |
---|
6 | |
---|
7 | class Fl_Value_Slider : public fltk::ValueSlider { |
---|
8 | public: |
---|
9 | Fl_Value_Slider(int x, int y, int w, int h, const char*l = 0) |
---|
10 | : fltk::ValueSlider(x,y,w,h,l) {set_vertical();} |
---|
11 | }; |
---|
12 | |
---|
13 | #endif |
---|
14 | |
---|
Note: See
TracBrowser
for help on using the repository browser.