1 """EditWindow class."""
3 __author__
= "Patrick K. O'Brien <pobrien@orbtech.com>"
5 __revision__
= "$Revision$"[11:-2]
16 from version
import VERSION
24 if wx
.Platform
== '__WXMSW__':
25 FACES
= { 'times' : 'Times New Roman',
26 'mono' : 'Courier New',
27 'helv' : 'Lucida Console',
28 'lucida' : 'Lucida Console',
29 'other' : 'Comic Sans MS',
35 FACES
= { 'times' : 'Times',
38 'other' : 'new century schoolbook',
45 class EditWindow(stc
.StyledTextCtrl
):
46 """EditWindow based on StyledTextCtrl."""
48 revision
= __revision__
50 def __init__(self
, parent
, id=-1, pos
=wx
.DefaultPosition
,
51 size
=wx
.DefaultSize
, style
=wx
.CLIP_CHILDREN | wx
.SUNKEN_BORDER
):
52 """Create EditWindow instance."""
53 stc
.StyledTextCtrl
.__init
__(self
, parent
, id, pos
, size
, style
)
55 stc
.EVT_STC_UPDATEUI(self
, id, self
.OnUpdateUI
)
56 dispatcher
.connect(receiver
=self
._fontsizer
, signal
='FontIncrease')
57 dispatcher
.connect(receiver
=self
._fontsizer
, signal
='FontDecrease')
58 dispatcher
.connect(receiver
=self
._fontsizer
, signal
='FontDefault')
60 def _fontsizer(self
, signal
):
61 """Receiver for Font* signals."""
63 if signal
== 'FontIncrease':
65 elif signal
== 'FontDecrease':
67 elif signal
== 'FontDefault':
72 """Configure shell based on user preferences."""
73 self
.SetMarginType(1, stc
.STC_MARGIN_NUMBER
)
74 self
.SetMarginWidth(1, 40)
76 self
.SetLexer(stc
.STC_LEX_PYTHON
)
77 self
.SetKeyWords(0, ' '.join(keyword
.kwlist
))
80 self
.SetViewWhiteSpace(False)
82 self
.SetUseTabs(False)
83 # Do we want to automatically pop up command completion options?
84 self
.autoComplete
= True
85 self
.autoCompleteIncludeMagic
= True
86 self
.autoCompleteIncludeSingle
= True
87 self
.autoCompleteIncludeDouble
= True
88 self
.autoCompleteCaseInsensitive
= True
89 self
.AutoCompSetIgnoreCase(self
.autoCompleteCaseInsensitive
)
90 self
.autoCompleteAutoHide
= True
91 self
.AutoCompSetAutoHide(self
.autoCompleteAutoHide
)
92 self
.AutoCompStops(' .,;:([)]}\'"\\<>%^&+-=*/|`')
93 # Do we want to automatically pop up command argument help?
94 self
.autoCallTip
= True
95 self
.CallTipSetBackground(wx
.Colour(255, 255, 232))
96 self
.SetWrapMode(False)
98 self
.SetEndAtLastLine(False)
99 except AttributeError:
102 def setStyles(self
, faces
):
103 """Configure font size, typeface and color for lexer."""
106 self
.StyleSetSpec(stc
.STC_STYLE_DEFAULT
,
107 "face:%(mono)s,size:%(size)d,back:%(backcol)s" % \
113 self
.StyleSetSpec(stc
.STC_STYLE_LINENUMBER
,
114 "back:#C0C0C0,face:%(mono)s,size:%(lnsize)d" % faces
)
115 self
.StyleSetSpec(stc
.STC_STYLE_CONTROLCHAR
,
116 "face:%(mono)s" % faces
)
117 self
.StyleSetSpec(stc
.STC_STYLE_BRACELIGHT
,
118 "fore:#0000FF,back:#FFFF88")
119 self
.StyleSetSpec(stc
.STC_STYLE_BRACEBAD
,
120 "fore:#FF0000,back:#FFFF88")
123 self
.StyleSetSpec(stc
.STC_P_DEFAULT
,
124 "face:%(mono)s" % faces
)
125 self
.StyleSetSpec(stc
.STC_P_COMMENTLINE
,
126 "fore:#007F00,face:%(mono)s" % faces
)
127 self
.StyleSetSpec(stc
.STC_P_NUMBER
,
129 self
.StyleSetSpec(stc
.STC_P_STRING
,
130 "fore:#7F007F,face:%(mono)s" % faces
)
131 self
.StyleSetSpec(stc
.STC_P_CHARACTER
,
132 "fore:#7F007F,face:%(mono)s" % faces
)
133 self
.StyleSetSpec(stc
.STC_P_WORD
,
135 self
.StyleSetSpec(stc
.STC_P_TRIPLE
,
137 self
.StyleSetSpec(stc
.STC_P_TRIPLEDOUBLE
,
138 "fore:#000033,back:#FFFFE8")
139 self
.StyleSetSpec(stc
.STC_P_CLASSNAME
,
141 self
.StyleSetSpec(stc
.STC_P_DEFNAME
,
143 self
.StyleSetSpec(stc
.STC_P_OPERATOR
,
145 self
.StyleSetSpec(stc
.STC_P_IDENTIFIER
,
147 self
.StyleSetSpec(stc
.STC_P_COMMENTBLOCK
,
149 self
.StyleSetSpec(stc
.STC_P_STRINGEOL
,
150 "fore:#000000,face:%(mono)s,back:#E0C0E0,eolfilled" % faces
)
152 def OnUpdateUI(self
, event
):
153 """Check for matching braces."""
154 # If the auto-complete window is up let it do its thing.
155 if self
.AutoCompActive() or self
.CallTipActive():
160 caretPos
= self
.GetCurrentPos()
162 charBefore
= self
.GetCharAt(caretPos
- 1)
163 styleBefore
= self
.GetStyleAt(caretPos
- 1)
166 if charBefore
and chr(charBefore
) in '[]{}()' \
167 and styleBefore
== stc
.STC_P_OPERATOR
:
168 braceAtCaret
= caretPos
- 1
172 charAfter
= self
.GetCharAt(caretPos
)
173 styleAfter
= self
.GetStyleAt(caretPos
)
174 if charAfter
and chr(charAfter
) in '[]{}()' \
175 and styleAfter
== stc
.STC_P_OPERATOR
:
176 braceAtCaret
= caretPos
178 if braceAtCaret
>= 0:
179 braceOpposite
= self
.BraceMatch(braceAtCaret
)
181 if braceAtCaret
!= -1 and braceOpposite
== -1:
182 self
.BraceBadLight(braceAtCaret
)
184 self
.BraceHighlight(braceAtCaret
, braceOpposite
)
187 """Return True if text is selected and can be copied."""
188 return self
.GetSelectionStart() != self
.GetSelectionEnd()
191 """Return True if text is selected and can be cut."""
192 return self
.CanCopy() and self
.CanEdit()
195 """Return True if editing should succeed."""
196 return not self
.GetReadOnly()
199 """Return True if pasting should succeed."""
200 return stc
.StyledTextCtrl
.CanPaste(self
) and self
.CanEdit()