/usr/lib/python2.7/dist-packages/autokey/configmanager.py is in autokey-common 0.90.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 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 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 | # -*- coding: utf-8 -*-
# Copyright (C) 2011 Chris Dekter
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
import os, os.path, shutil, logging, pickle, glob, threading, subprocess
import iomediator, interface, common, monitor
try:
import json
l = json.load
except:
import simplejson as json
_logger = logging.getLogger("config-manager")
CONFIG_DIR = os.path.expanduser("~/.config/autokey")
CONFIG_FILE = os.path.join(CONFIG_DIR, "autokey.json")
CONFIG_DEFAULT_FOLDER = os.path.join(CONFIG_DIR, "data")
CONFIG_FILE_BACKUP = CONFIG_FILE + '~'
DEFAULT_ABBR_FOLDER = "Imported Abbreviations"
RECENT_ENTRIES_FOLDER = "Recently Typed"
IS_FIRST_RUN = "isFirstRun"
SERVICE_RUNNING = "serviceRunning"
MENU_TAKES_FOCUS = "menuTakesFocus"
SHOW_TRAY_ICON = "showTrayIcon"
SORT_BY_USAGE_COUNT = "sortByUsageCount"
#DETECT_UNWANTED_ABBR = "detectUnwanted"
PROMPT_TO_SAVE = "promptToSave"
#PREDICTIVE_LENGTH = "predictiveLength"
INPUT_SAVINGS = "inputSavings"
ENABLE_QT4_WORKAROUND = "enableQT4Workaround"
INTERFACE_TYPE = "interfaceType"
UNDO_USING_BACKSPACE = "undoUsingBackspace"
WINDOW_DEFAULT_SIZE = "windowDefaultSize"
HPANE_POSITION = "hPanePosition"
COLUMN_WIDTHS = "columnWidths"
SHOW_TOOLBAR = "showToolbar"
NOTIFICATION_ICON = "notificationIcon"
WORKAROUND_APP_REGEX = "workAroundApps"
SCRIPT_GLOBALS = "scriptGlobals"
# TODO - Future functionality
#TRACK_RECENT_ENTRY = "trackRecentEntry"
#RECENT_ENTRY_COUNT = "recentEntryCount"
#RECENT_ENTRY_MINLENGTH = "recentEntryMinLength"
#RECENT_ENTRY_SUGGEST = "recentEntrySuggest"
def get_config_manager(autoKeyApp, hadError=False):
if not os.path.exists(CONFIG_DEFAULT_FOLDER):
os.mkdir(CONFIG_DEFAULT_FOLDER)
try:
configManager = ConfigManager(autoKeyApp)
except Exception, e:
if hadError or not os.path.exists(CONFIG_FILE_BACKUP) or not os.path.exists(CONFIG_FILE):
_logger.error("Error while loading configuration. Cannot recover.")
raise
_logger.exception("Error while loading configuration. Backup has been restored.")
os.remove(CONFIG_FILE)
shutil.copy2(CONFIG_FILE_BACKUP, CONFIG_FILE)
return get_config_manager(autoKeyApp, True)
_logger.debug("Global settings: %r", ConfigManager.SETTINGS)
return configManager
def save_config(configManager):
_logger.info("Persisting configuration")
configManager.app.monitor.suspend()
# Back up configuration if it exists
if os.path.exists(CONFIG_FILE):
_logger.info("Backing up existing config file")
shutil.copy2(CONFIG_FILE, CONFIG_FILE_BACKUP)
try:
outFile = open(CONFIG_FILE, "w")
json.dump(configManager.get_serializable(), outFile, indent=4)
_logger.info("Finished persisting configuration - no errors")
except Exception, e:
if os.path.exists(CONFIG_FILE_BACKUP):
shutil.copy2(CONFIG_FILE_BACKUP, CONFIG_FILE)
_logger.exception("Error while saving configuration. Backup has been restored (if found).")
raise Exception("Error while saving configuration. Backup has been restored (if found).")
finally:
outFile.close()
configManager.app.monitor.unsuspend()
def apply_settings(settings):
"""
Allows new settings to be added without users having to lose all their configuration
"""
for key, value in settings.iteritems():
ConfigManager.SETTINGS[key] = value
def convert_v07_to_v08(configData):
oldVersion = configData["version"]
os.rename(CONFIG_FILE, CONFIG_FILE + oldVersion)
_logger.info("Converting v%s configuration data to v0.80.0", oldVersion)
for folderData in configData["folders"]:
_convertFolder(folderData, None)
configData["folders"] = []
configData["version"] = common.VERSION
configData["settings"][NOTIFICATION_ICON] = common.ICON_FILE_NOTIFICATION
# Remove old backup file so we never retry the conversion
if os.path.exists(CONFIG_FILE_BACKUP):
os.remove(CONFIG_FILE_BACKUP)
_logger.info("Conversion succeeded")
def _convertFolder(folderData, parent):
f = Folder("")
f.inject_json_data(folderData)
f.parent = parent
f.persist()
for subfolder in folderData["folders"]:
_convertFolder(subfolder, f)
for itemData in folderData["items"]:
i = None
if itemData["type"] == "script":
i = Script("", "")
i.code = itemData["code"]
elif itemData["type"] == "phrase":
i = Phrase("", "")
i.phrase = itemData["phrase"]
if i is not None:
i.inject_json_data(itemData)
i.parent = f
i.persist()
class ConfigManager:
"""
Contains all application configuration, and provides methods for updating and
maintaining consistency of the configuration.
"""
"""
Static member for global application settings.
"""
CLASS_VERSION = common.VERSION
SETTINGS = {
IS_FIRST_RUN : True,
SERVICE_RUNNING : True,
MENU_TAKES_FOCUS : False,
SHOW_TRAY_ICON : True,
SORT_BY_USAGE_COUNT : True,
#DETECT_UNWANTED_ABBR : False,
PROMPT_TO_SAVE: False,
#PREDICTIVE_LENGTH : 5,
ENABLE_QT4_WORKAROUND : False,
INTERFACE_TYPE : iomediator.X_RECORD_INTERFACE,
UNDO_USING_BACKSPACE : True,
WINDOW_DEFAULT_SIZE : (600, 400),
HPANE_POSITION : 150,
COLUMN_WIDTHS : [150, 50, 100],
SHOW_TOOLBAR : True,
NOTIFICATION_ICON : common.ICON_FILE_NOTIFICATION,
WORKAROUND_APP_REGEX : ".*VirtualBox.*|krdc.Krdc",
# TODO - Future functionality
#TRACK_RECENT_ENTRY : True,
#RECENT_ENTRY_COUNT : 5,
#RECENT_ENTRY_MINLENGTH : 10,
#RECENT_ENTRY_SUGGEST : True
SCRIPT_GLOBALS : {}
}
def __init__(self, app):
"""
Create initial default configuration
"""
self.VERSION = self.__class__.CLASS_VERSION
self.lock = threading.Lock()
self.app = app
self.folders = []
self.userCodeDir = None
self.configHotkey = GlobalHotkey()
self.configHotkey.set_hotkey(["<super>"], "k")
self.configHotkey.enabled = True
self.toggleServiceHotkey = GlobalHotkey()
self.toggleServiceHotkey.set_hotkey(["<super>", "<shift>"], "k")
self.toggleServiceHotkey.enabled = True
app.init_global_hotkeys(self)
self.load_global_config()
self.app.monitor.add_watch(CONFIG_DEFAULT_FOLDER)
self.app.monitor.add_watch(CONFIG_DIR)
if self.folders:
return
# --- Code below here only executed if no persisted config data provided
_logger.info("No configuration found - creating new one")
myPhrases = Folder(u"My Phrases")
myPhrases.set_hotkey(["<ctrl>"], "<f7>")
myPhrases.set_modes([TriggerMode.HOTKEY])
myPhrases.persist()
f = Folder(u"Addresses")
adr = Phrase(u"Home Address", u"22 Avenue Street\nBrisbane\nQLD\n4000")
adr.set_modes([TriggerMode.ABBREVIATION])
adr.add_abbreviation(u"adr")
f.add_item(adr)
myPhrases.add_folder(f)
f.persist()
adr.persist()
p = Phrase(u"First phrase", u"Test phrase number one!")
p.set_modes([TriggerMode.PREDICTIVE])
p.set_window_titles(".* - gedit")
myPhrases.add_item(p)
myPhrases.add_item(Phrase(u"Second phrase", u"Test phrase number two!"))
myPhrases.add_item(Phrase(u"Third phrase", u"Test phrase number three!"))
self.folders.append(myPhrases)
[p.persist() for p in myPhrases.items]
sampleScripts = Folder(u"Sample Scripts")
sampleScripts.persist()
dte = Script("Insert Date", "")
dte.code = """output = system.exec_command("date")
keyboard.send_keys(output)"""
sampleScripts.add_item(dte)
lMenu = Script("List Menu", "")
lMenu.code = """choices = ["something", "something else", "a third thing"]
retCode, choice = dialog.list_menu(choices)
if retCode == 0:
keyboard.send_keys("You chose " + choice)"""
sampleScripts.add_item(lMenu)
sel = Script("Selection Test", "")
sel.code = """text = clipboard.get_selection()
keyboard.send_key("<delete>")
keyboard.send_keys("The text %s was here previously" % text)"""
sampleScripts.add_item(sel)
abbrc = Script("Abbreviation from selection", "")
abbrc.code = """import time
time.sleep(0.25)
contents = clipboard.get_selection()
retCode, abbr = dialog.input_dialog("New Abbreviation", "Choose an abbreviation for the new phrase")
if retCode == 0:
if len(contents) > 20:
title = contents[0:17] + "..."
else:
title = contents
folder = engine.get_folder("My Phrases")
engine.create_abbreviation(folder, title, abbr, contents)"""
sampleScripts.add_item(abbrc)
phrasec = Script("Phrase from selection", "")
phrasec.code = """import time
time.sleep(0.25)
contents = clipboard.get_selection()
if len(contents) > 20:
title = contents[0:17] + "..."
else:
title = contents
folder = engine.get_folder("My Phrases")
engine.create_phrase(folder, title, contents)"""
sampleScripts.add_item(phrasec)
win = Script("Display window info", "")
win.code = """# Displays the information of the next window to be left-clicked
import time
mouse.wait_for_click(1)
time.sleep(0.2)
winTitle = window.get_active_title()
winClass = window.get_active_class()
dialog.info_dialog("Window information",
"Active window information:\\nTitle: '%s'\\nClass: '%s'" % (winTitle, winClass))"""
win.showInTrayMenu = True
sampleScripts.add_item(win)
self.folders.append(sampleScripts)
[s.persist() for s in sampleScripts.items]
# TODO - future functionality
self.recentEntries = []
self.config_altered(True)
def get_serializable(self):
extraFolders = []
for folder in self.folders:
if not folder.path.startswith(CONFIG_DEFAULT_FOLDER):
extraFolders.append(folder.path)
d = {
"version": self.VERSION,
"userCodeDir": self.userCodeDir,
"settings": ConfigManager.SETTINGS,
"folders": extraFolders,
"toggleServiceHotkey": self.toggleServiceHotkey.get_serializable(),
"configHotkey": self.configHotkey.get_serializable()
}
return d
def load_global_config(self):
if os.path.exists(CONFIG_FILE):
_logger.info("Loading config from existing file: " + CONFIG_FILE)
with open(CONFIG_FILE, 'r') as pFile:
data = json.load(pFile)
version = data["version"]
if version < "0.80.0":
try:
convert_v07_to_v08(data)
self.config_altered(True)
except Exception, e:
_logger.exception("Problem occurred during conversion.")
_logger.error("Existing config file has been saved as %s%s",
CONFIG_FILE, version)
raise
self.VERSION = data["version"]
self.userCodeDir = data["userCodeDir"]
apply_settings(data["settings"])
self.workAroundApps = re.compile(self.SETTINGS[WORKAROUND_APP_REGEX])
for entryPath in glob.glob(CONFIG_DEFAULT_FOLDER + "/*"):
if os.path.isdir(entryPath):
_logger.debug("Loading folder at '%s'", entryPath)
f = Folder("", path=entryPath)
f.load(None)
self.folders.append(f)
for folderPath in data["folders"]:
f = Folder("", path=folderPath)
f.load()
self.folders.append(f)
self.toggleServiceHotkey.load_from_serialized(data["toggleServiceHotkey"])
self.configHotkey.load_from_serialized(data["configHotkey"])
if self.VERSION < self.CLASS_VERSION:
self.upgrade()
self.config_altered(False)
_logger.info("Successfully loaded configuration")
def __checkExisting(self, path):
# Check if we already know about the path, and return object if found
for item in self.allItems:
if item.path == path:
return item
return None
def __checkExistingFolder(self, path):
for folder in self.allFolders:
if folder.path == path:
return folder
return None
def path_created_or_modified(self, path):
directory, baseName = os.path.split(path)
loaded = False
if path == CONFIG_FILE:
self.reload_global_config()
elif directory != CONFIG_DIR: # ignore all other changes in top dir
# --- handle directories added
if os.path.isdir(path):
f = Folder("", path=path)
if directory == CONFIG_DEFAULT_FOLDER:
self.folders.append(f)
f.load()
loaded = True
else:
folder = self.__checkExistingFolder(directory)
if folder is not None:
f.load(folder)
folder.add_folder(f)
loaded = True
# -- handle txt or py files added or modified
elif os.path.isfile(path):
i = self.__checkExisting(path)
isNew = False
if i is None:
isNew = True
if baseName.endswith(".txt"):
i = Phrase("", "", path=path)
elif baseName.endswith(".py"):
i = Script("", "", path=path)
if i is not None:
folder = self.__checkExistingFolder(directory)
if folder is not None:
i.load(folder)
if isNew: folder.add_item(i)
loaded = True
# --- handle changes to folder settings
if baseName == ".folder.json":
folder = self.__checkExistingFolder(directory)
if folder is not None:
folder.load_from_serialized()
loaded = True
# --- handle changes to item settings
if baseName.endswith(".json"):
for item in self.allItems:
if item.get_json_path() == path:
item.load_from_serialized()
loaded = True
if not loaded:
_logger.warn("No action taken for create/update event at %s", path)
else:
self.config_altered(False)
return loaded
def path_removed(self, path):
directory, baseName = os.path.split(path)
deleted = False
if directory == CONFIG_DIR: # ignore all deletions in top dir
return
folder = self.__checkExistingFolder(path)
item = self.__checkExisting(path)
if folder is not None:
if folder.parent is None:
self.folders.remove(folder)
else:
folder.parent.remove_folder(folder)
deleted = True
elif item is not None:
item.parent.remove_item(item)
#item.remove_data()
deleted = True
if not deleted:
_logger.warn("No action taken for delete event at %s", path)
else:
self.config_altered(False)
return deleted
def reload_global_config(self):
_logger.info("Reloading global configuration")
with open(CONFIG_FILE, 'r') as pFile:
data = json.load(pFile)
self.userCodeDir = data["userCodeDir"]
apply_settings(data["settings"])
self.workAroundApps = re.compile(self.SETTINGS[WORKAROUND_APP_REGEX])
existingPaths = []
for folder in self.folders:
if folder.parent is None and not folder.path.startswith(CONFIG_DEFAULT_FOLDER):
existingPaths.append(folder.path)
for folderPath in data["folders"]:
if folderPath not in existingPaths:
f = Folder("", path=folderPath)
f.load()
self.folders.append(f)
self.toggleServiceHotkey.load_from_serialized(data["toggleServiceHotkey"])
self.configHotkey.load_from_serialized(data["configHotkey"])
self.config_altered(False)
_logger.info("Successfully reloaded global configuration")
def upgrade(self):
_logger.info("Checking if upgrade is needed from version %s", self.VERSION)
# Always reset interface type when upgrading
self.SETTINGS[INTERFACE_TYPE] = iomediator.X_RECORD_INTERFACE
_logger.info("Resetting interface type, new type: %s", self.SETTINGS[INTERFACE_TYPE])
if self.VERSION < '0.70.0':
_logger.info("Doing upgrade to 0.70.0")
for item in self.allItems:
if isinstance(item, Phrase):
item.sendMode = SendMode.KEYBOARD
if self.VERSION < "0.82.3":
self.SETTINGS[WORKAROUND_APP_REGEX] += "|krdc.Krdc"
self.workAroundApps = re.compile(self.SETTINGS[WORKAROUND_APP_REGEX])
self.SETTINGS[SCRIPT_GLOBALS] = {}
self.VERSION = common.VERSION
self.config_altered(True)
def config_altered(self, persistGlobal):
"""
Called when some element of configuration has been altered, to update
the lists of phrases/folders.
@param persist: save the global configuration at the end of the process
"""
_logger.info("Configuration changed - rebuilding in-memory structures")
self.lock.acquire()
# Rebuild root folder list
#rootFolders = self.folders
#self.folders = []
#for folder in rootFolders:
# self.folders.append(folder)
self.hotKeyFolders = []
self.hotKeys = []
self.abbreviations = []
self.allFolders = []
self.allItems = []
for folder in self.folders:
if TriggerMode.HOTKEY in folder.modes:
self.hotKeyFolders.append(folder)
self.allFolders.append(folder)
if not self.app.monitor.has_watch(folder.path):
self.app.monitor.add_watch(folder.path)
self.__processFolder(folder)
self.globalHotkeys = []
self.globalHotkeys.append(self.configHotkey)
self.globalHotkeys.append(self.toggleServiceHotkey)
#_logger.debug("Global hotkeys: %s", self.globalHotkeys)
#_logger.debug("Hotkey folders: %s", self.hotKeyFolders)
#_logger.debug("Hotkey phrases: %s", self.hotKeys)
#_logger.debug("Abbreviation phrases: %s", self.abbreviations)
#_logger.debug("All folders: %s", self.allFolders)
#_logger.debug("All phrases: %s", self.allItems)
if persistGlobal:
save_config(self)
self.lock.release()
def __processFolder(self, parentFolder):
if not self.app.monitor.has_watch(parentFolder.path):
self.app.monitor.add_watch(parentFolder.path)
for folder in parentFolder.folders:
if TriggerMode.HOTKEY in folder.modes:
self.hotKeyFolders.append(folder)
self.allFolders.append(folder)
if not self.app.monitor.has_watch(folder.path):
self.app.monitor.add_watch(folder.path)
self.__processFolder(folder)
for item in parentFolder.items:
if TriggerMode.HOTKEY in item.modes:
self.hotKeys.append(item)
if TriggerMode.ABBREVIATION in item.modes:
self.abbreviations.append(item)
self.allItems.append(item)
# TODO Future functionality
def add_recent_entry(self, entry):
if not self.folders.has_key(RECENT_ENTRIES_FOLDER):
folder = Folder(RECENT_ENTRIES_FOLDER)
folder.set_hotkey(["<super>"], "<f7>")
folder.set_modes([TriggerMode.HOTKEY])
self.folders[RECENT_ENTRIES_FOLDER] = folder
self.recentEntries = []
folder = self.folders[RECENT_ENTRIES_FOLDER]
if not entry in self.recentEntries:
self.recentEntries.append(entry)
while len(self.recentEntries) > self.SETTINGS[RECENT_ENTRY_COUNT]:
self.recentEntries.pop(0)
folder.items = []
for theEntry in self.recentEntries:
if len(theEntry) > 17:
description = theEntry[:17] + "..."
else:
description = theEntry
p = Phrase(description, theEntry)
if self.SETTINGS[RECENT_ENTRY_SUGGEST]:
p.set_modes([TriggerMode.PREDICTIVE])
folder.add_item(p)
self.config_altered(False)
def check_abbreviation_unique(self, abbreviation, newFilterPattern, targetItem):
"""
Checks that the given abbreviation is not already in use.
@param abbreviation: the abbreviation to check
@param targetItem: the phrase for which the abbreviation to be used
"""
for item in self.allFolders:
if TriggerMode.ABBREVIATION in item.modes:
if abbreviation in item.abbreviations and item.filter_matches(newFilterPattern):
return item is targetItem, item
for item in self.allItems:
if TriggerMode.ABBREVIATION in item.modes:
if abbreviation in item.abbreviations and item.filter_matches(newFilterPattern):
return item is targetItem, item
return True, None
"""def check_abbreviation_substring(self, abbreviation, targetItem):
for item in self.allFolders:
if TriggerMode.ABBREVIATION in item.modes:
if abbreviation in item.abbreviation or item.abbreviation in abbreviation:
return item is targetItem, item.title
for item in self.allItems:
if TriggerMode.ABBREVIATION in item.modes:
if abbreviation in item.abbreviation or item.abbreviation in abbreviation:
return item is targetItem, item.description
return True, ""
def __checkSubstringAbbr(self, item1, item2, abbr):
# Check if the given abbreviation is a substring match for the given item
# If it is, check a few other rules to see if it matters
print "substring check %s against %s" % (item.abbreviation, abbr)
try:
index = item.abbreviation.index(abbr)
print index
if index == 0 and len(abbr) < len(item.abbreviation):
return item.immediate
elif (index + len(abbr)) == len(item.abbreviation):
return item.triggerInside
elif len(abbr) != len(item.abbreviation):
return item.triggerInside and item.immediate
else:
return False
except ValueError:
return False"""
def check_hotkey_unique(self, modifiers, hotKey, newFilterPattern, targetItem):
"""
Checks that the given hotkey is not already in use. Also checks the
special hotkeys configured from the advanced settings dialog.
@param modifiers: modifiers for the hotkey
@param hotKey: the hotkey to check
@param targetItem: the phrase for which the hotKey to be used
"""
for item in self.allFolders:
if TriggerMode.HOTKEY in item.modes:
if item.modifiers == modifiers and item.hotKey == hotKey and item.filter_matches(newFilterPattern):
return item is targetItem, item
for item in self.allItems:
if TriggerMode.HOTKEY in item.modes:
if item.modifiers == modifiers and item.hotKey == hotKey and item.filter_matches(newFilterPattern):
return item is targetItem, item
for item in self.globalHotkeys:
if item.enabled:
if item.modifiers == modifiers and item.hotKey == hotKey and item.filter_matches(newFilterPattern):
return item is targetItem, item
return True, None
# This import placed here to prevent circular import conflicts
from model import *
class GlobalHotkey(AbstractHotkey):
"""
A global application hotkey, configured from the advanced settings dialog.
Allows a method call to be attached to the hotkey.
"""
def __init__(self):
AbstractHotkey.__init__(self)
self.enabled = False
self.windowInfoRegex = None
self.isRecursive = False
self.parent = None
def get_serializable(self):
d = {
"enabled": self.enabled
}
d.update(AbstractHotkey.get_serializable(self))
return d
def load_from_serialized(self, data):
AbstractHotkey.load_from_serialized(self, data)
self.enabled = data["enabled"]
def set_closure(self, closure):
"""
Set the callable to be executed when the hotkey is triggered.
"""
self.closure = closure
def check_hotkey(self, modifiers, key, windowTitle):
if AbstractHotkey.check_hotkey(self, modifiers, key, windowTitle) and self.enabled:
_logger.debug("Triggered global hotkey using modifiers: %r key: %r", modifiers, key)
self.closure()
return False
def get_hotkey_string(self, key=None, modifiers=None):
if key is None and modifiers is None:
if not self.enabled:
return ""
key = self.hotKey
modifiers = self.modifiers
ret = ""
for modifier in modifiers:
ret += modifier
ret += "+"
if key == ' ':
ret += "<space>"
else:
ret += key
return ret
def __str__(self):
return _("AutoKey global hotkeys")
|