diff --git a/gtk/gtkrc.default b/gtk/gtkrc.default deleted file mode 100644 index c66bc131b5..0000000000 --- a/gtk/gtkrc.default +++ /dev/null @@ -1,3 +0,0 @@ -# -# This theme is the default theme if no other theme is selected. -# diff --git a/gtk/gtkrc.key.default b/gtk/gtkrc.key.default deleted file mode 100644 index f677f7f44e..0000000000 --- a/gtk/gtkrc.key.default +++ /dev/null @@ -1,3 +0,0 @@ -# -# Default keybinding set. Empty because it is implemented inline in the code. -# diff --git a/gtk/gtkrc.key.emacs b/gtk/gtkrc.key.emacs deleted file mode 100644 index 0556bdf249..0000000000 --- a/gtk/gtkrc.key.emacs +++ /dev/null @@ -1,111 +0,0 @@ -# GTK - The GIMP Toolkit -# Copyright (C) 2002 Owen Taylor -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library. If not, see . - - -# Modified by the GTK+ Team and others 1997-2000. See the AUTHORS -# file for a list of people on the GTK+ Team. See the ChangeLog -# files for a list of changes. These files are distributed with -# GTK+ at ftp://ftp.gtk.org/pub/gtk/. - - -# -# A keybinding set implementing emacs-like keybindings -# - -# -# Bindings for GtkTextView and GtkEntry -# -binding "gtk-emacs-text-entry" -{ - bind "b" { "move-cursor" (logical-positions, -1, 0) } - bind "b" { "move-cursor" (logical-positions, -1, 1) } - bind "f" { "move-cursor" (logical-positions, 1, 0) } - bind "f" { "move-cursor" (logical-positions, 1, 1) } - - bind "b" { "move-cursor" (words, -1, 0) } - bind "b" { "move-cursor" (words, -1, 1) } - bind "f" { "move-cursor" (words, 1, 0) } - bind "f" { "move-cursor" (words, 1, 1) } - - bind "a" { "move-cursor" (paragraph-ends, -1, 0) } - bind "a" { "move-cursor" (paragraph-ends, -1, 1) } - bind "e" { "move-cursor" (paragraph-ends, 1, 0) } - bind "e" { "move-cursor" (paragraph-ends, 1, 1) } - - bind "w" { "cut-clipboard" () } - bind "y" { "paste-clipboard" () } - - bind "d" { "delete-from-cursor" (chars, 1) } - bind "d" { "delete-from-cursor" (word-ends, 1) } - bind "k" { "delete-from-cursor" (paragraph-ends, 1) } - bind "backslash" { "delete-from-cursor" (whitespace, 1) } - - bind "space" { "delete-from-cursor" (whitespace, 1) - "insert-at-cursor" (" ") } - bind "KP_Space" { "delete-from-cursor" (whitespace, 1) - "insert-at-cursor" (" ") } - - # - # Some non-Emacs keybindings people are attached to - # - bind "u" { - "move-cursor" (paragraph-ends, -1, 0) - "delete-from-cursor" (paragraph-ends, 1) - } - bind "h" { "delete-from-cursor" (chars, -1) } - bind "w" { "delete-from-cursor" (word-ends, -1) } -} - -# -# Bindings for GtkTextView -# -binding "gtk-emacs-text-view" -{ - bind "p" { "move-cursor" (display-lines, -1, 0) } - bind "p" { "move-cursor" (display-lines, -1, 1) } - bind "n" { "move-cursor" (display-lines, 1, 0) } - bind "n" { "move-cursor" (display-lines, 1, 1) } - - bind "space" { "set-anchor" () } - bind "KP_Space" { "set-anchor" () } -} - -# -# Bindings for GtkTreeView -# -binding "gtk-emacs-tree-view" -{ - bind "s" { "start-interactive-search" () } - bind "f" { "move-cursor" (logical-positions, 1) } - bind "b" { "move-cursor" (logical-positions, -1) } -} - -# -# Bindings for menus -# -binding "gtk-emacs-menu" -{ - bind "n" { "move-current" (next) } - bind "p" { "move-current" (prev) } - bind "f" { "move-current" (child) } - bind "b" { "move-current" (parent) } -} - -class "GtkEntry" binding "gtk-emacs-text-entry" -class "GtkTextView" binding "gtk-emacs-text-entry" -class "GtkTextView" binding "gtk-emacs-text-view" -class "GtkTreeView" binding "gtk-emacs-tree-view" -class "GtkMenuShell" binding "gtk-emacs-menu" diff --git a/gtk/gtkrc.key.mac b/gtk/gtkrc.key.mac deleted file mode 100644 index 943843d881..0000000000 --- a/gtk/gtkrc.key.mac +++ /dev/null @@ -1,155 +0,0 @@ -binding "gtk-mac-alt-arrows" -{ - bind "Right" { "move-cursor" (words, 1, 0) } - bind "KP_Right" { "move-cursor" (words, 1, 0) } - bind "Left" { "move-cursor" (words, -1, 0) } - bind "KP_Left" { "move-cursor" (words, -1, 0) } - bind "Right" { "move-cursor" (words, 1, 1) } - bind "KP_Right" { "move-cursor" (words, 1, 1) } - bind "Left" { "move-cursor" (words, -1, 1) } - bind "KP_Left" { "move-cursor" (words, -1, 1) } -} - -class "GtkTextView" binding "gtk-mac-alt-arrows" -class "GtkLabel" binding "gtk-mac-alt-arrows" -class "GtkEntry" binding "gtk-mac-alt-arrows" - - -binding "gtk-mac-alt-delete" -{ - bind "Delete" { "delete-from-cursor" (word-ends, 1) } - bind "KP_Delete" { "delete-from-cursor" (word-ends, 1) } - bind "BackSpace" { "delete-from-cursor" (word-ends, -1) } -} - -class "GtkTextView" binding "gtk-mac-alt-delete" -class "GtkEntry" binding "gtk-mac-alt-delete" - - -binding "gtk-mac-cmd-c" -{ - bind "x" { "cut-clipboard" () } - bind "c" { "copy-clipboard" () } - bind "v" { "paste-clipboard" () } - unbind "x" - unbind "c" - unbind "v" -} - -class "GtkTextView" binding "gtk-mac-cmd-c" -class "GtkEntry" binding "gtk-mac-cmd-c" - - -binding "gtk-mac-text-view" -{ - bind "a" { "select-all" (0) } - bind "a" { "select-all" (1) } - unbind "a" - unbind "a" -} - -class "GtkTextView" binding "gtk-mac-text-view" - - -binding "gtk-mac-label" -{ - bind "a" { - "move-cursor" (paragraph-ends, -1, 0) - "move-cursor" (paragraph-ends, 1, 1) - } - bind "a" { "move-cursor" (paragraph-ends, 0, 0) } - bind "c" { "copy-clipboard" () } - unbind "a" - unbind "a" - unbind "c" -} - -class "GtkLabel" binding "gtk-mac-label" - - -binding "gtk-mac-entry" -{ - bind "a" { - "move-cursor" (buffer-ends, -1, 0) - "move-cursor" (buffer-ends, 1, 1) - } - bind "a" { "move-cursor" (visual-positions, 0, 0) } - unbind "a" - unbind "a" -} - -class "GtkEntry" binding "gtk-mac-entry" - - -binding "gtk-mac-cmd-arrows" -{ - bind "Left" { "move-cursor" (paragraph-ends, -1, 0) } - bind "KP_Left" { "move-cursor" (paragraph-ends, -1, 0) } - bind "Left" { "move-cursor" (paragraph-ends, -1, 1) } - bind "KP_Left" { "move-cursor" (paragraph-ends, -1, 1) } - bind "Right" { "move-cursor" (paragraph-ends, 1, 0) } - bind "KP_Right" { "move-cursor" (paragraph-ends, 1, 0) } - bind "Right" { "move-cursor" (paragraph-ends, 1, 1) } - bind "KP_Right" { "move-cursor" (paragraph-ends, 1, 1) } -} - -class "GtkTextView" binding "gtk-mac-cmd-arrows" -class "GtkLabel" binding "gtk-mac-cmd-arrows" -class "GtkEntry" binding "gtk-mac-cmd-arrows" - - -binding "gtk-mac-emacs-like" -{ - bind "a" { "move-cursor" (paragraph-ends, -1, 0) } - bind "a" { "move-cursor" (paragraph-ends, -1, 1) } - bind "e" { "move-cursor" (paragraph-ends, 1, 0) } - bind "e" { "move-cursor" (paragraph-ends, 1, 1) } - - bind "b" { "move-cursor" (logical-positions, -1, 0) } - bind "b" { "move-cursor" (logical-positions, -1, 1) } - bind "f" { "move-cursor" (logical-positions, 1, 0) } - bind "f" { "move-cursor" (logical-positions, 1, 1) } -} - -class "GtkTextView" binding "gtk-mac-emacs-like" -class "GtkLabel" binding "gtk-mac-emacs-like" -class "GtkEntry" binding "gtk-mac-emacs-like - - -binding "gtk-mac-file-chooser" -{ - bind "v" { "location-popup-on-paste" () } - unbind "v" - - bind "G" { "location-popup" () } - bind "H" { "home-folder" () } - bind "Up" { "up-folder" () } -} - -class "GtkFileChooserWidget" binding "gtk-mac-file-chooser" - - -binding "gtk-mac-tree-view" -{ - bind "a" { "select-all" () } - bind "a" { "unselect-all" () } - bind "f" { "start-interactive-search" () } - bind "F" { "start-interactive-search" () } - unbind "a" - unbind "a" - unbind "f" - unbind "F" -} - -class "GtkTreeView" binding "gtk-mac-tree-view" - - -binding "gtk-mac-icon-view" -{ - bind "a" { "select-all" () } - bind "a" { "unselect-all" () } - unbind "a" - unbind "a" -} - -class "GtkIconView" binding "gtk-mac-icon-view"