Use gconf to track mouse focus behaviour. Also rate limit gconf reconfigures, to prevent going crazy
This commit is contained in:
parent
e28facf391
commit
0e545a3b26
22
termiator.py
22
termiator.py
|
@ -6,11 +6,14 @@ import vte
|
||||||
import gconf
|
import gconf
|
||||||
import pango
|
import pango
|
||||||
import gnome
|
import gnome
|
||||||
|
import time
|
||||||
|
|
||||||
class TerminatorTerm:
|
class TerminatorTerm:
|
||||||
|
lastreconfigure = 0
|
||||||
|
|
||||||
# Our settings
|
# Our settings
|
||||||
|
# FIXME: Add commandline and/or gconf options to change these
|
||||||
defaults = {
|
defaults = {
|
||||||
# FIXME: How do we get a list of profile keys to be dynamic about this?
|
|
||||||
'profile_dir' : '/apps/gnome-terminal/profiles/',
|
'profile_dir' : '/apps/gnome-terminal/profiles/',
|
||||||
'profile' : 'Default',
|
'profile' : 'Default',
|
||||||
'allow_bold' : True,
|
'allow_bold' : True,
|
||||||
|
@ -26,6 +29,7 @@ class TerminatorTerm:
|
||||||
'scroll_on_keystroke' : False,
|
'scroll_on_keystroke' : False,
|
||||||
'scroll_on_output' : False,
|
'scroll_on_output' : False,
|
||||||
'scrollback_lines' : 100,
|
'scrollback_lines' : 100,
|
||||||
|
'focus' : 'sloppy',
|
||||||
'visible_bell' : False,
|
'visible_bell' : False,
|
||||||
'child_restart' : True,
|
'child_restart' : True,
|
||||||
'link_scheme' : '(news|telnet|nttp|file|http|ftp|https)',
|
'link_scheme' : '(news|telnet|nttp|file|http|ftp|https)',
|
||||||
|
@ -47,6 +51,7 @@ class TerminatorTerm:
|
||||||
|
|
||||||
self.gconf_client = gconf.client_get_default ()
|
self.gconf_client = gconf.client_get_default ()
|
||||||
self.gconf_client.add_dir (self.profile, gconf.CLIENT_PRELOAD_RECURSIVE)
|
self.gconf_client.add_dir (self.profile, gconf.CLIENT_PRELOAD_RECURSIVE)
|
||||||
|
self.gconf_client.add_dir ('/apps/metacity/general', gconf.CLIENT_PRELOAD_RECURSIVE)
|
||||||
|
|
||||||
self.clipboard = gtk.clipboard_get(gtk.gdk.SELECTION_CLIPBOARD)
|
self.clipboard = gtk.clipboard_get(gtk.gdk.SELECTION_CLIPBOARD)
|
||||||
|
|
||||||
|
@ -63,15 +68,13 @@ class TerminatorTerm:
|
||||||
self._box.pack_start (self._scrollbar, False)
|
self._box.pack_start (self._scrollbar, False)
|
||||||
|
|
||||||
self.gconf_client.notify_add (self.profile, self.on_gconf_notification)
|
self.gconf_client.notify_add (self.profile, self.on_gconf_notification)
|
||||||
# FIXME: Register a handler for click/sloppy focus changes
|
self.gconf_client.notify_add ('/apps/metacity/general/focus_mode', self.on_gconf_notification)
|
||||||
# self.gconf_client_notify_add ('/apps/metacity/general/focus_mode', self.on_sloppy_notification)
|
|
||||||
|
|
||||||
self._vte.connect ("button-press-event", self.on_vte_button_press)
|
self._vte.connect ("button-press-event", self.on_vte_button_press)
|
||||||
self._vte.connect ("popup-menu", self.on_vte_popup_menu)
|
self._vte.connect ("popup-menu", self.on_vte_popup_menu)
|
||||||
if self.defaults['child_restart']:
|
if self.defaults['child_restart']:
|
||||||
self._vte.connect ("child-exited", lambda term: self.term.fork_command ())
|
self._vte.connect ("child-exited", lambda term: self.term.fork_command ())
|
||||||
|
|
||||||
if (self.term.focus == "sloppy" or self.term.focus == "mouse"):
|
|
||||||
self._vte.add_events (gtk.gdk.ENTER_NOTIFY_MASK)
|
self._vte.add_events (gtk.gdk.ENTER_NOTIFY_MASK)
|
||||||
self._vte.connect ("enter_notify_event", self.on_vte_notify_enter)
|
self._vte.connect ("enter_notify_event", self.on_vte_notify_enter)
|
||||||
|
|
||||||
|
@ -81,6 +84,11 @@ class TerminatorTerm:
|
||||||
self._vte.fork_command ()
|
self._vte.fork_command ()
|
||||||
|
|
||||||
def reconfigure_vte (self):
|
def reconfigure_vte (self):
|
||||||
|
if ((self.lastreconfigure != 0) and (time.time () - self.lastreconfigure) < 5):
|
||||||
|
# Rate limit
|
||||||
|
return
|
||||||
|
self.lastreconfigure = time.time ()
|
||||||
|
|
||||||
# Set our emulation
|
# Set our emulation
|
||||||
self._vte.set_emulation (self.defaults['emulation'])
|
self._vte.set_emulation (self.defaults['emulation'])
|
||||||
|
|
||||||
|
@ -116,6 +124,9 @@ class TerminatorTerm:
|
||||||
self._vte.set_scroll_on_keystroke (self.gconf_client.get_bool (self.profile + "/scroll_on_keystroke") or self.defaults['scroll_on_keystroke'])
|
self._vte.set_scroll_on_keystroke (self.gconf_client.get_bool (self.profile + "/scroll_on_keystroke") or self.defaults['scroll_on_keystroke'])
|
||||||
self._vte.set_scroll_on_output (self.gconf_client.get_bool (self.profile + "/scroll_on_output") or self.defaults['scroll_on_output'])
|
self._vte.set_scroll_on_output (self.gconf_client.get_bool (self.profile + "/scroll_on_output") or self.defaults['scroll_on_output'])
|
||||||
|
|
||||||
|
# Set our sloppiness
|
||||||
|
self.focus = self.gconf_client.get_string ("/apps/metacity/general/focus_mode") or self.defaults['focus']
|
||||||
|
|
||||||
def on_gconf_notification (self, client, cnxn_id, entry, what):
|
def on_gconf_notification (self, client, cnxn_id, entry, what):
|
||||||
self.reconfigure_vte ()
|
self.reconfigure_vte ()
|
||||||
|
|
||||||
|
@ -131,6 +142,7 @@ class TerminatorTerm:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def on_vte_notify_enter (self, term, event):
|
def on_vte_notify_enter (self, term, event):
|
||||||
|
if (self.focus == "sloppy" or self.focus == "mouse"):
|
||||||
term.grab_focus ()
|
term.grab_focus ()
|
||||||
# FIXME: Should we eat this event or let it propagate further?
|
# FIXME: Should we eat this event or let it propagate further?
|
||||||
return False
|
return False
|
||||||
|
@ -197,8 +209,6 @@ class Terminator:
|
||||||
self.window.connect ("delete_event", self.on_delete_event)
|
self.window.connect ("delete_event", self.on_delete_event)
|
||||||
self.window.connect ("destroy", self.on_destroy_event)
|
self.window.connect ("destroy", self.on_destroy_event)
|
||||||
|
|
||||||
self.focus = self.gconf_client.get_string ("/apps/metacity/general/focus_mode")
|
|
||||||
|
|
||||||
def on_delete_event (self, widget, event, data=None):
|
def on_delete_event (self, widget, event, data=None):
|
||||||
dialog = gtk.Dialog ("Quit?", self.window, gtk.DIALOG_MODAL, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_QUIT, gtk.RESPONSE_ACCEPT))
|
dialog = gtk.Dialog ("Quit?", self.window, gtk.DIALOG_MODAL, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_QUIT, gtk.RESPONSE_ACCEPT))
|
||||||
label = gtk.Label("Do you really want to quit?")
|
label = gtk.Label("Do you really want to quit?")
|
||||||
|
|
Loading…
Reference in New Issue