40 #define FL_HORIZONTAL 1
58 double previous_value_;
65 Fl_Valuator(
int X,
int Y,
int W,
int H,
const char* L);
71 double softclamp(
double);
72 void handle_drag(
double newvalue);
73 void handle_release();
74 virtual void value_damage();
81 void bounds(
double a,
double b) {min=a; max=b;}
110 void range(
double a,
double b) {min = a; max = b;}
112 void step(
int a) {A = a; B = 1;}
114 void step(
double a,
int b) {A = a; B = b;}
127 double step()
const {
return A/B;}
131 double value()
const {
return value_;}
134 virtual int format(
char*);
135 double round(
double);
136 double clamp(
double);
137 double increment(
double,
int);