summaryrefslogtreecommitdiffstats
path: root/fltk-2/include/fltk/compat/FL/Fl_Counter.H
blob: 935c3d5fc6af9c15bac31cbb9beba3ade64aac5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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