Start making keybindings work in Terminal(). They don't work yet
This commit is contained in:
parent
fdcd1c89f9
commit
cd1d858d3c
|
@ -24,7 +24,7 @@ keyboard shortcuts.
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import gtk
|
import gtk
|
||||||
from terminatorlib.config import err
|
from util import err
|
||||||
|
|
||||||
class KeymapError(Exception):
|
class KeymapError(Exception):
|
||||||
"""Custom exception for errors in keybinding configurations"""
|
"""Custom exception for errors in keybinding configurations"""
|
||||||
|
@ -37,7 +37,7 @@ class KeymapError(Exception):
|
||||||
return "Keybinding '%s' invalid: %s" % (self.action, self.value)
|
return "Keybinding '%s' invalid: %s" % (self.action, self.value)
|
||||||
|
|
||||||
MODIFIER = re.compile('<([^<]+)>')
|
MODIFIER = re.compile('<([^<]+)>')
|
||||||
class TerminatorKeybindings:
|
class Keybindings:
|
||||||
"""Class to handle loading and lookup of Terminator keybindings"""
|
"""Class to handle loading and lookup of Terminator keybindings"""
|
||||||
|
|
||||||
modifiers = {
|
modifiers = {
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
"""terminator.py - class for the master Terminator singleton"""
|
"""terminator.py - class for the master Terminator singleton"""
|
||||||
|
|
||||||
from borg import Borg
|
from borg import Borg
|
||||||
|
from config import Config
|
||||||
|
from keybindings import Keybindings
|
||||||
|
|
||||||
class Terminator(Borg):
|
class Terminator(Borg):
|
||||||
"""master object for the application"""
|
"""master object for the application"""
|
||||||
|
@ -13,6 +15,7 @@ class Terminator(Borg):
|
||||||
terminals = None
|
terminals = None
|
||||||
groups = None
|
groups = None
|
||||||
config = None
|
config = None
|
||||||
|
keybindings = None
|
||||||
|
|
||||||
splittogroup = None
|
splittogroup = None
|
||||||
autocleangroups = None
|
autocleangroups = None
|
||||||
|
@ -38,6 +41,11 @@ class Terminator(Borg):
|
||||||
self.splittogroup = False
|
self.splittogroup = False
|
||||||
if not self.autocleangroups:
|
if not self.autocleangroups:
|
||||||
self.autocleangroups = True
|
self.autocleangroups = True
|
||||||
|
if not self.config:
|
||||||
|
self.config = Config()
|
||||||
|
if not self.keybindings:
|
||||||
|
self.keybindings = Keybindings()
|
||||||
|
self.keybindings.configure(self.config['keybindings'])
|
||||||
|
|
||||||
def register_terminal(self, terminal):
|
def register_terminal(self, terminal):
|
||||||
"""Register a new terminal widget"""
|
"""Register a new terminal widget"""
|
||||||
|
|
|
@ -376,6 +376,7 @@ class Terminal(gtk.VBox):
|
||||||
|
|
||||||
def create_group(self, item):
|
def create_group(self, item):
|
||||||
"""Create a new group"""
|
"""Create a new group"""
|
||||||
|
#FIXME: Make this work
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def set_groupsend(self, widget, value):
|
def set_groupsend(self, widget, value):
|
||||||
|
@ -395,6 +396,7 @@ class Terminal(gtk.VBox):
|
||||||
|
|
||||||
def reconfigure(self, widget=None):
|
def reconfigure(self, widget=None):
|
||||||
"""Reconfigure our settings"""
|
"""Reconfigure our settings"""
|
||||||
|
# FIXME: actually reconfigure our settings
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_window_title(self):
|
def get_window_title(self):
|
||||||
|
@ -409,7 +411,39 @@ class Terminal(gtk.VBox):
|
||||||
|
|
||||||
def on_keypress(self, widget, event):
|
def on_keypress(self, widget, event):
|
||||||
"""Handler for keyboard events"""
|
"""Handler for keyboard events"""
|
||||||
pass
|
if not event:
|
||||||
|
dbg('Terminal::on_keypress: Called on %s with no event' % widget)
|
||||||
|
return(False)
|
||||||
|
|
||||||
|
# FIXME: Does keybindings really want to live in Terminator()?
|
||||||
|
mapping = self.terminator.keybindings.lookup(event)
|
||||||
|
|
||||||
|
if mapping == "hide_window":
|
||||||
|
return(False)
|
||||||
|
|
||||||
|
if mapping and mapping not in ['close_window', 'full_screen']:
|
||||||
|
dbg('Terminal::on_keypress: lookup found: %r' % mapping)
|
||||||
|
# handle the case where user has re-bound copy to ctrl+<key>
|
||||||
|
# we only copy if there is a selection otherwise let it fall through
|
||||||
|
# to ^<key>
|
||||||
|
if (mapping == "copy" and event.state & gtk.gdk.CONTROL_MASK):
|
||||||
|
if self._vte.get_has_selection ():
|
||||||
|
getattr(self, "key_" + mapping)()
|
||||||
|
return(True)
|
||||||
|
else:
|
||||||
|
getattr(self, "key_" + mapping)()
|
||||||
|
return(True)
|
||||||
|
|
||||||
|
# FIXME: This is all clearly wrong. We should be doing this better
|
||||||
|
# FIXMS: maybe we can emit the key event and let Terminator() care?
|
||||||
|
if self.terminator.groupsend != 0 and self.vte.is_focus():
|
||||||
|
if self.group and self.terminator.groupsend == 1:
|
||||||
|
self.terminator.group_emit(self, self.group, 'key-press-event',
|
||||||
|
event)
|
||||||
|
if self.terminator.groupsend == 2:
|
||||||
|
self.terminator.all_emit(self, 'key-press-event', event)
|
||||||
|
|
||||||
|
return(False)
|
||||||
|
|
||||||
def on_buttonpress(self, widget, event):
|
def on_buttonpress(self, widget, event):
|
||||||
"""Handler for mouse events"""
|
"""Handler for mouse events"""
|
||||||
|
@ -460,23 +494,29 @@ class Terminal(gtk.VBox):
|
||||||
self.vte.set_encoding(encoding)
|
self.vte.set_encoding(encoding)
|
||||||
|
|
||||||
def on_drag_begin(self, widget, drag_context, data):
|
def on_drag_begin(self, widget, drag_context, data):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_drag_data_get(self, widget, drag_context, selection_data, info, time,
|
def on_drag_data_get(self, widget, drag_context, selection_data, info, time,
|
||||||
data):
|
data):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_drag_motion(self, widget, drag_context, x, y, time, data):
|
def on_drag_motion(self, widget, drag_context, x, y, time, data):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_drag_data_received(self, widget, drag_context, x, y, selection_data,
|
def on_drag_data_received(self, widget, drag_context, x, y, selection_data,
|
||||||
info, time, data):
|
info, time, data):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_vte_focus(self, widget):
|
def on_vte_focus(self, widget):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_vte_focus_out(self, widget, event):
|
def on_vte_focus_out(self, widget, event):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_vte_focus_in(self, widget, event):
|
def on_vte_focus_in(self, widget, event):
|
||||||
|
@ -488,6 +528,7 @@ class Terminal(gtk.VBox):
|
||||||
self.vte.grab_focus()
|
self.vte.grab_focus()
|
||||||
|
|
||||||
def on_resize_window(self):
|
def on_resize_window(self):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_vte_size_allocate(self, widget, allocation):
|
def on_vte_size_allocate(self, widget, allocation):
|
||||||
|
@ -496,6 +537,7 @@ class Terminal(gtk.VBox):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_vte_notify_enter(self, term, event):
|
def on_vte_notify_enter(self, term, event):
|
||||||
|
# FIXME: Implement this
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def hide_titlebar(self):
|
def hide_titlebar(self):
|
||||||
|
|
Loading…
Reference in New Issue