CGII/framework/include/libs/fltk/compat/FL/Fl_Counter.H

16 lines
359 B
C++
Raw Normal View History

2018-05-17 13:50:03 +00:00
#ifndef Fl_Counter_H
#define Fl_Counter_H
#include <fltk/ValueInput.h>
class Fl_Counter : public fltk::ValueInput {
public:
Fl_Counter(int x, int y, int w, int h, const char* l = 0)
: fltk::ValueInput(x,y,w,h,l) {align(fltk::ALIGN_BOTTOM);}
};
// these don't do anything:
#define FL_NORMAL_COUNTER 0
#define FL_SIMPLE_COUNTER 1
#endif