diff options
| author | engelsman <engelsman> | 2008-09-21 08:00:32 +0000 |
|---|---|---|
| committer | engelsman <engelsman> | 2008-09-21 08:00:32 +0000 |
| commit | 4bc22ed15d3ed21d49ce96e57412e2bfc9d0261c (patch) | |
| tree | 9c6d52a05b4c96145a9f88de4f840eb4a5fcd8ad /FL/Fl_Clock.H | |
| parent | fb343ffdf6da842ceb22c6588cd4091999c6f3ab (diff) | |
doxygen comments for undocumented features of Fl_Clock, Fl_Check_Browser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6327 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Clock.H')
| -rw-r--r-- | FL/Fl_Clock.H | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H index ada853a22..2d21e1f14 100644 --- a/FL/Fl_Clock.H +++ b/FL/Fl_Clock.H @@ -36,10 +36,10 @@ #endif // values for type: -#define FL_SQUARE_CLOCK 0 -#define FL_ROUND_CLOCK 1 -#define FL_ANALOG_CLOCK FL_SQUARE_CLOCK -#define FL_DIGITAL_CLOCK FL_SQUARE_CLOCK // nyi +#define FL_SQUARE_CLOCK 0 /**< type() of Square Clock variant */ +#define FL_ROUND_CLOCK 1 /**< type() of Round Clock variant */ +#define FL_ANALOG_CLOCK FL_SQUARE_CLOCK /**< An analog clock is square */ +#define FL_DIGITAL_CLOCK FL_SQUARE_CLOCK /**< Not yet implemented */ /** \class Fl_Clock_Output @@ -57,8 +57,8 @@ class FL_EXPORT Fl_Clock_Output : public Fl_Widget { ulong value_; void drawhands(Fl_Color,Fl_Color); // part of draw protected: - void draw(int, int, int, int); void draw(); + void draw(int X, int Y, int W, int H); public: Fl_Clock_Output(int X, int Y, int W, int H, const char *L = 0); @@ -109,6 +109,10 @@ public: class FL_EXPORT Fl_Clock : public Fl_Clock_Output { public: int handle(int); + /** + Undefined. + \todo Find Fl_Clock::update() implementation, if any, and document it. + */ void update(); Fl_Clock(int X, int Y, int W, int H, const char *L = 0); |
