summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>2000-06-16 07:28:03 +0000
committerBill Spitzak <spitzak@gmail.com>2000-06-16 07:28:03 +0000
commit4dd096e7b52301663ddaa002984e10cb83d97b9a (patch)
treecf147534bff0f11532f289c7650c9b797457d7c9 /FL
parent084b19e305eccead76c2322d1533af526684ed6b (diff)
Added has_timeout() and has_idle() calls as suggested by Eric Sven Ristad.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1214 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl.H6
1 files changed, 4 insertions, 2 deletions
diff --git a/FL/Fl.H b/FL/Fl.H
index daffc5b14..9f0aece50 100644
--- a/FL/Fl.H
+++ b/FL/Fl.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $"
+// "$Id: Fl.H,v 1.8.2.7 2000/06/16 07:27:57 bill Exp $"
//
// Main header file for the Fast Light Tool Kit (FLTK).
//
@@ -91,12 +91,14 @@ public:
static FL_EXPORT int run();
static FL_EXPORT Fl_Widget* readqueue();
static FL_EXPORT void add_timeout(double t, Fl_Timeout_Handler,void* = 0);
+ static FL_EXPORT int has_timeout(Fl_Timeout_Handler, void* = 0);
static FL_EXPORT void remove_timeout(Fl_Timeout_Handler, void* = 0);
static FL_EXPORT void add_fd(int fd, int when, void (*cb)(int,void*),void* =0);
static FL_EXPORT void add_fd(int fd, void (*cb)(int, void*), void* = 0);
static FL_EXPORT void remove_fd(int, int when);
static FL_EXPORT void remove_fd(int);
static FL_EXPORT void add_idle(void (*cb)(void*), void* = 0);
+ static FL_EXPORT int has_idle(void (*cb)(void*), void* = 0);
static FL_EXPORT void remove_idle(void (*cb)(void*), void* = 0);
static FL_EXPORT int damage() {return damage_;}
static FL_EXPORT void redraw();
@@ -211,5 +213,5 @@ public:
#endif
//
-// End of "$Id: Fl.H,v 1.8.2.6 2000/06/05 21:20:18 mike Exp $".
+// End of "$Id: Fl.H,v 1.8.2.7 2000/06/16 07:27:57 bill Exp $".
//