add key bindings for "*" and "/" (expand/collapse all). (#110195, reported
Thu Dec 18 18:01:01 2003 Kristian Rietveld <kris@gtk.org> * gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings for "*" and "/" (expand/collapse all). (#110195, reported by Calum Benson).
This commit is contained in:
parent
10b2c91b23
commit
dad34f29b2
@ -1,3 +1,9 @@
|
||||
Thu Dec 18 18:01:01 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings
|
||||
for "*" and "/" (expand/collapse all). (#110195, reported by
|
||||
Calum Benson).
|
||||
|
||||
Thu Dec 18 17:52:56 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Dec 18 18:01:01 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings
|
||||
for "*" and "/" (expand/collapse all). (#110195, reported by
|
||||
Calum Benson).
|
||||
|
||||
Thu Dec 18 17:52:56 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Dec 18 18:01:01 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings
|
||||
for "*" and "/" (expand/collapse all). (#110195, reported by
|
||||
Calum Benson).
|
||||
|
||||
Thu Dec 18 17:52:56 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Dec 18 18:01:01 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings
|
||||
for "*" and "/" (expand/collapse all). (#110195, reported by
|
||||
Calum Benson).
|
||||
|
||||
Thu Dec 18 17:52:56 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Dec 18 18:01:01 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_class_init): add key bindings
|
||||
for "*" and "/" (expand/collapse all). (#110195, reported by
|
||||
Calum Benson).
|
||||
|
||||
Thu Dec 18 17:52:56 2003 Kristian Rietveld <kris@gtk.org>
|
||||
|
||||
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_set_property):
|
||||
|
@ -933,6 +933,29 @@ G_PARAM_READABLE));
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, FALSE);
|
||||
|
||||
gtk_binding_entry_add_signal (binding_set, GDK_asterisk, 0,
|
||||
"expand_collapse_cursor_row", 3,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, TRUE);
|
||||
gtk_binding_entry_add_signal (binding_set, GDK_KP_Multiply, 0,
|
||||
"expand_collapse_cursor_row", 3,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, TRUE);
|
||||
|
||||
gtk_binding_entry_add_signal (binding_set, GDK_slash, 0,
|
||||
"expand_collapse_cursor_row", 3,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, FALSE,
|
||||
G_TYPE_BOOLEAN, FALSE);
|
||||
gtk_binding_entry_add_signal (binding_set, GDK_KP_Divide, 0,
|
||||
"expand_collapse_cursor_row", 3,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
G_TYPE_BOOLEAN, FALSE,
|
||||
G_TYPE_BOOLEAN, FALSE);
|
||||
|
||||
/* Not doable on US keyboards */
|
||||
gtk_binding_entry_add_signal (binding_set, GDK_plus, GDK_SHIFT_MASK, "expand_collapse_cursor_row", 3,
|
||||
G_TYPE_BOOLEAN, TRUE,
|
||||
|
Loading…
Reference in New Issue
Block a user