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 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
|
#-----------------------------------------------------------------------------
# Name: PrefsExplorer.py
# Purpose:
#
# Author: Riaan Booysen
#
# Created: 2001/06/08
# RCS-ID: $Id: PrefsExplorer.py,v 1.15 2004/08/16 13:22:00 riaan Exp $
# Copyright: (c) 2001 - 2004
# Licence: GPL
#-----------------------------------------------------------------------------
print 'importing Explorers.PrefsExplorer'
import os, sys, glob, pprint, imp
import types
from wxPython import wx
true=1;false=0
import Preferences, Utils, Plugins
import ExplorerNodes
from Models import EditorHelper
from Views import STCStyleEditor
import methodparse, relpath
class PreferenceGroupNode(ExplorerNodes.ExplorerNode):
""" Represents a group of preference collections """
protocol = 'prefs.group'
defName = 'PrefsGroup'
def __init__(self, name, parent):
ExplorerNodes.ExplorerNode.__init__(self, name, name, None,
EditorHelper.imgPrefsFolder, None)
self.vetoSort = true
self.preferences = []
def isFolderish(self):
return true
def openList(self):
return self.preferences
def notifyBeginLabelEdit(self, event):
event.Veto()
class BoaPrefGroupNode(PreferenceGroupNode):
""" The Preference node in the Explorer """
protocol = 'boa.prefs.group'
customPrefs = [] # list of tuples ('name', 'file')
def __init__(self, parent):
PreferenceGroupNode.__init__(self, 'Preferences', parent)
self.bold = true
prefImgIdx = EditorHelper.imgSystemObj
stcPrefImgIdx = EditorHelper.imgPrefsSTCStyles
self.source_pref = PreferenceGroupNode('Source', self)
self.source_pref.preferences = [
UsedModuleSrcBsdPrefColNode('Default settings',
Preferences.exportedSTCProps, os.path.join(Preferences.rcPath,
'prefs.rc.py'), prefImgIdx, self, Preferences, true)]
for name, lang, STCClass, stylesFile in ExplorerNodes.langStyleInfoReg:
if not os.path.isabs(stylesFile):
stylesFile = os.path.join(Preferences.rcPath, stylesFile)
self.source_pref.preferences.append(STCStyleEditPrefsCollNode(
name, lang, STCClass, stylesFile, stcPrefImgIdx, self))
self.preferences.append(self.source_pref)
self.general_pref = UsedModuleSrcBsdPrefColNode('General',
Preferences.exportedProperties, os.path.join(Preferences.rcPath,
'prefs.rc.py'), prefImgIdx, self, Preferences)
self.preferences.append(self.general_pref)
self.platform_pref = UsedModuleSrcBsdPrefColNode('Platform specific',
Preferences.exportedProperties2, os.path.join(Preferences.rcPath,
'prefs.%s.rc.py' % (wx.wxPlatform == '__WXMSW__' and 'msw' or 'gtk')),
prefImgIdx, self, Preferences)
self.preferences.append(self.platform_pref)
self.keys_pref = KeyDefsSrcPrefColNode('Key bindings', ('*',),
os.path.join(Preferences.rcPath, 'prefs.keys.rc.py'), prefImgIdx,
self, Preferences.keyDefs)
self.preferences.append(self.keys_pref)
for name, filename in self.customPrefs:
if not os.path.isabs(filename):
filename = os.path.join(Preferences.rcPath, filename)
self.preferences.append(UsedModuleSrcBsdPrefColNode(name,
('*',), filename, prefImgIdx, self, Preferences))
## self.pychecker_pref = SourceBasedPrefColNode('PyChecker',
## ('*',), Preferences.pyPath+'/.pycheckrc', prefImgIdx, self)
## self.preferences.append(self.pychecker_pref)
self.plugin_pref = PreferenceGroupNode('Plug-ins', self)
self.core_plugpref = UsedModuleSrcBsdPrefColNode('Core support',
Preferences.exportedCorePluginProps, os.path.join(Preferences.rcPath,
'prefs.rc.py'), prefImgIdx, self, Preferences, true)
self.plugin_plugpref = UsedModuleSrcBsdPrefColNode('Preferences', Preferences.exportedPluginProps,#('*',),
os.path.join(Preferences.rcPath, 'prefs.plug-ins.rc.py'), prefImgIdx,
self, Preferences, true)
self.files_plugpref = PluginFilesGroupNode()
self.transp_plugpref = PreferenceGroupNode('Transports', self)
self.transp_plugpref.preferences = [
TransportPluginsLoadOrderGroupNode(),
TransportPluginsTreeDisplayOrderGroupNode(),
]
self.plugin_pref.preferences = [
self.files_plugpref,
self.transp_plugpref,
self.core_plugpref,
self.plugin_plugpref,
]
self.preferences.insert(1, self.plugin_pref)
self.help_pref = HelpConfigBooksPGN()
self.preferences.insert(2, self.help_pref)
class PreferenceCollectionNode(ExplorerNodes.ExplorerNode):
""" Represents an inspectable preference collection """
protocol = 'prefs'
def __init__(self, name, props, resourcepath, imgIdx, parent):
ExplorerNodes.ExplorerNode.__init__(self, name, resourcepath, None,
imgIdx, None, props)
def open(self, editor):
""" Populate inspector with preference items """
comp = PreferenceCompanion(self.name, self)
comp.updateProps()
# Select in inspector
editor.inspector.restore()
if editor.inspector.pages.GetSelection() != 1:
editor.inspector.pages.SetSelection(1)
editor.inspector.selectObject(comp, false)
return None, None
def isFolderish(self):
return false
def load(self):
raise 'Not implemented'
def save(self, filename, data):
pass
def notifyBeginLabelEdit(self, event):
event.Veto()
class STCStyleEditPrefsCollNode(PreferenceCollectionNode):
protocol = 'stc.prefs'
def __init__(self, name, lang, STCclass, resourcepath, imgIdx, parent):
PreferenceCollectionNode.__init__(self, name, {}, resourcepath, imgIdx, parent)
self.language = lang
self.STCclass = STCclass
def open(self, editor):
# build list of all open STC's in the Editor
openSTCViews = []
for modPge in editor.modules.values():
for view in modPge.model.views.values():
if isinstance(view, self.STCclass):
openSTCViews.append(view)
# also check the shell
if Preferences.psPythonShell == 'Shell':
if isinstance(editor.shell, self.STCclass):
openSTCViews.append(editor.shell)
#elif Preferences.psPythonShell == 'PyCrust':
# if self.language == 'python':
# openSTCViews.append(editor.shell.shellWin)
dlg = STCStyleEditor.STCStyleEditDlg(editor, self.name, self.language,
self.resourcepath, openSTCViews)
try: dlg.ShowModal()
finally: dlg.Destroy()
return None, None
def getURI(self):
return '%s://%s' %(PreferenceCollectionNode.getURI(self), self.language)
class SourceBasedPrefColNode(PreferenceCollectionNode):
""" Preference collection represented by the global names in python module
Only names which are also defined in properties are returned
except when properties is a special match all tuple; ('*',)
This only applies to names assigned to values ( x = 123 ) not to global
names defined by classes functions and imports.
"""
def __init__(self, name, props, resourcepath, imgIdx, parent, showBreaks=true):
PreferenceCollectionNode.__init__(self, name, props, resourcepath,
imgIdx, parent)
self.showBreakLines = showBreaks
def load(self):
# All preferences are local
import moduleparse
module = moduleparse.Module(self.name,
open(self.resourcepath).readlines())
values = []
comments = []
options = []
# keep only names defined in the property list
for name in module.global_order[:]:
if name[0] == '_' or self.properties != ('*',) and \
name not in self.properties:
module.global_order.remove(name)
del module.globals[name]
else:
# XXX Should handle multiline assign
code = '\n'.join(module.source[\
module.globals[name].start-1 : \
module.globals[name].end])
# Extract value
s = code.find('=')
if s != -1:
values.append(code[s+1:].strip())
else:
values.append('')
# Read possible comment/help or options
comment = []
option = ''
idx = module.globals[name].start-2
while idx >= 0:
line = module.source[idx].strip()
if len(line) > 11 and line[:11] == '## options:':
option = line[11:].strip()
idx = idx - 1
elif len(line) > 8 and line[:8] == '## type:':
option = '##'+line[8:].strip()
idx = idx - 1
elif line and line[0] == '#':
comment.append(line[1:].lstrip())
idx = idx - 1
else:
break
comment.reverse()
comments.append('\n'.join(comment))
options.append(option)
if self.showBreakLines: breaks = module.break_lines
else: breaks = {}
return (module.global_order, values, module.globals, comments, options,
breaks)
def save(self, filename, data):
""" Updates one property """
src = open(self.resourcepath).readlines()
src[data[2].start-1] = '%s = %s\n' % (data[0], data[1])
open(self.resourcepath, 'w').writelines(src)
class UsedModuleSrcBsdPrefColNode(SourceBasedPrefColNode):
""" Also update the value of a global attribute of an imported module """
def __init__(self, name, props, resourcepath, imgIdx, parent, module,
showBreaks=true):
SourceBasedPrefColNode.__init__(self, name, props, resourcepath, imgIdx,
parent, showBreaks)
self.module = module
def save(self, filename, data):
SourceBasedPrefColNode.save(self, filename, data)
if hasattr(self.module, data[0]):
setattr(self.module, data[0], eval(data[1], vars(Preferences)))
class KeyDefsSrcPrefColNode(PreferenceCollectionNode):
""" Preference collection representing the key bindings """
def __init__(self, name, props, resourcepath, imgIdx, parent, keyDefs):
PreferenceCollectionNode.__init__(self, name, props, resourcepath,
imgIdx, parent)
self.showBreakLines = true
self._editor = None
def open(self, editor):
PreferenceCollectionNode.open(self, editor)
self._editor = editor
def load(self):
import moduleparse
src = open(self.resourcepath).readlines()
module = moduleparse.Module(self.name, src)
# find keydefs
keydefs = {}
names = []
values = []
start = end = idx = -1
for line in src:
idx = idx + 1
line = line.strip()
if line == 'keyDefs = {':
start = idx
elif start != -1 and line:
if line[-1] == '}':
end = idx
break
elif line[0] != '#':
colon = line.find(':')
if colon == -1: raise Exception('Invalid KeyDef item: %s'%line)
name = line[:colon].rstrip()[1:-1]
val = line[colon+1:].lstrip()
keydefs[name] = moduleparse.CodeBlock(val, idx+1, idx+1)
names.append(name)
values.append(val)
return (names, values, keydefs, ['']*len(keydefs),
['## keydef']*len(keydefs), module.break_lines)
def save(self, filename, data):
""" Updates one key:val in keydefs dict """
# Update source file
src = open(self.resourcepath).readlines()
src[data[2].start-1] = \
" '%s'%s: %s\n" % (data[0], (12 - len(data[0]))*' ', data[1])
open(self.resourcepath, 'w').writelines(src)
# Update dictionary
Preferences.keyDefs[data[0]] = eval(data[1], vars(Preferences))[0]
# Update editor menus
self._editor.setupToolBar()
self._editor.updateStaticMenuShortcuts()
self._editor.shell.bindShortcuts()
class ConfigBasedPrefsColNode(PreferenceCollectionNode):
""" Preferences driven by config files """
pass
#---Companions------------------------------------------------------------------
from PropEdit import PropertyEditors, InspectorEditorControls
class KeyDefConfPropEdit(PropertyEditors.ConfPropEdit):
def inspectorEdit(self):
self.editorCtrl = InspectorEditorControls.ButtonIEC(self, self.value)
self.editorCtrl.createControl(self.parent, self.idx, self.width, self.edit)
def edit(self, event):
import KeyDefsDlg
dlg = KeyDefsDlg.KeyDefsDialog(self.parent, self.name, self.value)
try:
if dlg.ShowModal() == wx.wxID_OK:
self.editorCtrl.value = dlg.result
self.inspectorPost(false)
finally:
dlg.Destroy()
def getDisplayValue(self):
try:
return eval(self.value, wx.__dict__)[0][2]
except Exception, err:
return str(err)
class PreferenceCompanion(ExplorerNodes.ExplorerCompanion):
def __init__(self, name, prefNode, ):
ExplorerNodes.ExplorerCompanion.__init__(self, name)
self.prefNode = prefNode
self._breaks = {}
typeMap = {}
customTypeMap = {'filepath': PropertyEditors.FilepathConfPropEdit,
'dirpath': PropertyEditors.DirpathConfPropEdit,
'keydef': KeyDefConfPropEdit}
def getPropEditor(self, prop):
# XXX Using name equality to identify _breaks' prop edit is ugly !
for aProp in self.propItems:
if aProp[0] == prop: break
else:
raise Exception('Property "%s" not found'%prop)
srcVal = aProp[1]
opts = aProp[4]
if prop in self._breaks.values():
return None
if opts:
if opts[:2] == '##':
return self.customTypeMap.get(opts[2:].strip(), None)
else:
return PropertyEditors.EnumConfPropEdit
if srcVal.lower() in ('true', 'false'):
return PropertyEditors.BoolConfPropEdit
try:
val = eval(srcVal, vars(Preferences))
except Exception, error:
return PropertyEditors.StrConfPropEdit
if isinstance(val, wx.wxColour):
return PropertyEditors.ColourConfPropEdit
return self.typeMap.get(type(val), PropertyEditors.StrConfPropEdit)
def getPropertyHelp(self, propName):
for prop in self.propItems:
if prop[0] == propName: return prop[3]
else:
return propName
def getPropertyItems(self):
order, vals, props, comments, options, self._breaks = self.prefNode.load()
# remove empty break lines (-----------------------)
for lineNo in self._breaks.keys():
if not self._breaks[lineNo]:
del self._breaks[lineNo]
breakLinenos = self._breaks.keys()
breakLinenos.sort()
if len(breakLinenos):
breaksIdx = 0
else:
breaksIdx = None
res = []
for name, value, comment, option in map(None, order, vals, comments, options):
if breaksIdx is not None:
# find closest break above property
while breaksIdx < len(breakLinenos)-1 and \
props[name].start > breakLinenos[breaksIdx+1]:
breaksIdx += 1
if breaksIdx >= len(breakLinenos):
breaksIdx = None
if breaksIdx is not None and props[name].start > breakLinenos[breaksIdx]:
res.append( (self._breaks[breakLinenos[breaksIdx]], '', None, '', '') )
breaksIdx += 1
#if breaksIdx == len(self._breaks) -1:
# breaksIdx = None
#else:
# breaksIdx = breaksIdx + 1
res.append( (name, value, props[name], comment, option) )
return res
def setPropHook(self, name, value, oldProp):
# XXX validate etc.
try:
eval(value, vars(Preferences))
except Exception, error:
wx.wxLogError('Error: '+str(error))
return false
else:
newProp = (name, value) + oldProp[2:]
self.prefNode.save(name, newProp)
return true
def persistedPropVal(self, name, setterName):
if name in self._breaks.values():
return 'PROP_CATEGORY'
else:
return None
def getPropOptions(self, name):
for prop in self.propItems:
if prop[0] == name:
strOpts = prop[4]
if strOpts and strOpts[:2] != '##':
return self.eval(strOpts)
else:
return ()
else:
return ()
def getPropNames(self, name):
for prop in self.propItems:
if prop[0] == name:
strOpts = prop[4]
if strOpts and strOpts[:2] != '##':
return methodparse.safesplitfields(strOpts, ',')
else: return ()
else:
return ()
def eval(self, expr):
import PaletteMapping
return PaletteMapping.evalCtrl(expr, vars(Preferences))
## def GetProp(self, name):
## ExplorerNodes.ExplorerCompanion.GetProp(self, name)
## return self.findProp(name)[0][1]
class CorePluginsGroupNode(PreferenceGroupNode):
""" """
protocol = 'prefs.group.plug-in.core'
defName = 'CorePluginPrefsGroup'
def __init__(self):
name = 'Core support'
PreferenceGroupNode.__init__(self, name, None)
self.vetoSort = true
self.preferences = []
def isFolderish(self):
return true
def openList(self):
return self.preferences
def notifyBeginLabelEdit(self, event):
event.Veto()
def getPluginSection(pluginFile):
pluginPath = os.path.dirname(pluginFile)
return Preferences.pluginSections[
Preferences.pluginPaths.index(pluginPath)]
class PluginFileExplNode(ExplorerNodes.ExplorerNode):
""" """
def __init__(self, name, enabled, status, resourcepath, imgIdx):
ExplorerNodes.ExplorerNode.__init__(self, name, resourcepath, None,
imgIdx, None, {})
self.pluginEnabled = enabled
self.pluginStatus = status
def open(self, editor):
""" """
if self.pluginEnabled:
msg = 'Disable'
else:
msg = 'Enable'
if wx.wxMessageBox('%s %s?'%(msg, self.name), 'Confirm Toggle Plug-in',
wx.wxYES_NO | wx.wxICON_QUESTION) == wx.wxYES:
section = getPluginSection(self.resourcepath)
ordered, disabled = Plugins.readPluginsState(section)
if self.pluginEnabled:
disabled.append(self.name)
else:
try:
disabled.remove(self.name)
except ValueError:
pass
#Plugins.writeInitPluginGlobals(initPluginPath, initPluginGlobals)
Plugins.writePluginsState(section, ordered, disabled)
editor.explorer.list.refreshCurrent()
return None, None
def getURI(self):
return '%s (%s)'%(ExplorerNodes.ExplorerNode.getURI(self),
self.pluginStatus)
def isFolderish(self):
return false
def notifyBeginLabelEdit(self, event):
event.Veto()
def changeOrder(self, direction):
section = getPluginSection(self.resourcepath)
#initPluginPath = os.path.dirname(self.resourcepath)
ordered, disabled = Plugins.readPluginsState(section)
#ordered = initPluginGlobals['__ordered__']
try:
idx = ordered.index(self.name)
except ValueError:
idx = len(ordered)+1
else:
del ordered[idx]
idx = max(idx + direction, 0)
if idx <= len(ordered):
ordered.insert(idx, self.name)
#Plugins.writeInitPluginGlobals(initPluginPath, initPluginGlobals)
Plugins.writePluginsState(section, ordered, disabled)
class PluginFilesGroupNode(PreferenceGroupNode):
""" Represents a group of preference collections """
protocol = 'prefs.group.plug-in.files'
defName = 'PluginFilesPrefsGroup'
def __init__(self):
name = 'Plug-in files'
PreferenceGroupNode.__init__(self, name, None)
def openList(self):
res = []
splitext = os.path.splitext
for filename, ordered, enabled in Plugins.buildPluginExecList():
if os.path.basename(filename) == '__init__.plug-in.py':
continue
name = splitext(splitext(os.path.basename(filename))[0])[0]
if not enabled:
name = splitext(name)[0]
status = 'Disabled'
imgIdx = EditorHelper.imgSystemObjDisabled
else:
fn = filename.lower()
if Preferences.failedPlugins.has_key(fn):
kind, msg = Preferences.failedPlugins[fn]
if kind == 'Skipped':
status = 'Skipped plug-in: %s'% msg
imgIdx = EditorHelper.imgSystemObjPending
else:
status = 'Broken plug-in: %s'% msg
imgIdx = EditorHelper.imgSystemObjBroken
elif fn in Preferences.installedPlugins:
if ordered:
status = 'Installed, ordered'
imgIdx = EditorHelper.imgSystemObjOrdered
else:
status = 'Installed'
imgIdx = EditorHelper.imgSystemObj
else:
status = 'Pending restart'
imgIdx = EditorHelper.imgSystemObjPending
res.append(PluginFileExplNode(name, enabled, status, filename, imgIdx))
return res
class PluginFilesGroupNodeController(ExplorerNodes.Controller):
moveUpBmp = 'Images/Shared/up.png'
moveDownBmp = 'Images/Shared/down.png'
itemDescr = 'item'
def __init__(self, editor, list, inspector, controllers):
ExplorerNodes.Controller.__init__(self, editor)
self.list = list
self.menu = wx.wxMenu()
[wxID_PF_TOGGLE, wxID_PF_OPEN, wxID_PF_UP, wxID_PF_DOWN] = Utils.wxNewIds(4)
self.transpMenuDef = [ (wxID_PF_TOGGLE, 'Toggle Enable/Disabled',
self.OnToggleState, '-'),
(wxID_PF_OPEN, 'Open plug-in file',
self.OnOpenPlugin, '-'),
(-1, '-', None, ''),
(wxID_PF_UP, 'Move up',
self.OnMovePluginUp, self.moveUpBmp),
(wxID_PF_DOWN, 'Move down',
self.OnMovePluginDown, self.moveDownBmp),
]
self.setupMenu(self.menu, self.list, self.transpMenuDef)
self.toolbarMenus = [self.transpMenuDef]
def destroy(self):
self.transpMenuDef = []
self.toolbarMenus = []
self.menu.Destroy()
def OnToggleState(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
for node in nodes:
node.open(self.editor)
def OnOpenPlugin(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
for node in nodes:
self.editor.openOrGotoModule(node.resourcepath)
def OnMovePluginUp(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
if len(nodes) != 1:
wx.wxLogError('Can only move 1 at a time')
else:
node = nodes[0]
idx = self.list.items.index(node)
if idx == 0:
wx.wxLogError('Already at the beginning')
else:
name = node.name
node.changeOrder(-1)
self.list.refreshCurrent()
self.list.selectItemNamed(name)
def OnMovePluginDown(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
if len(nodes) != 1:
wx.wxLogError('Can only move 1 at a time')
else:
node = nodes[0]
idx = self.list.items.index(node)
## if idx >= len(self.list.items) -1:
## wx.wxLogError('Already at the end')
## else:
name = node.name
node.changeOrder(1)
self.list.refreshCurrent()
self.list.selectItemNamed(name)
class TransportPluginExplNode(ExplorerNodes.ExplorerNode):
""" """
protocol = 'transport'
def __init__(self, name, status, imgIdx):
ExplorerNodes.ExplorerNode.__init__(self, name, '%s (%s)'%(name, status),
None, imgIdx, None, {})
self.status = status
def open(self, editor):
return None, None
class TransportPluginsController(ExplorerNodes.Controller):
addItemBmp = 'Images/Shared/NewItem.png'
removeItemBmp = 'Images/Shared/DeleteItem.png'
moveUpBmp = 'Images/Shared/up.png'
moveDownBmp = 'Images/Shared/down.png'
itemDescr = 'item'
def __init__(self, editor, list, inspector, controllers):
ExplorerNodes.Controller.__init__(self, editor)
self.list = list
self.menu = wx.wxMenu()
[wxID_TP_NEW, wxID_TP_DEL, wxID_TP_UP, wxID_TP_DOWN] = Utils.wxNewIds(4)
self.transpMenuDef = [ (wxID_TP_NEW, 'Add new '+self.itemDescr,
self.OnNewTransport, self.addItemBmp),
(wxID_TP_DEL, 'Remove '+self.itemDescr,
self.OnDeleteTransport, self.removeItemBmp),
(-1, '-', None, ''),
(wxID_TP_UP, 'Move up',
self.OnMoveTransportUp, self.moveUpBmp),
(wxID_TP_DOWN, 'Move down',
self.OnMoveTransportDown, self.moveDownBmp),
]
self.setupMenu(self.menu, self.list, self.transpMenuDef)
self.toolbarMenus = [self.transpMenuDef]
def destroy(self):
self.transpMenuDef = []
self.toolbarMenus = []
self.menu.Destroy()
def editorUpdateNotify(self, info=''):
self.OnReloadItems()
def OnReloadItems(self, event=None):
if self.list.node:
self.list.refreshCurrent()
def moveTransport(self, node, idx, direc):
names = []
for item in self.list.items:
names.append(item.name)
name = names[idx]
del names[idx]
names.insert(idx + direc, name)
self.list.node.updateOrder(names)
self.list.refreshCurrent()
self.list.selectItemByIdx(idx+direc+1)
def OnMoveTransportUp(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
if len(nodes) != 1:
wx.wxLogError('Can only move 1 at a time')
else:
node = nodes[0]
idx = self.list.items.index(node)
if idx == 0:
wx.wxLogError('Already at the beginning')
else:
self.moveTransport(node, idx, -1)
def OnMoveTransportDown(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
if len(nodes) != 1:
wx.wxLogError('Can only move 1 at a time')
else:
node = nodes[0]
idx = self.list.items.index(node)
if idx >= len(self.list.items) -1:
wx.wxLogError('Already at the end')
else:
self.moveTransport(node, idx, 1)
def OnNewTransport(self, event):
pass
def OnDeleteTransport(self, event):
pass
class TransportPluginsLoadOrderController(TransportPluginsController):
itemDescr = 'Transport module'
def OnNewTransport(self, event):
dlg = wx.wxTextEntryDialog(self.list, 'Enter the fully qualified Python '\
'object path to \nthe Transport module. E.g. Explorers.FileExplorer',
'New Transport', '')
try:
if dlg.ShowModal() != wx.wxID_OK:
return
transportModulePath = dlg.GetValue()
finally:
dlg.Destroy()
if not self.list.node.checkValidModulePath(transportModulePath):
if wx.wxMessageBox('Cannot locate the specified module path,\n'\
'are you sure you want to continue?',
'Module not found',
wx.wxYES_NO | wx.wxICON_EXCLAMATION) == wx.wxNO:
return
names = []
for item in self.list.items:
names.append(item.name)
names.append(transportModulePath)
self.list.node.updateOrder(names)
self.list.refreshCurrent()
def OnDeleteTransport(self, event):
selNames = self.list.getMultiSelection()
nodes = self.getNodesForSelection(selNames)
names = []
for item in self.list.items:
names.append(item.name)
for item in nodes:
names.remove(item.name)
self.list.node.updateOrder(names)
self.list.refreshCurrent()
class TransportPluginsTreeDisplayOrderController(TransportPluginsController):
itemDescr = 'Transports tree node'
def OnNewTransport(self, event):
dlg = wx.wxTextEntryDialog(self.list, 'Enter the protocol identifier. E.g. '\
'ftp, ssh', 'New Transports Tree Node', '')
try:
if dlg.ShowModal() != wx.wxID_OK:
return
protocol = dlg.GetValue()
finally:
dlg.Destroy()
names = []
for item in self.list.items:
names.append(item.name)
names.append(protocol)
self.list.node.updateOrder(names)
self.list.node.checkConfigEntry(protocol)
self.list.refreshCurrent()
def OnDeleteTransport(self, event):
selNames = self.list.getMultiSelection()
nodes = self.getNodesForSelection(selNames)
names = []
for item in self.list.items:
names.append(item.name)
for item in nodes:
names.remove(item.name)
self.list.node.clearEmptyConfigEntry(item.name)
self.list.node.updateOrder(names)
self.list.refreshCurrent()
class TransportPluginsLoadOrderGroupNode(PreferenceGroupNode):
""" """
protocol = 'prefs.group.plug-in.transport.load-order'
defName = 'TransportPluginsPrefsGroup'
def __init__(self):
name = 'Loading order'
PreferenceGroupNode.__init__(self, name, None)
def openList(self):
conf = Utils.createAndReadConfig('Explorer')
modules = eval(conf.get('explorer', 'installedtransports'), {})
assert isinstance(modules, types.ListType)
res = []
for mod in modules:
if mod in ExplorerNodes.installedModules:
status = 'Installed'
imgIdx = EditorHelper.imgSystemObjOrdered
elif mod in ExplorerNodes.failedModules.keys():
status = 'Broken: %s'%ExplorerNodes.failedModules[mod]
imgIdx = EditorHelper.imgSystemObjBroken
else:
status = 'Pending restart'
imgIdx = EditorHelper.imgSystemObjPending
res.append(TransportPluginExplNode(mod, status, imgIdx))
return res
def updateOrder(self, newOrder):
conf = Utils.createAndReadConfig('Explorer')
conf.set('explorer', 'installedtransports', pprint.pformat(newOrder))
Utils.writeConfig(conf)
def checkValidModulePath(self, name):
try:
Utils.find_dotted_module(name)
except ImportError, err:
#print str(err)
return false
else:
return true
class TransportPluginsTreeDisplayOrderGroupNode(PreferenceGroupNode):
""" """
protocol = 'prefs.group.plug-in.transport.tree-order'
defName = 'TransportPluginsPrefsGroup'
def __init__(self):
name = 'Tree display order'
PreferenceGroupNode.__init__(self, name, None)
def openList(self):
conf = Utils.createAndReadConfig('Explorer')
treeOrder = eval(conf.get('explorer', 'transportstree'), {})
assert isinstance(treeOrder, type([]))
res = []
for prot in treeOrder:
if not ExplorerNodes.nodeRegByProt.has_key(prot):
status = 'Protocol not installed'
imgIdx = EditorHelper.imgSystemObjPending
else:
status = 'Installed'
imgIdx = EditorHelper.imgSystemObjOrdered
res.append(TransportPluginExplNode(prot, status, imgIdx))
return res
def updateOrder(self, newOrder):
conf = Utils.createAndReadConfig('Explorer')
conf.set('explorer', 'transportstree', pprint.pformat(newOrder))
Utils.writeConfig(conf)
def checkConfigEntry(self, protocol):
conf = Utils.createAndReadConfig('Explorer')
if not conf.has_option('explorer', protocol):
conf.set('explorer', protocol, '{}')
Utils.writeConfig(conf)
def clearEmptyConfigEntry(self, protocol):
conf = Utils.createAndReadConfig('Explorer')
if conf.has_option('explorer', protocol) and \
eval(conf.get('explorer', protocol).strip(), {}) == {}:
conf.remove_option('explorer', protocol)
Utils.writeConfig(conf)
class HelpConfigPGN(PreferenceGroupNode):
""" """
protocol = 'prefs.group.help.config'
defName = 'HelpConfigPrefsGroup'
def __init__(self):
name = 'Help system'
PreferenceGroupNode.__init__(self, name, None)
def openList(self):
return
class HelpConfigBooksPGN(PreferenceGroupNode):
""" """
protocol = 'prefs.group.help.config.books'
defName = 'HelpConfigBooksPrefsGroup'
def __init__(self):
name = 'Help books'
PreferenceGroupNode.__init__(self, name, None)
def openList(self):
bookPaths = self.readBooks()
return [HelpConfigBookNode(bookPath)
for bookPath in bookPaths]
def readBooks(self):
return eval(Utils.createAndReadConfig('Explorer').get('help', 'books'), {})
def writeBooks(self, books):
conf = Utils.createAndReadConfig('Explorer')
conf.set('help', 'books', pprint.pformat(books))
Utils.writeConfig(conf)
def preparePath(self, path):
helpPath = Preferences.pyPath+'/Docs/'
if path.startswith('file://'):
path = path[7:]
# Add relative paths for files inside Docs directory
if os.path.normcase(path).startswith(os.path.normcase(helpPath)):
return path[len(helpPath):]
else:
return path
def editBook(self, curPath, newPath):
books = self.readBooks()
books[books.index(curPath)] = self.preparePath(newPath)
self.writeBooks(books)
def addBook(self, path):
path = self.preparePath(path)
self.writeBooks(self.readBooks() + [path])
def removeBook(self, path):
books = self.readBooks()
books.remove(path)
self.writeBooks(books)
def updateOrder(self, paths):
self.writeBooks(paths)
class HelpConfigBookNode(ExplorerNodes.ExplorerNode):
""" """
protocol = 'help.book'
def __init__(self, resourcepath):
fullpath = self.getAbsPath(resourcepath)
name = os.path.basename(resourcepath)
if os.path.splitext(fullpath)[1] == '.hhp':
# Peek at title inside hhp file
for line in open(fullpath).readlines():
if line.startswith('Title'):
name = line.split('=')[1].strip()
ExplorerNodes.ExplorerNode.__init__(self, name, resourcepath, None,
EditorHelper.imgHelpBook, None, {})
def open(self, editor):
return None, None
## def getURI(self):
## return '%s (%s)'%(ExplorerNodes.ExplorerNode.getURI(self),
## self.pluginStatus)
def isFolderish(self):
return false
def notifyBeginLabelEdit(self, event):
event.Veto()
def getAbsPath(self, resourcepath):
if not os.path.isabs(resourcepath):
return os.path.join(Preferences.pyPath, 'Docs', resourcepath)
else:
return resourcepath
class HelpConfigBooksController(ExplorerNodes.Controller):
addItemBmp = 'Images/Shared/NewItem.png'
removeItemBmp = 'Images/Shared/DeleteItem.png'
moveUpBmp = 'Images/Shared/up.png'
moveDownBmp = 'Images/Shared/down.png'
itemDescr = 'item'
def __init__(self, editor, list, inspector, controllers):
ExplorerNodes.Controller.__init__(self, editor)
self.list = list
self.menu = wx.wxMenu()
[wxID_HB_EDIT, wxID_HB_NEW, wxID_HB_DEL, wxID_HB_UP, wxID_HB_DOWN,
wxID_HB_REST, wxID_HB_CLRI, wxID_HB_OPEN] = Utils.wxNewIds(8)
self.helpBooksMenuDef = [ (wxID_HB_EDIT, 'Edit '+self.itemDescr,
self.OnEditBookPath, '-'),
(wxID_HB_NEW, 'Add new '+self.itemDescr,
self.OnNewBook, self.addItemBmp),
(wxID_HB_DEL, 'Remove '+self.itemDescr,
self.OnRemoveBook, self.removeItemBmp),
(-1, '-', None, ''),
(wxID_HB_UP, 'Move up',
self.OnMoveBookUp, self.moveUpBmp),
(wxID_HB_DOWN, 'Move down',
self.OnMoveBookDown, self.moveDownBmp),
(-1, '-', None, '-'),
(wxID_HB_OPEN, 'Open hhp file',
self.OnOpenHHP, '-'),
(-1, '-', None, '-'),
(wxID_HB_REST, 'Restart the help system',
self.OnRestartHelp, '-'),
(wxID_HB_CLRI, 'Clear the help indexes',
self.OnClearHelpIndexes, '-'),
]
self.setupMenu(self.menu, self.list, self.helpBooksMenuDef)
self.toolbarMenus = [self.helpBooksMenuDef]
def destroy(self):
self.helpBooksMenuDef = ()
self.toolbarMenus = ()
self.menu.Destroy()
def editorUpdateNotify(self, info=''):
self.OnReloadItems()
def OnReloadItems(self, event=None):
if self.list.node:
self.list.refreshCurrent()
def moveBook(self, node, idx, direc):
paths = [item.resourcepath for item in self.list.items]
path = paths[idx]
del paths[idx]
paths.insert(idx + direc, path)
self.list.node.updateOrder(paths)
self.list.refreshCurrent()
self.list.selectItemByIdx(idx+direc+1)
def OnMoveBookUp(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
if len(nodes) != 1:
wx.wxLogError('Can only move 1 at a time')
else:
node = nodes[0]
idx = self.list.items.index(node)
if idx == 0:
wx.wxLogError('Already at the beginning')
else:
self.moveBook(node, idx, -1)
def OnMoveBookDown(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
nodes = self.getNodesForSelection(ms)
if len(nodes) != 1:
wx.wxLogError('Can only move 1 at a time')
else:
node = nodes[0]
idx = self.list.items.index(node)
if idx >= len(self.list.items) -1:
wx.wxLogError('Already at the end')
else:
self.moveBook(node, idx, 1)
def OnEditBookPath(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
for node in self.getNodesForSelection(ms):
if not os.path.isabs(node.resourcepath):
path = os.path.join(Preferences.pyPath,
'Docs', node.resourcepath)
else:
path = node.resourcepath
curpath, curfile = os.path.split(path)
newpath = self.editor.openFileDlg('AllFiles', curdir=curpath)
if newpath:
self.list.node.editBook(node.resourcepath, path)
self.list.refreshCurrent()
def OnNewBook(self, event):
path = self.editor.openFileDlg('AllFiles', curdir=Preferences.pyPath+'/Docs')
if path and self.list.node:
self.list.node.addBook(path)
self.list.refreshCurrent()
def OnRemoveBook(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
for node in self.getNodesForSelection(ms):
self.list.node.removeBook(node.resourcepath)
self.list.refreshCurrent()
def OnRestartHelp(self, event):
import Help
Help.delHelp()
wx.wxYield()
Help.initHelp()
def OnClearHelpIndexes(self, event):
import Help
cd = Help.getCacheDir()
for name in os.listdir(cd):
if os.path.splitext(name)[1] == '.cached':
os.remove(os.path.join(cd, name))
wx.wxLogMessage('Deleted %s'%name)
def OnOpenHHP(self, event):
if self.list.node:
ms = self.list.getMultiSelection()
for node in self.getNodesForSelection(ms):
self.editor.openOrGotoModule(node.getAbsPath(node.resourcepath))
#-------------------------------------------------------------------------------
ExplorerNodes.register(BoaPrefGroupNode)
ExplorerNodes.register(PluginFilesGroupNode,
controller=PluginFilesGroupNodeController)
ExplorerNodes.register(TransportPluginsLoadOrderGroupNode,
controller=TransportPluginsLoadOrderController)
ExplorerNodes.register(TransportPluginsTreeDisplayOrderGroupNode,
controller=TransportPluginsTreeDisplayOrderController)
ExplorerNodes.register(HelpConfigBooksPGN, controller=HelpConfigBooksController)
|