diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-09-12 20:26:23 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-09-12 20:26:23 +0000 |
| commit | 70dd6151c1d16efc5d6214949266db0ccae0abfa (patch) | |
| tree | bb446f06f2121c7eee2a21ccda189a9683baedd5 /FL/Fl_Tooltip.H | |
| parent | 35af1c00cc1bb903da2d7c9bc953a81f13553a12 (diff) | |
Tooltips would not reappear on the same widget, and the initial
tooltip delay was not used after a tooltip was shown (STR #465)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3822 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Tooltip.H')
| -rw-r--r-- | FL/Fl_Tooltip.H | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/FL/Fl_Tooltip.H b/FL/Fl_Tooltip.H index 3c90ae8b6..c1d008ca0 100644 --- a/FL/Fl_Tooltip.H +++ b/FL/Fl_Tooltip.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.H,v 1.16.2.12 2004/04/11 04:38:54 easysw Exp $" +// "$Id: Fl_Tooltip.H,v 1.16.2.13 2004/09/12 20:26:23 easysw Exp $" // // Tooltip header file for the Fast Light Tool Kit (FLTK). // @@ -52,6 +52,11 @@ public: static Fl_Color color() { return (Fl_Color)color_; } static void textcolor(unsigned c) { textcolor_ = c; } static Fl_Color textcolor() { return (Fl_Color)textcolor_; } + + // These should not be public, but Fl_Widget::tooltip() needs them... + static void enter_(Fl_Widget* w); + static void exit_(Fl_Widget *w); + private: static float delay_; static float hoverdelay_; @@ -66,5 +71,5 @@ private: #endif // -// End of "$Id: Fl_Tooltip.H,v 1.16.2.12 2004/04/11 04:38:54 easysw Exp $". +// End of "$Id: Fl_Tooltip.H,v 1.16.2.13 2004/09/12 20:26:23 easysw Exp $". // |
