source: NonGTP/glut/FLTK/include/FL/Fl_Scrollbar.H @ 814

Revision 814, 276 bytes checked in by gumbau, 18 years ago (diff)

Glut initial import used by Geometry modules

Line 
1#ifndef Fl_Scrollbar_H
2#define Fl_Scrollbar_H
3
4#include "Fl_Slider.H"
5#include <fltk/Scrollbar.h>
6
7class Fl_Scrollbar : public fltk::Scrollbar {
8public:
9  Fl_Scrollbar(int x, int y, int w, int h, const char*l = 0)
10    : fltk::Scrollbar(x,y,w,h,l) {set_vertical();}
11};
12
13#endif
Note: See TracBrowser for help on using the repository browser.