From 7e8ec10e6d9a50ea7a4cea0d00cf7566135c8a15 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 18 Apr 2002 20:37:29 +0000 Subject: Add missing docos for Fl_Progress. Add Fl_File_Chooser::directory_label, filename_label, and filter_label static string pointers for labels (allows for I18N of the file chooser). Fix typos in other docos. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2098 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl.html | 5 ++++ documentation/Fl_Button.html | 2 +- documentation/Fl_Progress.html | 65 ++++++++++++++++++++++++++++++++++++++++++ documentation/Fl_Widget.html | 2 +- documentation/fltk.book | 3 +- documentation/widgets.html | 2 ++ 6 files changed, 76 insertions(+), 3 deletions(-) create mode 100644 documentation/Fl_Progress.html (limited to 'documentation') diff --git a/documentation/Fl.html b/documentation/Fl.html index 15e52dece..65b5cd4dd 100644 --- a/documentation/Fl.html +++ b/documentation/Fl.html @@ -1043,6 +1043,11 @@ done.

void set_idle(void (*cb)());

+

Sets an idle callback. + +

This method is obsolete - use the add_idle() method instead. +

void set_labeltype(Fl_Labeltype,Fl_Label_Draw_F*,Fl_Label_Measure_F*);
void set_labeltype(Fl_Labeltype, Fl_Labeltype from);

diff --git a/documentation/Fl_Button.html b/documentation/Fl_Button.html index e6ee1e733..533d4066a 100644 --- a/documentation/Fl_Button.html +++ b/documentation/Fl_Button.html @@ -67,7 +67,7 @@ w, int h, const char *label = 0) The constructor creates the button using the position, size, and label.

Fl_Button::~Fl_Button(void)

- The destructor removed the button. + The destructor removes the button.

int Fl_Button::clear()

Same as value(0).

Fl_Boxtype Fl_Button::down_box() const diff --git a/documentation/Fl_Progress.html b/documentation/Fl_Progress.html new file mode 100644 index 000000000..d20d14a54 --- /dev/null +++ b/documentation/Fl_Progress.html @@ -0,0 +1,65 @@ + + + + +

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. + +

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. + + + diff --git a/documentation/Fl_Widget.html b/documentation/Fl_Widget.html index 457edde55..ce6249cbd 100644 --- a/documentation/Fl_Widget.html +++ b/documentation/Fl_Widget.html @@ -9,7 +9,7 @@ | +----Fl_Box, Fl_Browser_, Fl_Button, Fl_Chart, Fl_Clock, Fl_Free, Fl_Group, Fl_Input_, Fl_Menu_, Fl_Positioner, - Fl_Timer, Fl_Valuator + Fl_Progress, Fl_Timer, Fl_Valuator

Include Files

diff --git a/documentation/fltk.book b/documentation/fltk.book index 74ebf3d15..7df87427f 100644 --- a/documentation/fltk.book +++ b/documentation/fltk.book @@ -1,4 +1,4 @@ -#HTMLDOC 1.8.17 +#HTMLDOC 1.8.19 -t pdf13 -f fltk.pdf --book --toclevels 2 --no-numbered --toctitle "Table of Contents" --title --titleimage FL.gif --linkstyle underline --size Universal --left 1.00in --right 0.50in --top 0.50in --bottom 0.50in --header .t. --footer h.1 --tocheader .t. --tocfooter ..i --duplex --portrait --color --no-pscommands --no-xrxcomments --compression=9 --jpeg=50 --fontsize 11.0 --fontspacing 1.2 --headingfont Helvetica --bodyfont Times --headfootsize 11.0 --headfootfont Helvetica --charset 8859-1 --links --no-truetype --pagemode outline --pagelayout single --firstpage c1 --pageeffect none --pageduration 10 --effectduration 1.0 --no-encryption --permissions all --owner-password "" --user-password "" --browserwidth 680 preface.html intro.html @@ -60,6 +60,7 @@ Fl_Pixmap.html Fl_PNG_Image.html Fl_PNM_Image.html Fl_Positioner.html +Fl_Progress.html Fl_Repeat_Button.html Fl_RGB_Image.html Fl_Return_Button.html diff --git a/documentation/widgets.html b/documentation/widgets.html index 24501e406..f93f6a3b3 100644 --- a/documentation/widgets.html +++ b/documentation/widgets.html @@ -63,6 +63,7 @@ description of the fl_ functions, see Fl_PNG_Image
Fl_PNM_Image
Fl_Positioner
+Fl_Progress
Fl_Repeat_Button
Fl_Return_Button
Fl_RGB_Image
@@ -195,6 +196,7 @@ description of the fl_ functions, see
  • Fl_Menu_Button
  • Fl_Positioner +
  • Fl_Progress
  • Fl_Timer
  • Fl_Valuator