]>
Commit | Line | Data |
---|---|---|
f97d84a6 RD |
1 | //////////////////////////////////////////////////////////////////////////// |
2 | // Name: stc.cpp | |
3 | // Purpose: A wxWindows implementation of Scintilla. This class is the | |
4 | // one meant to be used directly by wx applications. It does not | |
5 | // derive directly from the Scintilla classes, but instead | |
6 | // delegates most things to the real Scintilla class. | |
7 | // This allows the use of Scintilla without polluting the | |
8 | // namespace with all the classes and identifiers from Scintilla. | |
9 | // | |
10 | // Author: Robin Dunn | |
11 | // | |
12 | // Created: 13-Jan-2000 | |
13 | // RCS-ID: $Id$ | |
14 | // Copyright: (c) 2000 by Total Control Software | |
15 | // Licence: wxWindows license | |
16 | ///////////////////////////////////////////////////////////////////////////// | |
17 | ||
18 | #include <ctype.h> | |
19 | ||
20 | #include "wx/stc/stc.h" | |
21 | #include "ScintillaWX.h" | |
22 | ||
23 | #include <wx/tokenzr.h> | |
24 | ||
25 | // The following code forces a reference to all of the Scintilla lexers. | |
26 | // If we don't do something like this, then the linker tends to "optimize" | |
27 | // them away. (eric@sourcegear.com) | |
28 | ||
29 | int wxForceScintillaLexers(void) | |
30 | { | |
65ec6247 RD |
31 | extern LexerModule lmAda; |
32 | extern LexerModule lmAVE; | |
33 | extern LexerModule lmConf; | |
f97d84a6 | 34 | extern LexerModule lmCPP; |
65ec6247 | 35 | extern LexerModule lmEiffel; |
f97d84a6 | 36 | extern LexerModule lmHTML; |
65ec6247 RD |
37 | extern LexerModule lmLISP; |
38 | extern LexerModule lmLua; | |
39 | extern LexerModule lmBatch; // In LexOthers.cxx | |
40 | extern LexerModule lmPascal; | |
f97d84a6 RD |
41 | extern LexerModule lmPerl; |
42 | extern LexerModule lmPython; | |
65ec6247 | 43 | extern LexerModule lmRuby; |
f97d84a6 RD |
44 | extern LexerModule lmSQL; |
45 | extern LexerModule lmVB; | |
46 | ||
65ec6247 RD |
47 | if ( &lmAda |
48 | && &lmAVE | |
49 | && &lmConf | |
50 | && &lmCPP | |
51 | && &lmEiffel | |
52 | && &lmHTML | |
53 | && &lmLISP | |
54 | && &lmLua | |
55 | && &lmBatch | |
56 | && &lmPascal | |
57 | && &lmPerl | |
58 | && &lmPython | |
59 | && &lmRuby | |
60 | && &lmSQL | |
61 | && &lmVB ) | |
f97d84a6 RD |
62 | { |
63 | return 1; | |
64 | } | |
65 | else | |
66 | { | |
67 | return 0; | |
68 | } | |
69 | } | |
70 | ||
71 | //---------------------------------------------------------------------- | |
72 | ||
73 | const wxChar* wxSTCNameStr = "stcwindow"; | |
74 | ||
d25f5fbb RD |
75 | DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE ) |
76 | DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED ) | |
77 | DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED ) | |
d25f5fbb RD |
78 | DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED ) |
79 | DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT ) | |
80 | DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT ) | |
65ec6247 | 81 | DEFINE_EVENT_TYPE( wxEVT_STC_KEY ) |
d25f5fbb | 82 | DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK ) |
65ec6247 | 83 | DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI ) |
d25f5fbb | 84 | DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED ) |
d25f5fbb RD |
85 | DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD ) |
86 | DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK ) | |
87 | DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN ) | |
88 | DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED ) | |
65ec6247 RD |
89 | DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED ) |
90 | DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION ) | |
91 | DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED ) | |
92 | DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART ) | |
93 | DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND ) | |
94 | ||
95 | ||
d25f5fbb RD |
96 | |
97 | ||
f97d84a6 RD |
98 | BEGIN_EVENT_TABLE(wxStyledTextCtrl, wxControl) |
99 | EVT_PAINT (wxStyledTextCtrl::OnPaint) | |
100 | EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin) | |
101 | EVT_SIZE (wxStyledTextCtrl::OnSize) | |
102 | EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown) | |
4ceb1196 RD |
103 | #ifdef __WXMSW__ |
104 | // Let Scintilla see the double click as a second click | |
105 | EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown) | |
106 | #endif | |
f97d84a6 RD |
107 | EVT_MOTION (wxStyledTextCtrl::OnMouseMove) |
108 | EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp) | |
65ec6247 | 109 | EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu) |
37d62433 | 110 | EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel) |
f97d84a6 RD |
111 | EVT_CHAR (wxStyledTextCtrl::OnChar) |
112 | EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown) | |
113 | EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus) | |
114 | EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus) | |
115 | EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged) | |
116 | EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground) | |
117 | EVT_MENU_RANGE (-1, -1, wxStyledTextCtrl::OnMenu) | |
118 | EVT_LISTBOX_DCLICK (-1, wxStyledTextCtrl::OnListBox) | |
119 | END_EVENT_TABLE() | |
120 | ||
121 | ||
122 | IMPLEMENT_CLASS(wxStyledTextCtrl, wxControl) | |
123 | IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent, wxCommandEvent) | |
124 | ||
125 | //---------------------------------------------------------------------- | |
126 | // Constructor and Destructor | |
127 | ||
128 | wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent, | |
129 | wxWindowID id, | |
130 | const wxPoint& pos, | |
131 | const wxSize& size, | |
132 | long style, | |
133 | const wxString& name) : | |
134 | wxControl(parent, id, pos, size, | |
135 | style | wxVSCROLL | wxHSCROLL | wxWANTS_CHARS | wxCLIP_CHILDREN, | |
136 | wxDefaultValidator, name) | |
137 | { | |
138 | m_swx = new ScintillaWX(this); | |
139 | m_stopWatch.Start(); | |
d6582821 | 140 | m_lastKeyDownConsumed = FALSE; |
f97d84a6 RD |
141 | } |
142 | ||
143 | ||
144 | wxStyledTextCtrl::~wxStyledTextCtrl() { | |
145 | delete m_swx; | |
146 | } | |
147 | ||
148 | ||
149 | //---------------------------------------------------------------------- | |
150 | ||
151 | long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) { | |
152 | ||
153 | return m_swx->WndProc(msg, wp, lp); | |
154 | } | |
155 | ||
156 | ||
157 | #ifdef MAKELONG | |
158 | #undef MAKELONG | |
159 | #endif | |
160 | ||
161 | #define MAKELONG(a, b) ((a) | ((b) << 16)) | |
162 | ||
163 | ||
164 | static long wxColourAsLong(const wxColour& co) { | |
165 | return (((long)co.Blue() << 16) | | |
166 | ((long)co.Green() << 8) | | |
167 | ((long)co.Red())); | |
168 | } | |
169 | ||
170 | static wxColour wxColourFromLong(long c) { | |
171 | wxColour clr; | |
172 | clr.Set(c & 0xff, (c >> 8) & 0xff, (c >> 16) & 0xff); | |
173 | return clr; | |
174 | } | |
175 | ||
176 | ||
177 | static wxColour wxColourFromSpec(const wxString& spec) { | |
178 | // spec should be #RRGGBB | |
179 | char* junk; | |
180 | int red = strtol(spec.Mid(1,2), &junk, 16); | |
181 | int green = strtol(spec.Mid(3,2), &junk, 16); | |
182 | int blue = strtol(spec.Mid(5,2), &junk, 16); | |
183 | return wxColour(red, green, blue); | |
184 | } | |
185 | ||
186 | ||
187 | //---------------------------------------------------------------------- | |
188 | // BEGIN generated section. The following code is automatically generated | |
189 | // by gen_iface.py from the contents of Scintilla.iface. Do not edit | |
190 | // this file. Edit stc.cpp.in or gen_iface.py instead and regenerate. | |
191 | ||
192 | %(METHOD_IMPS)s | |
193 | ||
194 | // END of generated section | |
195 | //---------------------------------------------------------------------- | |
196 | ||
197 | ||
198 | // Returns the line number of the line with the caret. | |
199 | int wxStyledTextCtrl::GetCurrentLine() { | |
200 | int line = LineFromPosition(GetCurrentPos()); | |
201 | return line; | |
202 | } | |
203 | ||
204 | ||
205 | // Extract style settings from a spec-string which is composed of one or | |
206 | // more of the following comma separated elements: | |
207 | // | |
208 | // bold turns on bold | |
209 | // italic turns on italics | |
210 | // fore:#RRGGBB sets the foreground colour | |
211 | // back:#RRGGBB sets the background colour | |
212 | // face:[facename] sets the font face name to use | |
213 | // size:[num] sets the font size in points | |
214 | // eol turns on eol filling | |
215 | // underline turns on underlining | |
216 | // | |
217 | void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) { | |
218 | ||
219 | wxStringTokenizer tkz(spec, ","); | |
220 | while (tkz.HasMoreTokens()) { | |
221 | wxString token = tkz.GetNextToken(); | |
222 | ||
223 | wxString option = token.BeforeFirst(':'); | |
224 | wxString val = token.AfterFirst(':'); | |
225 | ||
226 | if (option == "bold") | |
227 | StyleSetBold(styleNum, true); | |
228 | ||
229 | else if (option == "italic") | |
230 | StyleSetItalic(styleNum, true); | |
231 | ||
232 | else if (option == "underline") | |
233 | StyleSetUnderline(styleNum, true); | |
234 | ||
235 | else if (option == "eol") | |
236 | StyleSetEOLFilled(styleNum, true); | |
237 | ||
238 | else if (option == "size") { | |
239 | long points; | |
240 | if (val.ToLong(&points)) | |
241 | StyleSetSize(styleNum, points); | |
242 | } | |
243 | ||
244 | else if (option == "face") | |
245 | StyleSetFaceName(styleNum, val); | |
246 | ||
247 | else if (option == "fore") | |
248 | StyleSetForeground(styleNum, wxColourFromSpec(val)); | |
249 | ||
250 | else if (option == "back") | |
251 | StyleSetBackground(styleNum, wxColourFromSpec(val)); | |
252 | } | |
253 | } | |
254 | ||
255 | ||
256 | // Set style size, face, bold, italic, and underline attributes from | |
257 | // a wxFont's attributes. | |
258 | void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) { | |
259 | int size = font.GetPointSize(); | |
260 | wxString faceName = font.GetFaceName(); | |
261 | bool bold = font.GetWeight() == wxBOLD; | |
262 | bool italic = font.GetStyle() != wxNORMAL; | |
263 | bool under = font.GetUnderlined(); | |
264 | ||
265 | // TODO: add encoding/charset mapping | |
266 | StyleSetFontAttr(styleNum, size, faceName, bold, italic, under); | |
267 | } | |
268 | ||
269 | // Set all font style attributes at once. | |
270 | void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size, | |
271 | const wxString& faceName, | |
272 | bool bold, bool italic, | |
273 | bool underline) { | |
274 | StyleSetSize(styleNum, size); | |
275 | StyleSetFaceName(styleNum, faceName); | |
276 | StyleSetBold(styleNum, bold); | |
277 | StyleSetItalic(styleNum, italic); | |
278 | StyleSetUnderline(styleNum, underline); | |
279 | ||
280 | // TODO: add encoding/charset mapping | |
281 | } | |
282 | ||
283 | ||
284 | // Perform one of the operations defined by the wxSTC_CMD_* constants. | |
285 | void wxStyledTextCtrl::CmdKeyExecute(int cmd) { | |
286 | SendMsg(cmd); | |
287 | } | |
288 | ||
289 | ||
290 | // Set the left and right margin in the edit area, measured in pixels. | |
291 | void wxStyledTextCtrl::SetMargins(int left, int right) { | |
292 | SetMarginLeft(left); | |
293 | SetMarginRight(right); | |
294 | } | |
295 | ||
296 | ||
297 | // Retrieve the start and end positions of the current selection. | |
298 | void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) { | |
299 | if (startPos != NULL) | |
300 | *startPos = SendMsg(SCI_GETSELECTIONSTART); | |
301 | if (endPos != NULL) | |
302 | *endPos = SendMsg(SCI_GETSELECTIONEND); | |
303 | } | |
304 | ||
305 | ||
306 | // Retrieve the point in the window where a position is displayed. | |
307 | wxPoint wxStyledTextCtrl::PointFromPosition(int pos) { | |
308 | int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos); | |
309 | int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos); | |
310 | return wxPoint(x, y); | |
311 | } | |
312 | ||
313 | // Scroll enough to make the given line visible | |
314 | void wxStyledTextCtrl::ScrollToLine(int line) { | |
315 | m_swx->DoScrollToLine(line); | |
316 | } | |
317 | ||
318 | ||
319 | // Scroll enough to make the given column visible | |
320 | void wxStyledTextCtrl::ScrollToColumn(int column) { | |
321 | m_swx->DoScrollToColumn(column); | |
322 | } | |
323 | ||
324 | ||
325 | ||
326 | //---------------------------------------------------------------------- | |
327 | // Event handlers | |
328 | ||
329 | void wxStyledTextCtrl::OnPaint(wxPaintEvent& evt) { | |
330 | wxPaintDC dc(this); | |
331 | wxRegion region = GetUpdateRegion(); | |
332 | ||
333 | m_swx->DoPaint(&dc, region.GetBox()); | |
334 | } | |
335 | ||
336 | void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent& evt) { | |
337 | if (evt.GetOrientation() == wxHORIZONTAL) | |
338 | m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition()); | |
339 | else | |
340 | m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition()); | |
341 | } | |
342 | ||
343 | void wxStyledTextCtrl::OnSize(wxSizeEvent& evt) { | |
344 | wxSize sz = GetClientSize(); | |
345 | m_swx->DoSize(sz.x, sz.y); | |
346 | } | |
347 | ||
348 | void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) { | |
349 | wxPoint pt = evt.GetPosition(); | |
350 | m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(), | |
351 | evt.ShiftDown(), evt.ControlDown(), evt.AltDown()); | |
352 | } | |
353 | ||
354 | void wxStyledTextCtrl::OnMouseMove(wxMouseEvent& evt) { | |
355 | wxPoint pt = evt.GetPosition(); | |
356 | m_swx->DoButtonMove(Point(pt.x, pt.y)); | |
357 | } | |
358 | ||
359 | void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent& evt) { | |
360 | wxPoint pt = evt.GetPosition(); | |
361 | m_swx->DoButtonUp(Point(pt.x, pt.y), m_stopWatch.Time(), | |
362 | evt.ControlDown()); | |
363 | } | |
364 | ||
365 | ||
65ec6247 | 366 | void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent& evt) { |
f97d84a6 | 367 | wxPoint pt = evt.GetPosition(); |
65ec6247 | 368 | ScreenToClient(&pt.x, &pt.y); |
f97d84a6 RD |
369 | m_swx->DoContextMenu(Point(pt.x, pt.y)); |
370 | } | |
371 | ||
37d62433 RD |
372 | |
373 | void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent& evt) { | |
374 | m_swx->DoMouseWheel(evt.GetWheelRotation(), | |
375 | evt.GetWheelDelta(), | |
65ec6247 RD |
376 | evt.GetLinesPerAction(), |
377 | evt.ControlDown()); | |
37d62433 RD |
378 | } |
379 | ||
380 | ||
f97d84a6 RD |
381 | void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) { |
382 | long key = evt.KeyCode(); | |
f3c2c221 RD |
383 | |
384 | // printf("OnChar key:%%d consumed:%%d ctrl:%%d alt:%%d\n", | |
385 | // key, m_lastKeyDownConsumed, evt.ControlDown(), evt.AltDown()); | |
386 | ||
387 | // AltGr keys??? | |
388 |