GdkEventButton->button can occupy significantly more than 2 bits. Besides,

* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly more than 2
bits. Besides, I need to implement an evil hack. :)
This commit is contained in:
Elliot Lee 2000-11-22 01:00:26 +00:00
parent 2fe5a448ee
commit f8ab34e606
8 changed files with 31 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -1,3 +1,7 @@
2000-11-21 Elliot Lee <sopwith@redhat.com>
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
more than 2 bits. Besides, I need to implement an evil hack. :)
Tue Nov 21 14:17:51 GMT 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: minor corrections

View File

@ -56,15 +56,15 @@ struct _GtkMenuShell
GtkWidget *active_menu_item;
GtkWidget *parent_menu_shell;
guint button;
guint32 activate_time;
guint active : 1;
guint have_grab : 1;
guint have_xgrab : 1;
guint button : 2;
guint ignore_leave : 1;
guint menu_flag : 1;
guint ignore_enter : 1;
guint32 activate_time;
};
struct _GtkMenuShellClass