forked from AuroraMiddleware/gtk
Switch control-home/end and home/end with the idea that scrolled windows
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init): Switch control-home/end and home/end with the idea that scrolled windows more typically contain vertical sets of controls and to correspond to the bindings in GtkTreeView.
This commit is contained in:
parent
2b33da526b
commit
ff16981dd6
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -1,3 +1,11 @@
|
||||
Tue Feb 26 19:38:14 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
|
||||
Switch control-home/end and home/end with
|
||||
the idea that scrolled windows more typically contain
|
||||
vertical sets of controls and to correspond to the bindings
|
||||
in GtkTreeView.
|
||||
|
||||
Tue Feb 26 19:32:42 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtk[hv]vscale.c (gtk_[hv]scale_expose): Chain
|
||||
|
@ -308,10 +308,10 @@ gtk_scrolled_window_class_init (GtkScrolledWindowClass *class)
|
||||
add_scroll_binding (binding_set, GDK_Page_Up, 0, GTK_SCROLL_PAGE_BACKWARD, FALSE);
|
||||
add_scroll_binding (binding_set, GDK_Page_Down, 0, GTK_SCROLL_PAGE_FORWARD, FALSE);
|
||||
|
||||
add_scroll_binding (binding_set, GDK_Home, 0, GTK_SCROLL_START, TRUE);
|
||||
add_scroll_binding (binding_set, GDK_End, 0, GTK_SCROLL_END, TRUE);
|
||||
add_scroll_binding (binding_set, GDK_Home, GDK_CONTROL_MASK, GTK_SCROLL_START, FALSE);
|
||||
add_scroll_binding (binding_set, GDK_End, GDK_CONTROL_MASK, GTK_SCROLL_END, FALSE);
|
||||
add_scroll_binding (binding_set, GDK_Home, GDK_CONTROL_MASK, GTK_SCROLL_START, TRUE);
|
||||
add_scroll_binding (binding_set, GDK_End, GDK_CONTROL_MASK, GTK_SCROLL_END, TRUE);
|
||||
add_scroll_binding (binding_set, GDK_Home, 0, GTK_SCROLL_START, FALSE);
|
||||
add_scroll_binding (binding_set, GDK_End, 0, GTK_SCROLL_END, FALSE);
|
||||
|
||||
add_tab_bindings (binding_set, GDK_CONTROL_MASK, GTK_DIR_TAB_FORWARD);
|
||||
add_tab_bindings (binding_set, GDK_CONTROL_MASK | GDK_SHIFT_MASK, GTK_DIR_TAB_BACKWARD);
|
||||
|
Loading…
Reference in New Issue
Block a user