author | Laurent Bessard |
Thu, 16 May 2013 00:00:35 +0200 | |
changeset 1150 | b1c84771e1cf |
parent 1104 | 017cd95bc07e |
child 1511 | 91538d0c242c |
permissions | -rw-r--r-- |
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
1 |
#!/usr/bin/env python |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
2 |
# -*- coding: utf-8 -*- |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
3 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
4 |
import wx |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
5 |
import wx.stc |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
6 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
7 |
if wx.Platform == '__WXMSW__': |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
8 |
faces = { 'times': 'Times New Roman', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
9 |
'mono' : 'Courier New', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
10 |
'helv' : 'Arial', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
11 |
'other': 'Comic Sans MS', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
12 |
'size' : 10, |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
13 |
} |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
14 |
else: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
15 |
faces = { 'times': 'Times', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
16 |
'mono' : 'Courier', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
17 |
'helv' : 'Helvetica', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
18 |
'other': 'new century schoolbook', |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
19 |
'size' : 12, |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
20 |
} |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
21 |
|
1104
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
22 |
NAVIGATION_KEYS = [ |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
23 |
wx.WXK_END, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
24 |
wx.WXK_HOME, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
25 |
wx.WXK_LEFT, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
26 |
wx.WXK_UP, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
27 |
wx.WXK_RIGHT, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
28 |
wx.WXK_DOWN, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
29 |
wx.WXK_PAGEUP, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
30 |
wx.WXK_PAGEDOWN, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
31 |
wx.WXK_NUMPAD_HOME, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
32 |
wx.WXK_NUMPAD_LEFT, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
33 |
wx.WXK_NUMPAD_UP, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
34 |
wx.WXK_NUMPAD_RIGHT, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
35 |
wx.WXK_NUMPAD_DOWN, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
36 |
wx.WXK_NUMPAD_PAGEUP, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
37 |
wx.WXK_NUMPAD_PAGEDOWN, |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
38 |
wx.WXK_NUMPAD_END] |
017cd95bc07e
Added support for excluding code section headers to be modified in CodeFileEditor
Laurent Bessard
parents:
1092
diff
changeset
|
39 |
|
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
40 |
def GetCursorPos(old, new): |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
41 |
if old == "": |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
42 |
return 0 |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
43 |
old_length = len(old) |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
44 |
new_length = len(new) |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
45 |
common_length = min(old_length, new_length) |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
46 |
i = 0 |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
47 |
for i in xrange(common_length): |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
48 |
if old[i] != new[i]: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
49 |
break |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
50 |
if old_length < new_length: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
51 |
if common_length > 0 and old[i] != new[i]: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
52 |
return i + new_length - old_length |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
53 |
else: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
54 |
return i + new_length - old_length + 1 |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
55 |
elif old_length > new_length or i < min(old_length, new_length) - 1: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
56 |
if common_length > 0 and old[i] != new[i]: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
57 |
return i |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
58 |
else: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
59 |
return i + 1 |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
60 |
else: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
61 |
return None |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
62 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
63 |
class CustomStyledTextCtrl(wx.stc.StyledTextCtrl): |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
64 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
65 |
def __init__(self, *args, **kwargs): |
1092 | 66 |
wx.stc.StyledTextCtrl.__init__(self, *args, **kwargs) |
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
67 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
68 |
self.Bind(wx.EVT_MOTION, self.OnMotion) |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
69 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
70 |
def OnMotion(self, event): |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
71 |
if wx.Platform == '__WXMSW__': |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
72 |
if not event.Dragging(): |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
73 |
x, y = event.GetPosition() |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
74 |
margin_width = reduce( |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
75 |
lambda x, y: x + y, |
1092 | 76 |
[self.GetMarginWidth(i) |
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
77 |
for i in xrange(3)], |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
78 |
0) |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
79 |
if x <= margin_width: |
1092 | 80 |
self.SetCursor(wx.StockCursor(wx.CURSOR_ARROW)) |
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
81 |
else: |
1092 | 82 |
self.SetCursor(wx.StockCursor(wx.CURSOR_IBEAM)) |
83 |
else: |
|
84 |
event.Skip() |
|
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
85 |
else: |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
86 |
event.Skip() |
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
87 |
|
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
88 |
def AppendText(self, text): |
1092 | 89 |
self.GotoPos(self.GetLength()) |
1091
5f612651d227
Fixed bug with margin cursor in StyledTextCtrl on Windows
Laurent Bessard
parents:
diff
changeset
|
90 |
self.AddText(text) |