20 #ifndef _Fl_Progress_H_ 21 # define _Fl_Progress_H_ 48 Fl_Progress(
int x,
int y,
int w,
int h,
const char *l = 0);
53 float maximum()
const {
return (maximum_); }
58 float minimum()
const {
return (minimum_); }
63 float value()
const {
return (value_); }
66 #endif // !_Fl_Progress_H_
void value(float v)
Sets the current value in the progress widget.
Definition: Fl_Progress.H:61
float value() const
Gets the current value in the progress widget.
Definition: Fl_Progress.H:63
float maximum() const
Gets the maximum value in the progress widget.
Definition: Fl_Progress.H:53
float minimum() const
Gets the minimum value in the progress widget.
Definition: Fl_Progress.H:58
void minimum(float v)
Sets the minimum value in the progress widget.
Definition: Fl_Progress.H:56
Displays a progress bar for the user.
Definition: Fl_Progress.H:36
void maximum(float v)
Sets the maximum value in the progress widget.
Definition: Fl_Progress.H:51