2009-05-07 01:06:38 +00:00
|
|
|
#!/usr/bin/python
|
2009-10-14 12:05:07 +00:00
|
|
|
# Terminator - multiple gnome terminals in one window
|
2010-01-04 23:56:28 +00:00
|
|
|
# Copyright (C) 2006-2010 cmsj@tenshu.net
|
2009-05-07 01:06:38 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, version 2 only.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2008-08-11 14:30:51 +00:00
|
|
|
|
2009-05-07 01:06:38 +00:00
|
|
|
"""Terminator by Chris Jones <cmsj@tenshu.net>
|
|
|
|
|
|
|
|
Validator and functions for dealing with Terminator's customisable
|
|
|
|
keyboard shortcuts.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
import gtk
|
2009-10-14 12:05:07 +00:00
|
|
|
from util import err
|
2008-08-11 14:30:51 +00:00
|
|
|
|
|
|
|
class KeymapError(Exception):
|
2009-10-14 12:05:07 +00:00
|
|
|
"""Custom exception for errors in keybinding configurations"""
|
|
|
|
def __init__(self, value):
|
|
|
|
Exception.__init__(self, value)
|
|
|
|
self.value = value
|
|
|
|
self.action = 'unknown'
|
2008-08-11 14:30:51 +00:00
|
|
|
|
2009-10-14 12:05:07 +00:00
|
|
|
def __str__(self):
|
|
|
|
return "Keybinding '%s' invalid: %s" % (self.action, self.value)
|
2008-08-11 14:30:51 +00:00
|
|
|
|
2009-05-07 01:06:38 +00:00
|
|
|
MODIFIER = re.compile('<([^<]+)>')
|
2009-10-14 12:05:07 +00:00
|
|
|
class Keybindings:
|
|
|
|
"""Class to handle loading and lookup of Terminator keybindings"""
|
|
|
|
|
|
|
|
modifiers = {
|
|
|
|
'ctrl': gtk.gdk.CONTROL_MASK,
|
|
|
|
'control': gtk.gdk.CONTROL_MASK,
|
|
|
|
'shift': gtk.gdk.SHIFT_MASK,
|
|
|
|
'alt': gtk.gdk.MOD1_MASK,
|
|
|
|
'super': gtk.gdk.SUPER_MASK,
|
|
|
|
}
|
|
|
|
|
|
|
|
empty = {}
|
|
|
|
keys = None
|
|
|
|
_masks = None
|
|
|
|
_lookup = None
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.keymap = gtk.gdk.keymap_get_default()
|
|
|
|
self.configure({})
|
|
|
|
|
|
|
|
def configure(self, bindings):
|
|
|
|
"""Accept new bindings and reconfigure with them"""
|
|
|
|
self.keys = bindings
|
|
|
|
self.reload()
|
|
|
|
|
|
|
|
def reload(self):
|
|
|
|
"""Parse bindings and mangle into an appropriate form"""
|
|
|
|
self._lookup = {}
|
|
|
|
self._masks = 0
|
|
|
|
for action, bindings in self.keys.items():
|
|
|
|
if not isinstance(bindings, tuple):
|
|
|
|
bindings = (bindings,)
|
|
|
|
|
|
|
|
for binding in bindings:
|
|
|
|
if binding is None or binding == "None":
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
|
|
|
keyval, mask = self._parsebinding(binding)
|
|
|
|
# Does much the same, but with poorer error handling.
|
|
|
|
#keyval, mask = gtk.accelerator_parse(binding)
|
2010-01-22 19:00:53 +00:00
|
|
|
except KeymapError:
|
2009-12-19 02:08:35 +00:00
|
|
|
continue
|
2009-10-14 12:05:07 +00:00
|
|
|
else:
|
|
|
|
if mask & gtk.gdk.SHIFT_MASK:
|
|
|
|
if keyval == gtk.keysyms.Tab:
|
|
|
|
keyval = gtk.keysyms.ISO_Left_Tab
|
|
|
|
mask &= ~gtk.gdk.SHIFT_MASK
|
|
|
|
else:
|
|
|
|
keyvals = gtk.gdk.keyval_convert_case(keyval)
|
|
|
|
if keyvals[0] != keyvals[1]:
|
|
|
|
keyval = keyvals[1]
|
|
|
|
mask &= ~gtk.gdk.SHIFT_MASK
|
|
|
|
else:
|
|
|
|
keyval = gtk.gdk.keyval_to_lower(keyval)
|
|
|
|
self._lookup.setdefault(mask, {})
|
|
|
|
self._lookup[mask][keyval] = action
|
|
|
|
self._masks |= mask
|
|
|
|
|
|
|
|
def _parsebinding(self, binding):
|
|
|
|
"""Parse an individual binding using gtk's binding function"""
|
|
|
|
mask = 0
|
|
|
|
modifiers = re.findall(MODIFIER, binding)
|
|
|
|
if modifiers:
|
|
|
|
for modifier in modifiers:
|
|
|
|
mask |= self._lookup_modifier(modifier)
|
|
|
|
key = re.sub(MODIFIER, '', binding)
|
|
|
|
if key == '':
|
|
|
|
raise KeymapError('No key found')
|
|
|
|
keyval = gtk.gdk.keyval_from_name(key)
|
|
|
|
if keyval == 0:
|
|
|
|
raise KeymapError("Key '%s' is unrecognised" % key)
|
|
|
|
return (keyval, mask)
|
|
|
|
|
|
|
|
def _lookup_modifier(self, modifier):
|
|
|
|
"""Map modifier names to gtk values"""
|
|
|
|
try:
|
|
|
|
return self.modifiers[modifier.lower()]
|
|
|
|
except KeyError:
|
|
|
|
raise KeymapError("Unhandled modifier '<%s>'" % modifier)
|
2009-01-21 08:29:32 +00:00
|
|
|
|
2009-10-14 12:05:07 +00:00
|
|
|
def lookup(self, event):
|
|
|
|
"""Translate a keyboard event into a mapped key"""
|
2008-08-23 22:57:51 +00:00
|
|
|
try:
|
2010-01-22 19:00:53 +00:00
|
|
|
keyval, _egp, _lvl, consumed = self.keymap.translate_keyboard_state(
|
|
|
|
event.hardware_keycode,
|
|
|
|
event.state & ~gtk.gdk.LOCK_MASK,
|
|
|
|
event.group)
|
2009-10-14 12:05:07 +00:00
|
|
|
except TypeError:
|
|
|
|
err ("keybindings.lookup failed to translate keyboard event: %s" %
|
|
|
|
dir(event))
|
|
|
|
return None
|
|
|
|
mask = (event.state & ~consumed) & self._masks
|
|
|
|
return self._lookup.get(mask, self.empty).get(keyval, None)
|
2008-08-11 14:30:51 +00:00
|
|
|
|