source: NonGTP/include/FL/Fl_Slider.H @ 769

Revision 769, 583 bytes checked in by gumbau, 18 years ago (diff)

FLTK imported to SVN repository to be linked agains the GeoTool? application

Line 
1#ifndef Fl_Slider_H
2#define Fl_Slider_H
3
4#include "Fl_Widget.H"
5#define FLTK_1_SLIDER 1
6#include <fltk/Slider.h>
7
8class Fl_Slider : public fltk::Slider {
9public:
10  Fl_Slider(int x, int y, int w, int h, const char*l = 0)
11    : fltk::Slider(x,y,w,h,l) {set_vertical();}
12};
13
14enum {
15  FL_VERT_SLIDER        = fltk::Slider::LINEAR,
16  FL_HOR_SLIDER         = fltk::Slider::HORIZONTAL,
17  FL_VERT_FILL_SLIDER   = fltk::Slider::FILL,
18  FL_HOR_FILL_SLIDER    = fltk::Slider::HORIZONTAL+fltk::Slider::FILL,
19  FL_VERT_NICE_SLIDER   = fltk::Slider::LINEAR,
20  FL_HOR_NICE_SLIDER    = fltk::Slider::HORIZONTAL
21};
22
23#endif
24
Note: See TracBrowser for help on using the repository browser.