diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-09 17:20:24 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-09 17:20:24 +0000 |
| commit | 4586bf0fccc12328f6f876c527648f9260c406dc (patch) | |
| tree | c029e3aa1f8e54189132aabf332eb838227d3347 /FL/Fl_Tooltip.H | |
| parent | 17374b20bb7bc6230170e341105bed9f2e4e3b05 (diff) | |
Tooltip fixes: ignore keyboard events, immediately disable new tooltips,
show tooltips for box widgets.
Add docos for Fl_Widget::tooltip() methods.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2060 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Tooltip.H')
| -rw-r--r-- | FL/Fl_Tooltip.H | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/FL/Fl_Tooltip.H b/FL/Fl_Tooltip.H index a7dea7cb6..11858d4f4 100644 --- a/FL/Fl_Tooltip.H +++ b/FL/Fl_Tooltip.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.H,v 1.16.2.5 2002/01/01 15:11:28 easysw Exp $" +// "$Id: Fl_Tooltip.H,v 1.16.2.6 2002/04/09 17:20:23 easysw Exp $" // // Tooltip header file for the Fast Light Tool Kit (FLTK). // @@ -30,17 +30,17 @@ #include <FL/Fl_Widget.H> -class Fl_TooltipBox; -class Fl_Menu_Window; +class Fl_Tooltip_Box; +class Fl_Tooltip_Window; class FL_EXPORT Fl_Tooltip { - friend class Fl_TooltipBox; + friend class Fl_Tooltip_Box; friend class Fl_Widget; static float delay_; - static Fl_TooltipBox *box; - static Fl_Menu_Window *window; + static Fl_Tooltip_Box *box; + static Fl_Tooltip_Window *window; static Fl_Widget *widget; static int shown; static unsigned color_; @@ -76,5 +76,5 @@ public: #endif // -// End of "$Id: Fl_Tooltip.H,v 1.16.2.5 2002/01/01 15:11:28 easysw Exp $". +// End of "$Id: Fl_Tooltip.H,v 1.16.2.6 2002/04/09 17:20:23 easysw Exp $". // |
