diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-11-23 19:47:52 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2004-11-23 19:47:52 +0000 |
| commit | a42ded75e297cedfcb448537e77d13350df0fe92 (patch) | |
| tree | 3940e35fff5db18195b113bcb5055f7c5d0577a7 /documentation/Fl.html | |
| parent | 5cc0f07c8a18841ba32ec5b3a12737c9f7d13cc2 (diff) | |
Added the 2.0 Fl_Widget::copy_label() method to allow FLTK 1.x
applications to have their label strings managed by FLTK (STR
#630)
Added Fl::delete_widget() method to safely delete widgets in
callback methods (STR #629)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3917 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/Fl.html')
| -rw-r--r-- | documentation/Fl.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/documentation/Fl.html b/documentation/Fl.html index 5e34d8394..96791f3d3 100644 --- a/documentation/Fl.html +++ b/documentation/Fl.html @@ -49,6 +49,7 @@ state information and global methods for the current application.</P> <LI><A HREF="#Fl.copy">copy</A></LI> <LI><A HREF="#Fl.damage">damage</A></LI> <LI><A HREF="#Fl.default_atclose">default_atclose</A></LI> + <LI><A HREF="#Fl.delete_widget">delete_widget</A></LI> <LI><A HREF="#Fl.display">display</A></LI> <LI><A HREF="#Fl.dnd">dnd</A></LI> <LI><A HREF="#Fl.dnd_text_ops">dnd_text_ops</A></LI> @@ -491,6 +492,16 @@ void damage(int x);</A></H4> <H4><A NAME="Fl.default_atclose">void default_atclose(Fl_Window*,void*);</A></H4> +<p>This is the default callback for window widgets. It hides the +window and then calls the default widget callback.</p> + +<H4><A NAME="Fl.delete_widget">void delete_widget(Fl_Widget*);</A></H4> + +<p>Schedules a widget for deletion when it is safe to do so. Use +this method to delete a widget inside a callback function. When +deleting groups or windows, you must only delete the group or +window widget and not the individual child widgets.</p> + <H4><A NAME="Fl.display">void display(const char*);</A></H4> <P>Sets the X display to use for all windows. Actually this just sets |
