31#ifndef _Fl_Progress_H_
32# define _Fl_Progress_H_
64 float maximum()
const {
return (maximum_); }
69 float minimum()
const {
return (minimum_); }
74 float value()
const {
return (value_); }
float maximum() const
Gets the maximum value in the progress widget.
Definition Fl_Progress.H:64
Fl_Progress(int x, int y, int w, int h, const char *l=0)
The constructor creates the progress bar using the position, size, and label.
Definition Fl_Progress.cxx:110
float value() const
Gets the current value in the progress widget.
Definition Fl_Progress.H:74
void minimum(float v)
Sets the minimum value in the progress widget.
Definition Fl_Progress.H:67
float minimum() const
Gets the minimum value in the progress widget.
Definition Fl_Progress.H:69
void value(float v)
Sets the current value in the progress widget.
Definition Fl_Progress.H:72
void maximum(float v)
Sets the maximum value in the progress widget.
Definition Fl_Progress.H:62