From 079082ef7c67377f8e24fcec6cadaa4c49e3af2b Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 29 Oct 2001 03:44:33 +0000 Subject: 32-bit color (RGB0 or 000I), a la FLTK 2.0, including fl_rgb_color() function to generate an RGB Fl_Color value. Sort button names in FLUID. Fix focus and scroll problems in Fl_Text_Display/Editor. Fix radio/button demo. Removed D2 menubar.H header... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1663 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Tooltip.H | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'FL/Fl_Tooltip.H') diff --git a/FL/Fl_Tooltip.H b/FL/Fl_Tooltip.H index 19dba0cf7..4d29a0834 100644 --- a/FL/Fl_Tooltip.H +++ b/FL/Fl_Tooltip.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Tooltip.H,v 1.16.2.3 2001/08/03 02:28:32 easysw Exp $" +// "$Id: Fl_Tooltip.H,v 1.16.2.4 2001/10/29 03:44:31 easysw Exp $" // // Tooltip header file for the Fast Light Tool Kit (FLTK). // @@ -43,7 +43,7 @@ class FL_EXPORT Fl_Tooltip { static Fl_Menu_Window *window; static Fl_Widget *widget; static int shown; - static uchar color_; + static unsigned color_; static int font_; static int size_; @@ -62,8 +62,8 @@ public: static int size() { return size_; } static void font(int i) { font_ = i; } static void size(int s) { size_ = s; } - static void color(uchar c) { color_ = c; } - static uchar color() { return color_; } + static void color(unsigned c) { color_ = c; } + static Fl_Color color() { return (Fl_Color)color_; } static void enter(Fl_Widget *w); static void exit(Fl_Widget *w); @@ -76,5 +76,5 @@ public: #endif // -// End of "$Id: Fl_Tooltip.H,v 1.16.2.3 2001/08/03 02:28:32 easysw Exp $". +// End of "$Id: Fl_Tooltip.H,v 1.16.2.4 2001/10/29 03:44:31 easysw Exp $". // -- cgit v1.2.3