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

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

Glut initial import used by Geometry modules

Line 
1#ifndef Fl_Counter_H
2#define Fl_Counter_H
3
4#include <fltk/ValueInput.h>
5class Fl_Counter : public fltk::ValueInput {
6public:
7  Fl_Counter(int x, int y, int w, int h, const char* l = 0)
8    : fltk::ValueInput(x,y,w,h,l) {align(fltk::ALIGN_BOTTOM);}
9};
10
11// these don't do anything:
12#define FL_NORMAL_COUNTER       0
13#define FL_SIMPLE_COUNTER       1
14
15#endif
Note: See TracBrowser for help on using the repository browser.