]> Pileus Git - ~andy/gtk/commitdiff
Set container_class->focus to NULL. Widgets in the toolbar should not get
authorFederico Mena <federico@bananoid.nuclecu.unam.mx>
Mon, 19 Jan 1998 23:45:37 +0000 (23:45 +0000)
committerArturo Espinosa <unammx@src.gnome.org>
Mon, 19 Jan 1998 23:45:37 +0000 (23:45 +0000)
Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>

* gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
container_class->focus to NULL.  Widgets in the toolbar should not
get the focus via the normal key bindings (no toolkit does this,
and it makes sense).

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktoolbar.c

index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index 0d2dab1b5ae89c83ef91375b5e0540f210487866..a9845729c1e262fbdbcb25ce17a0c9799c525f26 100644 (file)
@@ -1,5 +1,10 @@
 Mon Jan 19 16:21:00 1998  Federico Mena  <federico@bananoid.nuclecu.unam.mx>
 
+       * gtk/gtktoolbar.c (gtk_toolbar_class_init): Set
+       container_class->focus to NULL.  Widgets in the toolbar should not
+       get the focus via the normal key bindings (no toolkit does this,
+       and it makes sense).
+
        * gtk/testgtk.c (create_toolbar): Removed the GTK_PIXMAP casts to
        match Eckehard's new prototypes.
 
index df311fd9722f2496f32ac2967b1bc1c2325fa8dd..c582254d8c7643d585e06ea0add531b155111352 100644 (file)
@@ -158,6 +158,7 @@ gtk_toolbar_class_init (GtkToolbarClass *class)
   container_class->add = gtk_toolbar_add;
   container_class->remove = gtk_toolbar_remove;
   container_class->foreach = gtk_toolbar_foreach;
+  container_class->focus = NULL;
 
   class->orientation_changed = gtk_real_toolbar_orientation_changed;
   class->style_changed = gtk_real_toolbar_style_changed;