forked from AuroraMiddleware/gtk
connect_after() to key-press-event on the entry, so input methods get
Wed Aug 13 11:34:53 2003 Owen Taylor <otaylor@redhat.com> * gtk/gtkcombo.c (gtk_combo_init): connect_after() to key-press-event on the entry, so input methods get access to key presses before GtkCombo customization. (#115451, Botond Botyanszki)
This commit is contained in:
parent
296c4b41bf
commit
4001482cb5
@ -1,3 +1,10 @@
|
||||
Wed Aug 13 11:34:53 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkcombo.c (gtk_combo_init): connect_after() to
|
||||
key-press-event on the entry, so input methods get access to
|
||||
key presses before GtkCombo customization.
|
||||
(#115451, Botond Botyanszki)
|
||||
|
||||
2003-08-13 Anders Carlsson <andersca@gnome.org>
|
||||
|
||||
* tests/testtoolbar.c: (set_important_func), (important_toggled),
|
||||
|
@ -1,3 +1,10 @@
|
||||
Wed Aug 13 11:34:53 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkcombo.c (gtk_combo_init): connect_after() to
|
||||
key-press-event on the entry, so input methods get access to
|
||||
key presses before GtkCombo customization.
|
||||
(#115451, Botond Botyanszki)
|
||||
|
||||
2003-08-13 Anders Carlsson <andersca@gnome.org>
|
||||
|
||||
* tests/testtoolbar.c: (set_important_func), (important_toggled),
|
||||
|
@ -1,3 +1,10 @@
|
||||
Wed Aug 13 11:34:53 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkcombo.c (gtk_combo_init): connect_after() to
|
||||
key-press-event on the entry, so input methods get access to
|
||||
key presses before GtkCombo customization.
|
||||
(#115451, Botond Botyanszki)
|
||||
|
||||
2003-08-13 Anders Carlsson <andersca@gnome.org>
|
||||
|
||||
* tests/testtoolbar.c: (set_important_func), (important_toggled),
|
||||
|
@ -1,3 +1,10 @@
|
||||
Wed Aug 13 11:34:53 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkcombo.c (gtk_combo_init): connect_after() to
|
||||
key-press-event on the entry, so input methods get access to
|
||||
key presses before GtkCombo customization.
|
||||
(#115451, Botond Botyanszki)
|
||||
|
||||
2003-08-13 Anders Carlsson <andersca@gnome.org>
|
||||
|
||||
* tests/testtoolbar.c: (set_important_func), (important_toggled),
|
||||
|
@ -1,3 +1,10 @@
|
||||
Wed Aug 13 11:34:53 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkcombo.c (gtk_combo_init): connect_after() to
|
||||
key-press-event on the entry, so input methods get access to
|
||||
key presses before GtkCombo customization.
|
||||
(#115451, Botond Botyanszki)
|
||||
|
||||
2003-08-13 Anders Carlsson <andersca@gnome.org>
|
||||
|
||||
* tests/testtoolbar.c: (set_important_func), (important_toggled),
|
||||
|
@ -911,8 +911,8 @@ gtk_combo_init (GtkCombo * combo)
|
||||
combo->entry_change_id = g_signal_connect (combo->entry, "changed",
|
||||
G_CALLBACK (gtk_combo_update_list),
|
||||
combo);
|
||||
g_signal_connect (combo->entry, "key_press_event",
|
||||
G_CALLBACK (gtk_combo_entry_key_press), combo);
|
||||
g_signal_connect_after (combo->entry, "key_press_event",
|
||||
G_CALLBACK (gtk_combo_entry_key_press), combo);
|
||||
g_signal_connect_after (combo->entry, "focus_out_event",
|
||||
G_CALLBACK (gtk_combo_entry_focus_out), combo);
|
||||
combo->activate_id = g_signal_connect (combo->entry, "activate",
|
||||
|
Loading…
Reference in New Issue
Block a user