diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-18 20:37:29 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-18 20:37:29 +0000 |
| commit | 7e8ec10e6d9a50ea7a4cea0d00cf7566135c8a15 (patch) | |
| tree | d8d7e5e749739ac9a8115b1f9aba62a8bc65a890 /documentation/Fl_Progress.html | |
| parent | 9ca9171e7a35f4a2b3b6c8b52bdc966218b8137f (diff) | |
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
Diffstat (limited to 'documentation/Fl_Progress.html')
| -rw-r--r-- | documentation/Fl_Progress.html | 65 |
1 files changed, 65 insertions, 0 deletions
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 @@ +<HTML> +<BODY> + +<!-- NEW PAGE --> +<H2><A name=Fl_Progress>class Fl_Progress</A></H2> + +<HR> + +<H3>Class Hierarchy</H3> + +<UL><PRE> +<A href="Fl_Widget.html#Fl_Widget">Fl_Widget</A> + | + +----<B>Fl_Progress</B> +</PRE></UL> + +<H3>Include Files</H3> + +<UL><PRE> +#include <FL/Fl_Progress.H> +</PRE></UL> + +<H3>Description</H3> + +<P>The <TT>Fl_Progress</TT> widget displays a progress bar for the +user. + +<H3>Methods</H3> + +<UL> + + <LI><A href="#Fl_Progress.Fl_Progress">Fl_Progress</A></LI> + <LI><A href="#Fl_Progress.~Fl_Progress">~Fl_Progress</A></LI> + <LI><A href="#Fl_Progress.maximum">maximum</A></LI> + <LI><A href="#Fl_Progress.minimum">minimum</A></LI> + <LI><A href="#Fl_Progress.value">value</A></LI> + +</UL> + +<H4><A name="Fl_Progress.Fl_Progress">Fl_Progress::Fl_Progress(int x, int y, int w, int h, const char *label = 0)</A></H4> + +<P>The constructor creates the progress bar using the position, +size, and label. + +<H4><A name="Fl_Progress.~Fl_Progress">Fl_Progress::~Fl_Progress(void)</A></H4> + +<P>The destructor removes the progress bar. + +<H4><A name="Fl_Progress.maximum">void maximum(float v); +<BR>float maximum() const;</A></H4> + +<P>Gets or sets the maximum value in the progress widget. + +<H4><A name="Fl_Progress.minimum">void minimum(float v); +<BR>float minimum() const;</A></H4> + +<P>Gets or sets the minimum value in the progress widget. + +<H4><A name="Fl_Progress.value">void value(float v); +<BR>float value() const;</A></H4> + +<P>Gets or sets the current value in the progress widget. + +</BODY> +</HTML> |
