Allow ctrl-click to open URLs. Patch from Emilio Pozuelo Monfort in LP bug #211079

This commit is contained in:
Chris Jones 2008-05-16 13:26:45 +01:00
parent 7b730da177
commit 0d6c018d93
1 changed files with 13 additions and 0 deletions

View File

@ -345,6 +345,19 @@ class TerminatorTerm:
self.reconfigure_vte ()
def on_vte_button_press (self, term, event):
# Left mouse button + Ctrl while over a link should open it
mask = gtk.gdk.CONTROL_MASK
if (event.state & mask) == mask:
if event.button == 1:
url = self._vte.match_check (int (event.x / self._vte.get_char_width ()), int (event.y / self._vte.get_char_height ()))
if url:
if (url[0][0:7] != "mailto:") & (url[1] == self.matches['email']):
address = "mailto:" + url[0]
else:
address = url[0]
openurl ( address )
return False
# Left mouse button should transfer focus to this vte widget
if event.button == 1:
self._vte.grab_focus ()