summaryrefslogtreecommitdiff
path: root/FL/Fl_Tooltip.H
diff options
context:
space:
mode:
authorNo Author <No Author>2001-08-01 21:24:49 +0000
committerNo Author <No Author>2001-08-01 21:24:49 +0000
commit3cb5ebe0e811f3db008085d985b7761725589a74 (patch)
tree0a7184a5f02fffe927af911758f3a9a4a2f4a37e /FL/Fl_Tooltip.H
parent4477e166400f197bed50b09e01e695221cde96b6 (diff)
This commit was manufactured by cvs2svn to create branch 'branch-1.1'.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1513 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Tooltip.H')
-rw-r--r--FL/Fl_Tooltip.H72
1 files changed, 72 insertions, 0 deletions
diff --git a/FL/Fl_Tooltip.H b/FL/Fl_Tooltip.H
new file mode 100644
index 000000000..054c16786
--- /dev/null
+++ b/FL/Fl_Tooltip.H
@@ -0,0 +1,72 @@
+//
+// "$Id: Fl_Tooltip.H,v 1.16 2001/02/25 01:41:19 clip Exp $"
+//
+// Tooltip definitions for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 1998-1999 by Bill Spitzak and others.
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Library General Public License for more details.
+//
+// You should have received a copy of the GNU Library General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+//
+// Please report all bugs and problems to "fltk-bugs@easysw.com".
+//
+
+#ifndef _FL_TOOLTIP_H_
+#define _FL_TOOLTIP_H_
+
+#include <FL/Fl.H>
+#include <FL/Fl_Widget.H>
+
+class FL_API Fl_Tooltip {
+public:
+ static float delay() { return delay_; }
+ static void delay(float f) { delay_ = f; }
+ static int enabled() { return enabled_; }
+ static void enable(int b = 1) { enabled_ = b; }
+ static void disable() { enable(0); }
+
+ // This is called when the pointer enters a widget,
+ // Also enter(0) gets rid of any displayed or pending tooltip:
+ static void (*enter)(Fl_Widget* w);
+
+ // A widget may also pop up tooltips for internal parts by calling this:
+ static void (*enter_area)(Fl_Widget* w, int X, int Y, int W, int H, const char* tip);
+
+ // This is called when a widget is destroyed or hidden:
+ static void (*exit)(Fl_Widget *w);
+
+ static Fl_Style* style() { return default_style; }
+ static Fl_Font font() { return style()->label_font; }
+ static void font(Fl_Font i) { style()->label_font = i; }
+ static unsigned size() { return style()->label_size; }
+ static void size(unsigned s) { style()->label_size = s; }
+ static void color(Fl_Color c) { style()->color = c; }
+ static Fl_Color color() { return style()->color; }
+ static void textcolor(Fl_Color c) {style()->label_color = c; }
+ static Fl_Color textcolor() { return style()->label_color; }
+ static void boxtype(Fl_Boxtype b) {style()->box = b; }
+ static Fl_Boxtype boxtype() { return style()->box; }
+
+private:
+ static Fl_Named_Style* default_style;
+ static float delay_;
+ static int enabled_;
+};
+
+#endif
+
+//
+// End of "$Id: Fl_Tooltip.H,v 1.16 2001/02/25 01:41:19 clip Exp $".
+//