From fdcfef214e67b0b1162ef4098ba960efd7049523 Mon Sep 17 00:00:00 2001 From: Fabien Costantini Date: Mon, 15 Sep 2008 00:27:28 +0000 Subject: Doxygen documentation WP7 Done. Fl_Menu_Item was a real pain to doxyfy. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6248 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Progress.cxx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/Fl_Progress.cxx') diff --git a/src/Fl_Progress.cxx b/src/Fl_Progress.cxx index 69e76492c..ee311a326 100644 --- a/src/Fl_Progress.cxx +++ b/src/Fl_Progress.cxx @@ -25,6 +25,7 @@ // http://www.fltk.org/str.php // // Contents: + // // Fl_Progress::draw() - Draw the check button. // Fl_Progress::Fl_Progress() - Construct a Fl_Progress widget. @@ -49,6 +50,7 @@ // 'Fl_Progress::draw()' - Draw the check button. // +/** Draws the check button. */ void Fl_Progress::draw() { int progress; // Size of progress bar... @@ -96,13 +98,13 @@ void Fl_Progress::draw() } -// -// 'Fl_Progress::Fl_Progress()' - Construct a Fl_Progress widget. -// - +/** + The constructor creates the progress bar using the position, + size, and label. +

The inherited destructor removes the progress bar. +*/ Fl_Progress::Fl_Progress(int X, int Y, int W, int H, const char* l) -: Fl_Widget(X, Y, W, H, l) -{ +: Fl_Widget(X, Y, W, H, l) { align(FL_ALIGN_INSIDE); box(FL_DOWN_BOX); color(FL_BACKGROUND2_COLOR, FL_YELLOW); -- cgit v1.2.3