-
Notifications
You must be signed in to change notification settings - Fork 8
/
Utils.py
1053 lines (876 loc) · 32.7 KB
/
Utils.py
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
#----------------------------------------------------------------------
# Name: Utils.py
# Purpose: General purpose functions and classes
#
# Author: Riaan Booysen
#
# Created: 1999
# RCS-ID: $Id$
# Copyright: (c) 1999 - 2007 Riaan Booysen
# Licence: GPL
#----------------------------------------------------------------------
import string, os, sys, glob, pprint, types, re, traceback
import wx
import Preferences
from Preferences import IS
from ConfigParser import ConfigParser
# Centralised i18n gettext compatible definition
_ = wx.GetTranslation
def toPyPath(filename):
return os.path.join(Preferences.pyPath, filename)
def ShowErrorMessage(parent, caption, mess):
dlg = wx.MessageDialog(parent, mess.__class__.__name__ +': '+`mess`,
caption, wx.OK | wx.ICON_EXCLAMATION)
try: dlg.ShowModal()
finally: dlg.Destroy()
def ShowMessage(parent, caption, message, msgTpe=wx.ICON_INFORMATION):
dlg = wx.MessageDialog(parent, message, caption, wx.OK | msgTpe)
try: dlg.ShowModal()
finally: dlg.Destroy()
def yesNoDialog(parent, title, question):
dlg = wx.MessageDialog(parent, question, title, wx.YES_NO | wx.ICON_QUESTION)
try: return (dlg.ShowModal() == wx.ID_YES)
finally: dlg.Destroy()
def AddToolButtonBmpObject(frame, toolbar, thebitmap, hint, triggermeth,
theToggleBitmap=wx.NullBitmap):
nId = wx.NewId()
toolbar.AddTool(nId, thebitmap, theToggleBitmap, shortHelpString = hint)
frame.Bind(wx.EVT_TOOL, triggermeth, id=nId)
return nId
def AddToolButtonBmpFile(frame, toolbar, filename, hint, triggermeth):
return AddToolButtonBmpObject(frame, toolbar, IS.load(filename),
hint, triggermeth)
def AddToolButtonBmpIS(frame, toolbar, name, hint, triggermeth, toggleBmp = ''):
if toggleBmp:
return AddToggleToolButtonBmpObject(frame, toolbar, IS.load(name), hint[:85], triggermeth)
else:
return AddToolButtonBmpObject(frame, toolbar, IS.load(name), hint[:85], triggermeth)
def AddToggleToolButtonBmpObject(frame, toolbar, thebitmap, hint, triggermeth):
nId = wx.NewId()
toolbar.AddTool(nId, thebitmap, thebitmap, shortHelpString = hint, isToggle = True)
frame.Bind(wx.EVT_TOOL, triggermeth, id=nId)
return nId
#This format follows wxWidgets conventions
def windowIdentifier(frameName, ctrlName):
return 'wxID_' + frameName.upper() + ctrlName.upper()
class BoaFileDropTarget(wx.FileDropTarget):
def __init__(self, editor):
wx.FileDropTarget.__init__(self)
self.editor = editor
def OnDropFiles(self, x, y, filenames):
wx.BeginBusyCursor()
try:
for filename in filenames:
self.editor.openOrGotoModule(filename)
finally:
wx.EndBusyCursor()
def split_seq(seq, pivot, transformFunc = None):
result = []
cur_sect = []
for itm in seq:
if transformFunc and transformFunc(itm) == pivot or itm == pivot:
result.append(cur_sect)
cur_sect = []
else:
cur_sect.append(itm)
result.append(cur_sect)
return result
allowed_width = 78
def human_split(line):
indent = line.find(line.strip())
# XXX use safe split, commas in quotes will break
segments = line.split(',')
for idx in range(len(segments)-1):
segments[idx] = segments[idx]+','
result = []
cur_line = ''
for segment in segments:
if indent + len(segment) > allowed_width:
pass
elif len(cur_line + segment) > allowed_width:
result.append(cur_line)
cur_line = ' ' * (indent + 2) + segment
# print cur_line, indent + 2
else:
cur_line = cur_line + segment
result.append(cur_line)
return result
def duplicateMenu(source):
""" Create an duplicate of a menu (does not do sub menus)"""
dest = wx.Menu()
for menu in source.GetMenuItems():
if menu.IsSeparator():
dest.AppendSeparator()
else:
dest.Append(menu.GetId(), menu.GetText(), menu.GetHelp(), menu.IsCheckable())
mi = dest.FindItemById(menu.GetId())
if menu.IsCheckable() and menu.IsChecked():
mi.Check(True)
return dest
def getValidName(usedNames, baseName, ext = '', n = 1, itemCB = lambda x:x):
def tryName(baseName, ext, n):
return '%s%d%s' %(baseName, n, ext and '.'+ext)
while filter(lambda key, name = tryName(baseName, ext, n), itemCB = itemCB: \
itemCB(key) == name, usedNames): n = n + 1
return tryName(baseName, ext, n)
def srcRefFromCtrlName(ctrlName):
return ctrlName and 'self.'+ctrlName or 'self'
def ctrlNameFromSrcRef(srcRef):
return srcRef == 'self' and '' or srcRef[5:]
def getWxPyNameForClass(Class):
""" Strips away _modules from the class identifier """
classPathSegs = Class.__module__.split('.') + [Class.__name__]
return '.'.join([pathSeg for pathSeg in classPathSegs if pathSeg[0] != '_'])
def winIdRange(count):
return [wx.NewId() for x in range(count)]
wxNewIds = winIdRange
def methodLooksLikeEvent(method):
return len(method) >= 3 and method[:2] == 'On' and method[2] in string.uppercase
def startswith(str, substr):
return len(str) >= len(substr) and str[:len(substr)] == substr
ws2s = string.maketrans(string.whitespace, ' '*len(string.whitespace))
def whitespacetospace(str):
return str.translate(ws2s)
##tst_str = ' 1\t\n 3'
##print `whitespacetospace(tst_str)`
class PaintEventHandler(wx.EvtHandler):
""" This class is used to merge paint requests.
Each paint is captured and saved. Later on the idle event,
the non-duplicated paints are executed. The code attempts to be
efficient by determining the enclosing rectangle where multiple
rectangles intersect.
This is required only on GTK systems.
Note: there is an assumption here that event handling is synchronous
i.e. the paints called from the idle event handler are processed
before the Refresh() call returns.
"""
def __init__(self, window):
wx.EvtHandler.__init__(self)
self.painting=0
self.updates=[]
self.window = window
window.PushEventHandler(self)
self.Bind(wx.EVT_PAINT, self.OnPaint)
self.Bind(wx.EVT_IDLE, self.OnIdle)
def OnPaint(self, event):
if self.painting == 1:
event.Skip()
return
newRect = self.window.GetUpdateRegion().GetBox()
newList=[]
for rect in self.updates:
if self.RectanglesOverlap(rect, newRect):
newRect = self.MergeRectangles(rect,newRect)
else:
newList.append(rect)
self.updates = newList
self.updates.append(newRect)
event.Skip()
def OnIdle(self, event):
if len(self.updates) == 0:
event.Skip()
if len(self.updates) > 0:
self.RequestMore()
return
self.painting=1
for rect in self.updates:
self.window.Refresh(0, rect)
self.updates=[]
self.painting=0
event.Skip()
def RectanglesOverlap(self, rect1, rect2):
" Returns 1 if Rectangles overlap, 0 otherwise "
if rect1.x > rect2.x + rect2.width : return 0
if rect1.y > rect2.y + rect2.height : return 0
if rect1.x + rect1.width < rect2.x : return 0
if rect1.y + rect1.height < rect2.y : return 0
return 1
def MergeRectangles(self, rect1, rect2):
" Returns a rectangle containing both rect1 and rect2"
if rect1.x < rect2.x:
x=rect1.x
if x+rect1.width > rect2.x + rect2.width:
width = rect1.width
else:
width = rect2.x + rect2.width - rect1.x
else:
x=rect2.x
if x+rect2.width > rect1.x + rect1.width:
width = rect2.width
else:
width = rect1.x + rect1.width - rect2.x
if rect1.y < rect2.y:
y=rect1.y
if y+rect1.height > rect2.y + rect2.height:
height = rect1.height
else:
height = rect2.y + rect2.height - rect1.y
else:
y=rect2.y
if y+rect2.height > rect1.y + rect1.height:
height = rect2.height
else:
height = rect1.y + rect1.height - rect2.y
rv = wx.Rect(x, y, width, height)
return rv
def getI18NLangDir():
d = wx.GetApp().locale.GetCanonicalName()
path = toPyPath(os.path.join('locale', d))
if not os.path.exists(path):
if '_' in d:
path = toPyPath(os.path.join('locale', d.split('_', 1)[0]))
if not os.path.exists(path):
return ''
else:
return ''
return path
def showTip(frame, forceShow=0):
""" Displays tip of the day.
Driven from and updates config file
"""
try:
conf = createAndReadConfig('Explorer')
except IOError:
conf = None
showTip, index = (1, 0)
else:
showTip = conf.getboolean('tips', 'showonstartup')
index = conf.getint('tips', 'tipindex')
if showTip or forceShow:
# try to find translated tips
tipsDir = getI18NLangDir()
if not tipsDir:
tipsFile = toPyPath('Docs/tips.txt')
else:
tipsFile = tipsDir+'/tips.txt'
if not os.path.exists(tipsFile):
tipsFile = toPyPath('Docs/tips.txt')
tp = wx.CreateFileTipProvider(tipsFile, index)
showTip = wx.ShowTip(frame, tp, showTip)
index = tp.GetCurrentTip()
if conf:
conf.set('tips', 'showonstartup', showTip and 'true' or 'false')
conf.set('tips', 'tipindex', str(index))
try:
writeConfig(conf)
except IOError:
wx.LogError(_('Could not edit tips settings, please make '
'sure that the Explorer.*.cfg file is not read only and you '
'have sufficient priviledges to write to this file.'))
def readTextFromClipboard():
clip = wx.TheClipboard
clip.Open()
try:
data = wx.TextDataObject()
clip.GetData(data)
return data.GetText()
finally:
clip.Close()
def writeTextToClipboard(text):
clip = wx.TheClipboard
clip.Open()
try:
clip.SetData(wx.TextDataObject(text))
finally:
clip.Close()
_sharedConfs = {}
def createAndReadConfig(name, forPlatform=1):
""" Return an initialised ConfigFile object """
confFile = os.path.join(Preferences.rcPath, '%s%s.cfg' % (name,
forPlatform and '.'+Preferences.thisPlatform or ''))
if not confFile in _sharedConfs:
conf = ConfigParser()
conf.read(confFile)
conf.confFile = confFile
_sharedConfs[confFile] = conf
return _sharedConfs[confFile]
def writeConfig(conf):
conf.write(open(conf.confFile, 'w'))
import wx.html
wxEVT_HTML_URL_CLICK = wx.NewId()
EVT_HTML_URL_CLICK = wx.PyEventBinder(wxEVT_HTML_URL_CLICK)
class wxHtmlWindowUrlClick(wx.PyEvent):
def __init__(self, linkinfo):
wx.PyEvent.__init__(self)
self.SetEventType(wxEVT_HTML_URL_CLICK)
self.linkinfo = (linkinfo.GetHref(), linkinfo.GetTarget())
class wxUrlClickHtmlWindow(wx.html.HtmlWindow):
""" HTML window that generates and OnLinkClicked event.
Use this to avoid having to override HTMLWindow
"""
def OnLinkClicked(self, linkinfo):
wx.PostEvent(self, wxHtmlWindowUrlClick(linkinfo))
def wxProxyPanel(parent, Win, *args, **kwargs):
""" Function which put's a panel in between two controls.
Mainly for better repainting under GTK.
Based on a pattern by Kevin Gill.
"""
panel = wx.Panel(parent, -1, style=wx.TAB_TRAVERSAL | wx.CLIP_CHILDREN)
if type(Win) is types.ClassType or type(Win) is types.TypeType:
win = Win(*((panel,) + args), **kwargs)
elif isinstance(Win, wx.Window):
win = Win
win.Reparent(panel)
else:
raise Exception, _('Unhandled type for Win')
def OnWinSize(evt, win=win):
win.SetSize(evt.GetSize())
panel.Bind(wx.EVT_SIZE, OnWinSize)
return panel, win
def IsComEnabled():
if Preferences.blockCOM: return False
try:
import win32com
except ImportError:
return False
else:
return True
import stat, shutil
skipdirs = ('CVS',)
dofiles = ('.py',)
def updateFile(src, dst):
if not os.path.isdir(src):
if os.path.splitext(src)[-1] in dofiles and \
( not os.path.exists(dst) or \
os.stat(dst)[stat.ST_MTIME] < os.stat(src)[stat.ST_MTIME]):
print 'copying', src, dst
shutil.copy2(src, dst)
def updateDir(src, dst):
""" Traverse src and assures that dst is up to date """
os.path.walk(src, visit_update, (src, dst) )
def visit_update(paths, dirname, names):
src, dst = paths
reldir = dirname[len(src)+1:]
if reldir:
dstdirname = os.path.join(dst, reldir)
else:
dstdirname = dst
if os.path.basename(dirname) in skipdirs:
return
if not os.path.exists(dstdirname):
print 'creating', dstdirname
os.makedirs(dstdirname)
for name in names:
srcname = os.path.join(dirname, name)
dstname = os.path.join(dstdirname, name)
updateFile(srcname, dstname)
def get_current_frame():
try:
Exception, 'get_exc_info'
except:
return sys.exc_info()[2].tb_frame.f_back
def descr_frame(frame):
if frame: return ('<frame:%s(%s)%s [%s]>'%(
os.path.basename(frame.f_code.co_filename), frame.f_lineno,
frame.f_code.co_name, id(frame)) )
else: return 'None'
padWidth = 80
pad = padWidth*' '
class PseudoFile:
""" Base class for file like objects to facilitate StdOut for the Shell."""
def __init__(self, output = None):
if output is None: output = []
self.output = output
def writelines(self, l):
map(self.write, l)
def write(self, s):
pass
def flush(self):
pass
def isatty(self):
return False
class PseudoFileOutStore(PseudoFile):
""" File like obj with list storage """
def write(self, s):
self.output.append(s)
def read(self):
return ''.join(self.output)
class LoggerPF(PseudoFile):
""" Base class for logging file like objects """
def pad(self, s):
padded = s + pad
return padded[:padWidth] + padded[padWidth:].strip()
class OutputLoggerPF(LoggerPF):
""" Logs stdout to wxLog functions"""
def write(self, s):
if s.strip():
if Preferences.recordModuleCallPoint:
frame = get_current_frame()
ss = s.strip()+ ' : <<%s, %d>>' % (
frame.f_back.f_code.co_filename,
frame.f_back.f_lineno,)
else:
ss = s
wx.LogMessage(self.pad(ss).replace('%', '%%'))
sys.__stdout__.write(s)
# XXX Should try to recognise warnings
# Match start against [v for k, v in __builtins__.items() if type(v) is types.ClassType and issubclass(v, Warning)]
class ErrorLoggerPF(LoggerPF):
""" Logs stderr to wxLog functions"""
def write(self, s):
if not hasattr(self, 'buffer'):
self.buffer = ''
if s == ' ':
self.buffer = s
elif s[-1] != '\n':
self.buffer = self.buffer + s
else:
wx.LogError(self.pad(self.buffer+s[:-1]).replace('%', '%%'))
sys.__stderr__.write(s)
def installErrOutLoggers():
sys.stdout = OutputLoggerPF()
sys.stderr = ErrorLoggerPF()
def uninstallErrOutLoggers():
sys.stdout = sys.__stdout__
sys.stderr = sys.__stderr__
def getCtrlsFromDialog(dlg, className):
""" Returns children of given class from dialog.
This is useful for standard dialogs that does not expose their children """
return filter(lambda d, cn=className: d.__class__.__name__ == cn,
dlg.GetChildren())
def html2txt(htmlblock):
import htmllib, formatter, StringIO
s = StringIO.StringIO('')
w = formatter.DumbWriter(s)
f = formatter.AbstractFormatter(w)
p = htmllib.HTMLParser(f)
p.feed(htmlblock)
return s.getvalue().strip()
def getEntireWxNamespace():
""" Return a dictionary containing the entire (non filtered) wxPython
namespace """
modules = ['activex', 'animate', 'aui', 'calendar', 'combo', 'dataview',
'gizmos', 'glcanvas', 'grid', 'html', 'html2', 'media',
'propgrid', 'richtext', 'stc', 'webkit', 'wizard', 'wx']
namespace = {}
for module in modules:
try:
exec('from wx import %s' % module)
except ImportError:
pass
else:
namespace.update(locals()[module].__dict__)
return namespace
class FrameRestorerMixin:
""" Used by top level windows to restore from gidden or iconised state
and to load and persist window dimensions
Classes using the mixin must define self.setDefaultDimensions()
To be able to save, a winConfOption attr must be defined.
"""
confFile = 'Explorer'
confSection = 'windowdims'
frameRestorerWindows = {}
def restore(self):
self.Show()
if self.IsIconized():
self.Iconize(False)
self.Raise()
def setDimensions(self, dims):
if None in dims:
if dims[0] is None:
if dims[1] is not None:
self.SetClientSize(tuple(dims[1:]))
else:
self.SetPosition(tuple(dims[:-1]))
else:
self.SetDimensions(*dims)
def getDimensions(self):
pos = self.GetPosition().Get()
size = self.GetSize().Get()
return pos + size
def loadDims(self):
conf = createAndReadConfig(self.confFile)
if not conf.has_option(self.confSection, self.winConfOption):
dims = None
else:
dims = eval(conf.get(self.confSection , self.winConfOption),
{'wxSize': wx.Size, 'wxPoint': wx.Point,
'wxDefaultSize': wx.DefaultSize,
'wxDefaultPosition': wx.DefaultPosition,
'wx': wx})
if dims:
self.setDimensions(dims)
else:
self.setDefaultDimensions()
self.frameRestorerWindows[self.winConfOption] = self
def saveDims(self, dims=()):
if dims == ():
dims = self.getDimensions()
conf = createAndReadConfig(self.confFile)
conf.set(self.confSection, self.winConfOption, `dims`)
writeConfig(conf)
def restoreDefDims(self):
self.saveDims(None)
self.loadDims()
def callOnFrameRestorers(method):
for name, window in FrameRestorerMixin.frameRestorerWindows.items():
if not window:
del FrameRestorerMixin.frameRestorerWindows[name]
else:
method(window)
def setupCloseWindowOnEscape(win):
def OnCloseWin(event, win=win): win.Close()
wxID_CLOSEWIN = wx.NewId()
win.Bind(wx.EVT_MENU, OnCloseWin, id=wxID_CLOSEWIN)
return (wx.ACCEL_NORMAL, wx.WXK_ESCAPE, wxID_CLOSEWIN)
def getModelBaseDir(model):
if hasattr(model, 'app') and model.app and model.app.savedAs:
return os.path.dirname(model.app.filename)
elif model.savedAs:
return os.path.dirname(model.filename)
else:
return ''
def pathRelativeToModel(path, model):
from relpath import relpath
mbd = getModelBaseDir(model)
if mbd:
return relpath(mbd, path)
else:
return path
class BottomAligningSplitterMix:
""" Mixin class that keeps the bottom window in a splitter at a constant height """
def __init__(self):
self.Bind(wx.EVT_SIZE, self._OnSplitterwindowSize)
self.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGED, self._OnSplitterwindowSplitterSashPosChanged, id=self.GetId())
self.Bind(wx.EVT_SPLITTER_DOUBLECLICKED, self._OnSplitterwindowSplitterDoubleclicked, id=self.GetId())
sashsize = self.GetSashSize()
self.SetMinimumPaneSize(sashsize)
sashpos = self.GetClientSize().y - sashsize
self.SetSashPosition(sashpos)
self._win2sze = self._getWin2Sze()
def bottomWindowIsOpen(self):
return self.GetSashPosition()+1 != self.GetClientSize().y - self.GetSashSize()
def openBottomWindow(self):
self.SetSashPosition(
int(self.GetClientSize().y *(1.0-Preferences.eoErrOutWindowHeightPerc)))
self._win2sze = self._getWin2Sze()
def closeBottomWindow(self):
self.SetSashPosition(self.GetClientSize().y - self.GetSashSize())
self._win2sze = self._getWin2Sze()
def _getWin2Sze(self):
win2 = self.GetWindow2()
if win2 : return win2.GetSize().y
else: return 0
def _OnSplitterwindowSize(self, event):
sashpos = self.GetClientSize().y - self._win2sze - self.GetSashSize()
self.SetSashPosition(sashpos)
if event: event.Skip()
def _OnSplitterwindowSplitterSashPosChanged(self, event):
self._win2sze = self._getWin2Sze()
if event: event.Skip()
def _OnSplitterwindowSplitterDoubleclicked(self, event):
if self.bottomWindowIsOpen():
self.closeBottomWindow()
else:
self.openBottomWindow()
if event: event.Skip()
class BottomAligningSplitterWindow(wx.SplitterWindow, BottomAligningSplitterMix):
def __init__(self, *_args, **_kwargs):
wx.SplitterWindow.__init__(*((self,)+_args), **_kwargs)
BottomAligningSplitterMix.__init__(self)
def traverseTreeCtrl(tree, treeItem, func):
func(tree, treeItem)
item, cookie = tree.GetFirstChild(treeItem)
while item.IsOk():
traverseTreeCtrl(tree, item, func)
item, cookie = tree.GetNextChild(item, cookie)
class ListCtrlLabelEditFixEH(wx.EvtHandler):
"""Fixes broken LabelEdit/Cursor behaviour on MSW
Add in constructor:
ListCtrlLabelEditFixEH(<control>)
Add in destructor:
<control>.PopEventHandler(True)
"""
wxEVT_CTRLEDIT = wx.NewId()
def __init__(self, listCtrl):
wx.EvtHandler.__init__(self)
self._blockMouseEdit = False
self.listCtrl = listCtrl
listCtrl.Bind(wx.EVT_LIST_BEGIN_LABEL_EDIT, self.OnBeginLabelEdit, id=listCtrl.GetId())
listCtrl.PushEventHandler(self)
def OnBeginLabelEdit(self, event):
if not self._blockMouseEdit and wx.Platform == '__WXMSW__':
event.Veto()
wx.CallAfter(self.ctrlLabelEdit, event.GetIndex())
else:
self._blockMouseEdit = False
event.Skip()
def ctrlLabelEdit(self, idx):
self._blockMouseEdit = True
self.listCtrl.EditLabel(idx)
SEL_FOC = wx.LIST_STATE_SELECTED | wx.LIST_STATE_FOCUSED
def selectBeforePopup(event):
"""Ensures the item the mouse is pointing at is selected before a popup.
Works with both single-select and multi-select lists."""
ctrl = event.GetEventObject()
if isinstance(ctrl, wx.ListCtrl):
n, flags = ctrl.HitTest(event.GetPosition())
if n >= 0:
if not ctrl.GetItemState(n, wx.LIST_STATE_SELECTED):
if not (ctrl.GetWindowStyleFlag() & wx.LC_SINGLE_SEL):
# Clear selection if multi-select.
for i in range(ctrl.GetItemCount()):
ctrl.SetItemState(i, 0, SEL_FOC)
ctrl.SetItemState(n, SEL_FOC, SEL_FOC)
def getListCtrlSelection(listctrl, state=wx.LIST_STATE_SELECTED):
""" Returns list of item indexes of given state """
res = []
idx = -1
while 1:
idx = listctrl.GetNextItem(idx, wx.LIST_NEXT_ALL, state)
if idx == -1:
break
res.append(idx)
return res
class ListCtrlSelectionManagerMix:
"""Mixin that defines a platform independent selection policy
As selection single and multi-select list return the item index or a
list of item indexes respectively.
"""
wxEVT_DOPOPUPMENU = wx.NewId()
_menu = None
def __init__(self):
self.Bind(wx.EVT_RIGHT_DOWN, self.OnLCSMRightDown)
self.Connect(-1, -1, self.wxEVT_DOPOPUPMENU, self.OnLCSMDoPopup)
def getPopupMenu(self):
""" Override to implement dynamic menus (create) """
return self._menu
def setPopupMenu(self, menu):
""" Must be set for default behaviour """
self._menu = menu
def afterPopupMenu(self, menu):
""" Override to implement dynamic menus (destroy) """
pass
def getSelection(self):
res = getListCtrlSelection(self)
if self.GetWindowStyleFlag() & wx.LC_SINGLE_SEL:
if res:
return res[0]
else:
return -1
else:
return res
def OnLCSMRightDown(self, event):
selectBeforePopup(event)
menu = self.getPopupMenu()
#event.Skip()
if menu:
# XXX
self.PopupMenu(menu, event.GetPosition())
self.afterPopupMenu(menu)
return
evt = wx.PyEvent()
evt.SetEventType(self.wxEVT_DOPOPUPMENU)
evt.menu = menu
evt.pos = event.GetPosition()
wx.PostEvent(self, evt)
def OnLCSMDoPopup(self, event):
self.PopupMenu(event.menu, event.pos)
self.afterPopupMenu(event.menu)
### Does this version leak event handlers?
##def wxCallAfter(callable, *args, **kw):
## handler, evtType = wx.EvtHandler(), wx.NewId()
## handler.Connect(-1, -1, evtType, lambda event, handler=handler,
## callable=callable, args=args, kw=kw: callable(*args, **kw) )
## evt = wx.PyEvent()
## evt.SetEventType(evtType)
## wx.PostEvent(handler, evt)
##
##_wxCallAfterId = None
##def wxCallAfter(callable, *args, **kw):
## app = wx.GetApp()
## assert app, 'No wxApp created yet'
##
## global _wxCallAfterId
## if _wxCallAfterId is None:
## _wxCallAfterId = wx.NewId()
## app.Connect(-1, -1, _wxCallAfterId,
## lambda event: event.callable(*event.args, **event.kw) )
## evt = wx.PyEvent()
## evt.SetEventType(_wxCallAfterId)
## evt.callable = callable
## evt.args = args
## evt.kw = kw
## wx.PostEvent(app, evt)
def getIndentBlock():
if Preferences.STCUseTabs:
return '\t'
else:
return Preferences.STCIndent*' '
def getIndentedStrForLen(n):
if Preferences.STCUseTabs:
d, m = divmod(n, Preferences.STCTabWidth)
if m:
d += 1
return '\t'*d
else:
return n*' '
#-------------------------------------------------------------------------------
def canReadStream(stream):
try:
return stream.CanRead()
except AttributeError:
return not stream.eof()
def find_dotted_module(name, path=None):
import imp
segs = name.split('.')
file = None
while segs:
if file: file.close()
file, filename, desc = imp.find_module(segs[0], path)
del segs[0]
path = [filename]
return file, filename, desc
def appendMenuItem(menu, wId, label, code=(), bmp='', help=''):
# XXX Add kind=wx.ITEM_NORMALwhen 2.3.3 is minimum.
text = label + (code and ' \t'+code[2] or '')
menuItem = wx.MenuItem(menu, wId, text, help)
if Preferences.editorMenuImages and bmp and bmp != '-':
if wx.Platform == '__WXGTK__' and wx.VERSION >= (2,3,3) or \
wx.Platform == '__WXMSW__':
menuItem.SetBitmap(Preferences.IS.load(bmp))
menu.AppendItem(menuItem)
def getNotebookPage(notebook, name):
for i in range(notebook.GetPageCount()):
if notebook.GetPageText(i) == name:
return i
return -1
def getViewTitle(view):
if hasattr(view, 'viewTitle'):
return view.viewTitle
else:
return view.viewName
# reset all sizes to platform defaults
def resetMinSize(parent, ignoreCtrls=(), ignoreClasses=()):
# need this for some cases in linux, otherwise cuts off text
if wx.Platform == '__WXGTK__' and isinstance(parent, wx.StaticText):
textSize = parent.GetTextExtent(parent.GetLabel())
size = wx.Size(textSize[0]+2,-1)
else:
size = wx.DefaultSize
parent.SetMinSize(size)
parent.SetSize(wx.Size(1, 1))
for child in parent.GetChildren():
if child not in ignoreCtrls and not isinstance(child, ignoreClasses):
resetMinSize(child, ignoreCtrls, ignoreClasses)
def wxPyExceptHook(type, value, trace):
if wx and sys and traceback:
exc = traceback.format_exception(type, value, trace)
for e in exc:
wx.LogError(e)
sys.__excepthook__(type, value, trace)
#-------------------------------------------------------------------------------
coding_re = re.compile("coding[:=]\s*([-\w_.]+)")
def coding_spec(str):
"""Return the encoding declaration according to PEP 263.
Raise LookupError if the encoding is declared but unknown.
"""
# Only consider the first two lines
str = str.split("\n", 2)[:2]
str = "\n".join(str)
match = coding_re.search(str)
if not match:
return None
name = match.group(1)
# Check whether the encoding is known
import codecs
try:
codecs.lookup(name)
except LookupError:
# The standard encoding error does not indicate the encoding
raise LookupError, _('Unknown encoding %s')%name
return name
unicodeErrorMsg = 'Please change the defaultencoding in sitecustomize.py or '\
'use Boa command-line parameter -U handle this encoding.\nError message %s'
def stringFromControl(u):
try: wx.USE_UNICODE, UnicodeError
except (AttributeError, NameError): return u
if wx.USE_UNICODE:
try:
return str(u)
except UnicodeError, err:
try:
spec = coding_spec(u)
if spec is None:
raise
return u.encode(spec)
except UnicodeError, err:
try:
s = _('Unable to encode unicode string, please change '\
'the defaultencoding in sitecustomize.py to handle this '\
'encoding.\nError message %s')%str(err)
except UnicodeError, err:
raise Exception, 'Unable to encode unicode string, please change '\
'the defaultencoding in sitecustomize.py to handle this '\
'encoding.\nError message %s'%str(err)
else:
raise Exception, s
else:
return u
def stringToControl(s, safe=False):
try: wx.USE_UNICODE, UnicodeError
except (AttributeError, NameError): return s
if wx.USE_UNICODE:
try:
if safe:
return s.decode(sys.getdefaultencoding(), 'ignore')
else:
return unicode(s)
except UnicodeError, err:
try:
spec = coding_spec(s)
if spec is None:
raise
return s.decode(spec)
except UnicodeError, err:
try:
s = _('Unable to decode unicode string, please change '\
'the defaultencoding in sitecustomize.py to handle this '\
'encoding.\n Error message %s')
except UnicodeError, err:
raise Exception, 'Unable to decode unicode string, please change '\
'the defaultencoding in sitecustomize.py to handle this '\
'encoding.\n Error message %s'%str(err)
else:
raise Exception, s
else:
return s