diff options
author | Elliot Lee <sopwith@src.gnome.org> | 1997-12-17 14:36:57 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 1997-12-17 14:36:57 +0000 |
commit | 4c530ae5bc672d64462322a2562b5d1c8ece41a4 (patch) | |
tree | 09aeab539342904e8b8abe622bfd221ce1d03c49 /gtk/gtkhandlebox.h | |
parent | 134466992bfcfe128307e7e61060dee751d8d6ab (diff) | |
download | gdk-pixbuf-4c530ae5bc672d64462322a2562b5d1c8ece41a4.tar.gz |
Added root coords to button & motion events - sopwith
Diffstat (limited to 'gtk/gtkhandlebox.h')
-rw-r--r-- | gtk/gtkhandlebox.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkhandlebox.h b/gtk/gtkhandlebox.h index ad57d4644..7e69bb642 100644 --- a/gtk/gtkhandlebox.h +++ b/gtk/gtkhandlebox.h @@ -15,6 +15,7 @@ * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* The GtkHandleBox is to allow #ifndef __GTK_HANDLE_BOX_H__ #define __GTK_HANDLE_BOX_H__ @@ -38,8 +39,9 @@ typedef struct _GtkHandleBoxClass GtkHandleBoxClass; struct _GtkHandleBox { - GtkEventBox bin; + GtkEventBox event_box; GtkWidget *real_parent; + gboolean is_being_dragged; }; struct _GtkHandleBoxClass |