/usr/lib/python2.7/dist-packages/guake/terminal.py is in guake 0.8.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | # -*- coding: utf-8; -*-
"""
Copyright (C) 2007-2012 Lincoln de Sousa <lincoln@minaslivre.org>
Copyright (C) 2007 Gabriel Falcão <gabrielteratos@gmail.com>
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; either version 2 of the
License, or (at your option) any later version.
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
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import gconf
import gtk
import logging
import os
import pango
import re
import subprocess
import vte
from guake.common import clamp
from guake.globals import KEY
log = logging.getLogger(__name__)
__all__ = ["GuakeTerminalBox"]
# regular expressions to highlight links in terminal. This code was
# lovely stolen from the great gnome-terminal project, thank you =)
USERCHARS = "-[:alnum:]"
PASSCHARS = "-[:alnum:],?;.:/!%$^*&~\"#'"
HOSTCHARS = "-[:alnum:]"
HOST = "[" + HOSTCHARS + "]+(\\.[" + HOSTCHARS + "]+)*"
PORT = "(:[[:digit:]]{1,5})?"
PATHCHARS = "-[:alnum:]_$.+!*(),;:@&=?/~#%"
SCHEME = "(news:|telnet:|nntp:|file:/|https?:|ftps?:|webcal:)"
USER = "[" + USERCHARS + "]+(:[" + PASSCHARS + "]+)?"
URLPATH = "/[" + PATHCHARS + "]*[^]'.}>) \t\r\n,\\\"]"
TERMINAL_MATCH_EXPRS = [
r"\<" + SCHEME + "//(" + USER + r"@)?" + HOST + PORT + "(" + URLPATH + r")?\>/?",
r"\<(www|ftp)[" + HOSTCHARS + r"]*\." + HOST + PORT + "(" + URLPATH + r")?\>/?",
r"\<(mailto:)?[" + USERCHARS + "][" + USERCHARS + ".]*@[" + HOSTCHARS +
r"]+\." + HOST + r"\>"
]
TERMINAL_MATCH_TAGS = 'schema', 'http', 'email'
# tuple (title/quick matcher/filename and line number extractor)
QUICK_OPEN_MATCHERS = [
("Python traceback",
r"^\s\sFile\s\".*\",\sline\s[0-9]+",
r"^\s\sFile\s\"(.*)\",\sline\s([0-9]+)"),
("line starts by 'Filename:line' pattern (GCC/make). File path should exists.",
r"^[a-zA-Z0-9\/\_\-\.\ ]+\.?[a-zA-Z0-9]+\:[0-9]+",
r"^(.*)\:([0-9]+)")
]
class GuakeTerminal(vte.Terminal):
"""Just a vte.Terminal with some properties already set.
"""
def __init__(self):
super(GuakeTerminal, self).__init__()
self.configure_terminal()
self.add_matches()
self.connect('button-press-event', self.button_press)
self.matched_value = ''
self.font_scale_index = 0
self.pid = None
self.custom_bgcolor = None
self.custom_fgcolor = None
self.found_link = None
def get_pid(self):
return self.pid
def configure_terminal(self):
"""Sets all customized properties on the terminal
"""
client = gconf.client_get_default()
word_chars = client.get_string(KEY('/general/word_chars'))
if word_chars:
self.set_word_chars(word_chars)
self.set_audible_bell(client.get_bool(KEY('/general/use_audible_bell')))
self.set_visible_bell(client.get_bool(KEY('/general/use_visible_bell')))
self.set_sensitive(True)
self.set_flags(gtk.CAN_DEFAULT)
self.set_flags(gtk.CAN_FOCUS)
cursor_blink_mode = client.get_int(KEY('/style/cursor_blink_mode'))
client.set_int(KEY('/style/cursor_blink_mode'), cursor_blink_mode)
cursor_shape = client.get_int(KEY('/style/cursor_shape'))
client.set_int(KEY('/style/cursor_shape'), cursor_shape)
def add_matches(self):
"""Adds all regular expressions declared in
guake.globals.TERMINAL_MATCH_EXPRS to the terminal to make vte
highlight text that matches them.
"""
for expr in TERMINAL_MATCH_EXPRS:
tag = self.match_add(expr)
self.match_set_cursor_type(tag, gtk.gdk.HAND2)
for _useless, match, _otheruseless in QUICK_OPEN_MATCHERS:
tag = self.match_add(match)
self.match_set_cursor_type(tag, gtk.gdk.HAND2)
def get_current_directory(self):
directory = os.path.expanduser('~')
if self.pid is not None:
cwd = os.readlink("/proc/%d/cwd" % self.pid)
if os.path.exists(cwd):
directory = cwd
return directory
def button_press(self, terminal, event):
"""Handles the button press event in the terminal widget. If
any match string is caught, another application is open to
handle the matched resource uri.
"""
self.matched_value = ''
matched_string = self.match_check(
int(event.x / self.get_char_width()),
int(event.y / self.get_char_height()))
self.found_link = None
if (event.button == 1 and (event.get_state() & gtk.gdk.CONTROL_MASK) and matched_string):
log.debug("matched string: %s", matched_string)
value, tag = matched_string
# First searching in additional matchers
found_additional_matcher = False
client = gconf.client_get_default()
use_quick_open = client.get_bool(KEY("/general/quick_open_enable"))
quick_open_in_current_terminal = client.get_bool(
KEY("/general/quick_open_in_current_terminal"))
cmdline = client.get_string(KEY("/general/quick_open_command_line"))
if use_quick_open:
for _useless, _otheruseless, extractor in QUICK_OPEN_MATCHERS:
g = re.compile(extractor).match(value)
if g and len(g.groups()) == 2:
filename = g.group(1).strip()
line_number = g.group(2)
filepath = filename
if not quick_open_in_current_terminal:
curdir = self.get_current_directory()
filepath = os.path.join(curdir, filename)
filepaths = [filepath]
tmp_filepath = filepath
# Also check files patterns that ends with one or 2 ':'
for _ in range(2):
if ':' not in tmp_filepath:
break
tmp_filepath = tmp_filepath.rpartition(':')[0]
filepaths.append(tmp_filepath)
log.debug("Testing existance of the following files: %r", filepaths)
for filepath in filepaths:
if os.path.exists(filepath):
break
else:
logging.info("Cannot open file %s, it doesn't exists locally"
"(current dir: %s)", filepath,
os.path.curdir)
log.debug("No file exist")
continue
# for quick_open_in_current_terminal, we run the command line directly in
# the tab so relative path is enough.
#
# We do not test for file existence, because it doesn't work in ssh
# sessions.
logging.debug("Opening file %s at line %s", filepath, line_number)
resolved_cmdline = cmdline % {"file_path": filepath,
"line_number": line_number}
logging.debug("Command line: %s", resolved_cmdline)
if quick_open_in_current_terminal:
logging.debug("Executing it in current tab")
if resolved_cmdline[-1] != '\n':
resolved_cmdline += '\n'
self.feed_child(resolved_cmdline)
else:
logging.debug("Executing it independently")
subprocess.call(resolved_cmdline, shell=True)
found_additional_matcher = True
break
if not found_additional_matcher:
self.found_link = self.handleTerminalMatch(matched_string)
if self.found_link:
self.browse_link_under_cursor()
elif event.button == 3 and matched_string:
self.found_link = self.handleTerminalMatch(matched_string)
self.matched_value = matched_string[0]
def handleTerminalMatch(self, matched_string):
value, tag = matched_string
log.debug("found tag: %r", tag)
log.debug("found item: %r", value)
log.debug("TERMINAL_MATCH_TAGS: %r", TERMINAL_MATCH_TAGS)
if tag in TERMINAL_MATCH_TAGS:
if TERMINAL_MATCH_TAGS[tag] == 'schema':
# value here should not be changed, it is right and
# ready to be used.
pass
elif TERMINAL_MATCH_TAGS[tag] == 'http':
value = 'http://%s' % value
elif TERMINAL_MATCH_TAGS[tag] == 'https':
value = 'https://%s' % value
elif TERMINAL_MATCH_TAGS[tag] == 'ftp':
value = 'ftp://%s' % value
elif TERMINAL_MATCH_TAGS[tag] == 'email':
value = 'mailto:%s' % value
if value:
return value
def browse_link_under_cursor(self):
if not self.found_link:
return
log.debug("Opening link: %s", self.found_link)
cmd = ["xdg-open", self.found_link]
subprocess.Popen(cmd, shell=False)
def set_font(self, font):
self.font = font
self.set_font_scale_index(0)
def set_font_scale_index(self, scale_index):
self.font_scale_index = clamp(scale_index, -6, 12)
font = pango.FontDescription(self.font.to_string())
scale_factor = 2 ** (self.font_scale_index / 6)
new_size = int(scale_factor * font.get_size())
if font.get_size_is_absolute():
font.set_absolute_size(new_size)
else:
font.set_size(new_size)
super(GuakeTerminal, self).set_font(font)
font_scale = property(
fset=set_font_scale_index,
fget=lambda self: self.font_scale_index
)
def increase_font_size(self):
self.font_scale += 1
def decrease_font_size(self):
self.font_scale -= 1
class GuakeTerminalBox(gtk.HBox):
"""A box to group the terminal and a scrollbar.
"""
def __init__(self):
super(GuakeTerminalBox, self).__init__()
self.terminal = GuakeTerminal()
self.add_terminal()
self.add_scroll_bar()
def add_terminal(self):
"""Packs the terminal widget.
"""
self.pack_start(self.terminal, True, True)
self.terminal.show()
def add_scroll_bar(self):
"""Packs the scrollbar.
"""
adj = self.terminal.get_adjustment()
scroll = gtk.VScrollbar(adj)
scroll.set_no_show_all(True)
self.pack_start(scroll, False, False)
|