/usr/lib/gedit/plugins/latex/completion.py is in gedit-latex-plugin 3.20.0-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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | # -*- coding: utf-8 -*-
# This file is part of the Gedit LaTeX Plugin
#
# Copyright (C) 2010 Michael Zeising
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public Licence as published by the Free Software
# Foundation; either version 2 of the Licence, 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 Licence for more
# details.
#
# You should have received a copy of the GNU General Public Licence along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
base.completion
"""
from logging import getLogger
from gi.repository import GObject, Gtk, Gdk, GdkPixbuf
from .preferences import Preferences
class ICompletionHandler(object):
"""
This should be implemented for each language or 'proposal source'
"""
@property
def trigger_keys(self):
"""
@return: a list of gdk key codes that trigger completion
"""
raise NotImplementedError
@property
def prefix_delimiters(self):
"""
@return: a list of characters that delimit the prefix on the left
"""
raise NotImplementedError
def complete(self, prefix):
"""
@return: a list of objects extending Proposal
"""
raise NotImplementedError
class Proposal(object):
"""
A proposal for completion
"""
@property
def source(self):
"""
@return: a subclass of Source to be inserted on activation
"""
raise NotImplementedError
@property
def label(self):
"""
@return: a string (may be pango markup) to be shown in proposals popup
"""
raise NotImplementedError
@property
def details(self):
"""
@return: a widget to be shown in details popup
"""
raise NotImplementedError
@property
def icon(self):
"""
@return: an instance of GdkPixbuf.Pixbuf
"""
raise NotImplementedError
@property
def overlap(self):
"""
@return: the number of overlapping characters from the beginning of the
proposal and the prefix it was generated for
"""
raise NotImplementedError
def __key__(self):
return self.label.lower()
def __lt__(self, other):
return self.__key__() < other.__key__()
def __eq__(self, other):
return self.__key__() == other.__key__()
def __hash__(self):
return hash(self.__key__())
class ProposalPopup(Gtk.Window):
"""
Popup showing a list of proposals. This is implemented as a singleton
as it doesn't make sense to have multiple popups around.
"""
_log = getLogger("ProposalPopup")
_POPUP_WIDTH = 300
_POPUP_HEIGHT = 200
_SPACE = 0
def __new__(cls):
if not '_instance' in cls.__dict__:
cls._instance = Gtk.Window.__new__(cls)
return cls._instance
def __init__(self):
if not '_ready' in dir(self):
Gtk.Window.__init__(self, type=Gtk.WindowType.POPUP)
#self, Gtk.WindowType.POPUP)
self._store = Gtk.ListStore(str, object, GdkPixbuf.Pixbuf) # markup, Proposal instance
self._view = Gtk.TreeView(model=self._store)
# pack the icon and text cells in one column to avoid the column separator
column = Gtk.TreeViewColumn()
pixbuf_renderer = Gtk.CellRendererPixbuf()
column.pack_start(pixbuf_renderer, False)
column.add_attribute(pixbuf_renderer, "pixbuf", 2)
text_renderer = Gtk.CellRendererText()
column.pack_start(text_renderer, True)
column.add_attribute(text_renderer, "markup", 0)
self._view.append_column(column)
# self._view.insert_column_with_attributes(-1, "", Gtk.CellRendererPixbuf(), pixbuf=2)
# self._view.insert_column_with_attributes(-1, "", Gtk.CellRendererText(), markup=0)
self._view.set_enable_search(False)
self._view.set_headers_visible(False)
scr = Gtk.ScrolledWindow()
scr.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC)
scr.add(self._view)
scr.set_size_request(self._POPUP_WIDTH, self._POPUP_HEIGHT)
frame = Gtk.Frame()
frame.set_shadow_type(Gtk.ShadowType.OUT)
frame.add(scr)
self.add(frame)
self._details_popup = DetailsPopup()
self._ready = True
@property
def selected_proposal(self):
"""
Returns the currently selected proposal
"""
store, it = self._view.get_selection().get_selected()
return store.get_value(it, 1)
def activate(self, proposals, text_view):
"""
Load proposals, move to the cursor position and show
"""
self._set_proposals(proposals)
self._move_to_cursor(text_view)
self.show_all()
self._update_details_popup()
def deactivate(self):
"""
Hide this popup and the DetailsPopup
"""
self._details_popup.deactivate()
self.hide()
def _set_proposals(self, proposals):
"""
Loads proposals into the popup
"""
# sort
proposals.sort()
# load
self._store.clear()
for proposal in proposals:
self._store.append([proposal.label, proposal, proposal.icon])
self._view.set_cursor(Gtk.TreePath.new_from_string("0"), None, False)
def navigate(self, key):
"""
Moves the selection in the view according to key
"""
if key == "Up":
d = -1
elif key == "Down":
d = 1
elif key == "Page_Up":
d = -5
elif key == "Page_Down":
d = 5
else:
return
path,column = self._view.get_cursor()
index = int(path.to_string())
max = self._store.iter_n_children(None)
index += d
if index < 0:
index = 0
elif index >= max:
index = max - 1
self._view.set_cursor(
Gtk.TreePath.new_from_string("%d" % index),
column,
False)
self._update_details_popup()
def _get_cursor_pos(self, text_view):
"""
Retrieve the current absolute position of the cursor in a TextView
"""
buffer = text_view.get_buffer()
location = text_view.get_iter_location(buffer.get_iter_at_mark(buffer.get_insert()))
winX, winY = text_view.buffer_to_window_coords(Gtk.TextWindowType.WIDGET, location.x, location.y)
win = text_view.get_window(Gtk.TextWindowType.WIDGET)
ignore, xx, yy = win.get_origin()
x = winX + xx
y = winY + yy + location.height + self._SPACE
return (x, y)
def _update_details_popup(self):
"""
Move and show the DetailsPopup if the currently selected proposal
contains details.
"""
try:
path,column = self._view.get_cursor()
index = int(path.to_string())
proposal = self._store[index][1]
# self._log.debug("proposal.details: " + str(proposal.details))
if proposal.details is None:
self._details_popup.hide()
return
# move
x, y = self.get_position()
width = self.get_size()[0]
path, column = self._view.get_cursor()
rect = self._view.get_cell_area(path, column)
self._details_popup.move(x + width + 2, y + rect.y)
# activate
self._details_popup.activate(proposal.details)
except Exception as e:
self._log.error(e)
def _move_to_cursor(self, text_view):
"""
Move the popup to the current location of the cursor
"""
sw = Gdk.Screen.width()
sh = Gdk.Screen.height()
x, y = self._get_cursor_pos(text_view)
w, h = self.get_size()
if x + w > sw:
x = sw - w - 4
if y + h > sh:
# get the height of a character
layout = text_view.create_pango_layout("a")
ytext = layout.get_pixel_size()[1]
y = y - ytext - h
self.move(x, y)
class DetailsPopup(Gtk.Window):
"""
A popup showing additional information at the right of the currently
selected proposal in the ProposalPopup.
This is used to display details of a BibTeX entry or the result of
a template.
"""
def __init__(self):
Gtk.Window.__init__(self, type=Gtk.WindowType.POPUP)
self._color = Preferences().get("light-foreground-color")
self._label = Gtk.Label()
self._label.set_use_markup(True)
self._label.set_alignment(0, .5)
self._frame = Gtk.Frame()
self._frame.set_shadow_type(Gtk.ShadowType.OUT)
#self._frame.set_border_width(3)
self._frame.add(self._label)
self.add(self._frame)
def activate(self, details):
"""
Create widget(s) for the given details and show the popup
"""
# remove the old child widget if present
child = self._frame.get_child()
if child:
self._frame.remove(child)
child.destroy()
# create a child widget depending on the type of details
if type(details) is list:
# table data
table = Gtk.Table()
table.set_border_width(5)
table.set_col_spacings(5)
rc = 0
for row in details:
cc = 0
for column in row:
if cc == 0:
# first column
label = Gtk.Label("<span color='%s'>%s</span>" % (self._color, column))
else:
label = Gtk.Label(label=column)
label.set_use_markup(True)
if cc == 0:
# 1st column is right aligned
label.set_alignment(1.0, 0.5)
else:
# others are left aligned
label.set_alignment(0.0, 0.5)
table.attach(label, cc, cc + 1, rc, rc + 1)
cc += 1
rc += 1
self._frame.add(table)
else:
# markup text
label = Gtk.Label(label=details)
label.set_use_markup(True)
self._frame.add(label)
self.show_all()
# force a recompute of the window size
self.resize(1, 1)
def deactivate(self):
"""
Hide the popup
"""
self.hide()
class CompletionDistributor(object):
"""
This forms the lower end of the completion mechanism and hosts one
or more CompletionHandlers
"""
# TODO: clearify and simplify states here!
# TODO: auto-close (maybe...)
_log = getLogger("CompletionDistributor")
_MAX_PREFIX_LENGTH = 100
# completion delay in ms
_DELAY = 500
_STATE_IDLE, _STATE_CTRL_PRESSED, _STATE_ACTIVE = 0, 1, 2
# keys that abort completion
_ABORT_KEYS = ["Escape", "Left", "Right", "Home", "End", "space", "Tab"]
# keys that are used to navigate in the popup
_NAVIGATION_KEYS = ["Up", "Down", "Page_Up", "Page_Down"]
# some characters have key constants that differ from their value
_SPECIAL_KEYS = {"@": "at"}
def __init__(self, editor, handlers):
"""
@param editor: the instance of Editor this CompletionDistributor should observe
@param handlers: a list of ICompletionHandler instances
"""
self._log.debug("init")
self._handlers = handlers # we already get objects
self._editor = editor
self._text_buffer = editor.tab_decorator.tab.get_document()
self._text_view = editor.tab_decorator.tab.get_view()
self._state = self._STATE_IDLE
self._timer = None
# collect trigger keys from all handlers
self._trigger_keys = []
for handler in self._handlers:
for key in handler.trigger_keys:
if key in list(self._SPECIAL_KEYS.keys()):
self._trigger_keys.append(self._SPECIAL_KEYS[key])
else:
self._trigger_keys.append(key)
# TODO: is it right to instatiate this here?
self._popup = ProposalPopup()
# connect to signals
self._signal_handlers = [
self._text_view.connect("key-press-event", self._on_key_pressed),
self._text_view.connect_after("key-release-event", self._on_key_released),
self._text_view.connect("button-press-event", self._on_button_pressed),
self._text_view.connect("focus-out-event", self._on_focus_out)
]
def _on_key_pressed(self, view, event):
"""
"""
key = Gdk.keyval_name(event.keyval)
if self._state == self._STATE_IDLE:
if key == "Control_L" or key == "Control_R":
self._state = self._STATE_CTRL_PRESSED
elif key in self._trigger_keys:
self._start_timer()
return False
elif self._state == self._STATE_ACTIVE:
if key == "Return":
# select proposal
self._abort()
proposal = self._popup.selected_proposal
self._select_proposal(proposal)
# TODO: self._autoClose(proposalSelected=True)
# returning True stops the signal
return True
elif key in self._ABORT_KEYS:
self._abort()
elif key in self._NAVIGATION_KEYS:
self._popup.navigate(key)
# returning True stops the signal
return True
elif self._state == self._STATE_CTRL_PRESSED:
if key == "space":
self._state = self._STATE_IDLE
self._complete()
return True
elif key != "Control_L" and key != "Control_R":
self._state = self._STATE_IDLE
self._stop_timer()
def _on_key_released(self, view, event):
"""
"""
key = Gdk.keyval_name(event.keyval)
# # trigger auto close on "}"
# if key == "braceright":
# # TODO: self._autoClose(braceTyped=True)
# pass
if self._state == self._STATE_ACTIVE:
if key in self._NAVIGATION_KEYS or key in ["Control_L", "Control_R", "space"]:
# returning True stops the signal
return True
else:
# user is typing on with active popup...
# TODO: we should check here if the cursor has moved
# or better if the buffer has changed
self._complete()
def _on_button_pressed(self, view, event):
self._abort()
def _on_focus_out(self, view, event):
self._abort()
def _start_timer(self):
"""
Start a timer for completion
"""
# stop eventually running timer
self._stop_timer()
# start timer
self._timer = GObject.timeout_add(self._DELAY, self._timer_callback)
def _stop_timer(self):
"""
Stop the timer if it has been started
"""
if self._timer is not None:
GObject.source_remove(self._timer)
self._timer = None
def _timer_callback(self):
"""
Timeout
"""
self._complete()
return False # do not call again
def _complete(self):
all_proposals = []
for handler in self._handlers:
delimiters = handler.prefix_delimiters
prefix = self._find_prefix(delimiters)
if prefix:
# if handler.strip_delimiter:
# prefix = prefix[1:]
proposals = handler.complete(prefix)
assert type(proposals) is list
all_proposals.extend(proposals)
if len(all_proposals):
self._popup.activate(all_proposals, self._text_view)
self._state = self._STATE_ACTIVE
else:
self._abort()
def _find_prefix(self, delimiters):
"""
Find the start of the surrounding command and return the text
from there to the cursor position.
This is the prefix forming the basis for LaTeX completion.
"""
it_right = self._text_buffer.get_iter_at_mark(self._text_buffer.get_insert())
it_left = it_right.copy()
# go back by one character (insert iter points to the char at the right of
# the cursor!)
if not it_left.backward_char():
self._log.debug("_find_prefix: start of buffer reached")
return None
# move left until 'the left-most of a sequence of delimiters'
#
# e.g. if 'x' is a delimiter and 'abcxxx' is at left of the cursor, we
# recognize 'xxx' as the prefix instead of only 'x'
delim_found = False
delim_char = None
i = 0
while i < self._MAX_PREFIX_LENGTH:
c = it_left.get_char()
if delim_found:
if c != delim_char:
# a delimiter has been found and the preceding character
# is different from it
break
else:
if c in delimiters:
# a delimiter has been found
delim_found = True
delim_char = c
if not it_left.backward_char():
self._log.debug("_find_prefix: start of buffer reached")
return None
i += 1
# to recognize the left-most delimiter, we have moved one char
# too much
it_left.forward_char()
if i == self._MAX_PREFIX_LENGTH:
self._log.debug("_find_prefix: prefix too long")
return None
prefix = self._text_buffer.get_text(it_left, it_right, False)
return prefix
def _select_proposal(self, proposal):
"""
Insert the source contained in the activated proposal
"""
self._editor.delete_at_cursor(- proposal.overlap)
self._editor.insert(proposal.source)
def _abort(self):
"""
Abort completion
"""
if self._state == self._STATE_ACTIVE:
self._popup.deactivate()
self._state = self._STATE_IDLE
def destroy(self):
# unreference the editor (very important! cyclic reference)
del self._editor
# disconnect text view events
for handler in self._signal_handlers:
self._text_view.disconnect(handler)
def __del__(self):
self._log.debug("Properly destroyed %s" % self)
# ex:ts=4:et:
|