From a6163888f3c56123b1db313743c6147ba498732c Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Fri, 8 Aug 2014 14:42:07 +0300 Subject: Add third_party libs --- .../fltk-1.1.10/documentation/Fl_Progress.html | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 third_party/windows/fltk-1.1.10/documentation/Fl_Progress.html (limited to 'third_party/windows/fltk-1.1.10/documentation/Fl_Progress.html') diff --git a/third_party/windows/fltk-1.1.10/documentation/Fl_Progress.html b/third_party/windows/fltk-1.1.10/documentation/Fl_Progress.html new file mode 100644 index 0000000..f6005c3 --- /dev/null +++ b/third_party/windows/fltk-1.1.10/documentation/Fl_Progress.html @@ -0,0 +1,73 @@ + + + Fl_Progress + + + + +

class Fl_Progress

+ +
+ +

Class Hierarchy

+ + + +

Include Files

+ + + +

Description

+ +

The Fl_Progress widget displays a progress bar for the +user. + +

Methods

+ + + +

Fl_Progress::Fl_Progress(int x, int y, int w, int h, const char *label = 0)

+ +

The constructor creates the progress bar using the position, +size, and label. + +

You can set the background color with color() and the progress bar color with +selection_color(), or you can set both colors together with color(unsigned bg, unsigned sel). + +

The default colors are FL_BACKGROUND2_COLOR and FL_YELLOW, resp. + +

Fl_Progress::~Fl_Progress(void)

+ +

The destructor removes the progress bar. + +

void maximum(float v); +
float maximum() const;

+ +

Gets or sets the maximum value in the progress widget. + +

void minimum(float v); +
float minimum() const;

+ +

Gets or sets the minimum value in the progress widget. + +

void value(float v); +
float value() const;

+ +

Gets or sets the current value in the progress widget. + + + -- cgit v1.3.1