From: Matthias Clasen Date: Fri, 28 Jan 2011 23:16:56 +0000 (-0500) Subject: Convert the Emacs key theme to css X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=c770f441ca208e3ce784d109b46e7b1e67663834;p=~andy%2Fgtk Convert the Emacs key theme to css --- diff --git a/gtk/Makefile.am b/gtk/Makefile.am index d799ed2d7..c8317c0f5 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -934,6 +934,7 @@ install-data-local: install-ms-lib install-def-file install-mac-key-theme $(INSTALL_DATA) $(srcdir)/gtkrc.key.default $(DESTDIR)$(datadir)/themes/Default/gtk-3.0-key/gtkrc $(mkdir_p) $(DESTDIR)$(datadir)/themes/Emacs/gtk-3.0-key $(INSTALL_DATA) $(srcdir)/gtkrc.key.emacs $(DESTDIR)$(datadir)/themes/Emacs/gtk-3.0-key/gtkrc + $(INSTALL_DATA) $(srcdir)/gtk-keys.css.emacs $(DESTDIR)$(datadir)/themes/Emacs/gtk-3.0/gtk-keys.css uninstall-local: uninstall-ms-lib uninstall-def-file uninstall-mac-key-theme rm -f $(DESTDIR)$(datadir)/themes/Raleigh/gtk-3.0/gtkrc @@ -1361,6 +1362,7 @@ EXTRA_DIST += \ gtkrc.default \ gtkrc.key.default \ gtkrc.key.emacs \ + gtk-keys.css.emacs \ gtkrc.key.mac \ makefile.msc \ makefile.msc.in \ diff --git a/gtk/gtk-keys.css.emacs b/gtk/gtk-keys.css.emacs new file mode 100644 index 000000000..df7d4b8ba --- /dev/null +++ b/gtk/gtk-keys.css.emacs @@ -0,0 +1,123 @@ +/* + * 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, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +/* + * 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-set 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-set 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-set 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-set gtk-emacs-menu +{ + bind "n" { "move-current" (next) }; + bind "p" { "move-current" (prev) }; + bind "f" { "move-current" (child) }; + bind "b" { "move-current" (parent) }; +}; + +GtkEntry { + gtk-key-bindings: gtk-emacs-text-entry; +} + +GtkTextView { + gtk-key-bindings: gtk-emacs-text-entry, gtk-emacs-text-view; +} + +GtkTreeView { + gtk-key-bindings: gtk-emacs-tree-view; +} + +GtkMenuShell { + gtk-key-bindings: gtk-emacs-menu; +}