ssize_t for wxFile, unsigned char markup for color components, whitespace source...
[wxWidgets.git] / src / stc / stc.cpp
1 ////////////////////////////////////////////////////////////////////////////
2 // Name: stc.cpp
3 // Purpose: A wxWidgets 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/wx.h>
24 #include <wx/tokenzr.h>
25 #include <wx/mstream.h>
26 #include <wx/image.h>
27 #include <wx/file.h>
28
29
30 //----------------------------------------------------------------------
31
32 const wxChar* wxSTCNameStr = wxT("stcwindow");
33
34 #ifdef MAKELONG
35 #undef MAKELONG
36 #endif
37
38 #define MAKELONG(a, b) ((a) | ((b) << 16))
39
40
41 static long wxColourAsLong(const wxColour& co) {
42 return (((long)co.Blue() << 16) |
43 ((long)co.Green() << 8) |
44 ((long)co.Red()));
45 }
46
47 static wxColour wxColourFromLong(long c) {
48 wxColour clr;
49 clr.Set((unsigned char)(c & 0xff),
50 (unsigned char)((c >> 8) & 0xff),
51 (unsigned char)((c >> 16) & 0xff));
52 return clr;
53 }
54
55
56 static wxColour wxColourFromSpec(const wxString& spec) {
57 // spec should be a colour name or "#RRGGBB"
58 if (spec.GetChar(0) == wxT('#')) {
59
60 long red, green, blue;
61 red = green = blue = 0;
62 spec.Mid(1,2).ToLong(&red, 16);
63 spec.Mid(3,2).ToLong(&green, 16);
64 spec.Mid(5,2).ToLong(&blue, 16);
65 return wxColour((unsigned char)red,
66 (unsigned char)green,
67 (unsigned char)blue);
68 }
69 else
70 return wxColour(spec);
71 }
72
73 //----------------------------------------------------------------------
74
75 DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE )
76 DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED )
77 DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED )
78 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED )
79 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT )
80 DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT )
81 DEFINE_EVENT_TYPE( wxEVT_STC_KEY )
82 DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK )
83 DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI )
84 DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED )
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_PAINTED )
89 DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION )
90 DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED )
91 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART )
92 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND )
93 DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG )
94 DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER )
95 DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP )
96 DEFINE_EVENT_TYPE( wxEVT_STC_ZOOM )
97 DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_CLICK )
98 DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_DCLICK )
99 DEFINE_EVENT_TYPE( wxEVT_STC_CALLTIP_CLICK )
100
101
102
103 BEGIN_EVENT_TABLE(wxStyledTextCtrl, wxControl)
104 EVT_PAINT (wxStyledTextCtrl::OnPaint)
105 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin)
106 EVT_SCROLL (wxStyledTextCtrl::OnScroll)
107 EVT_SIZE (wxStyledTextCtrl::OnSize)
108 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown)
109 // Let Scintilla see the double click as a second click
110 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown)
111 EVT_MOTION (wxStyledTextCtrl::OnMouseMove)
112 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp)
113 #if defined(__WXGTK__) || defined(__WXMAC__)
114 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp)
115 #else
116 EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu)
117 #endif
118 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel)
119 EVT_MIDDLE_UP (wxStyledTextCtrl::OnMouseMiddleUp)
120 EVT_CHAR (wxStyledTextCtrl::OnChar)
121 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown)
122 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus)
123 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus)
124 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged)
125 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground)
126 EVT_MENU_RANGE (10, 16, wxStyledTextCtrl::OnMenu)
127 EVT_LISTBOX_DCLICK (wxID_ANY, wxStyledTextCtrl::OnListBox)
128 END_EVENT_TABLE()
129
130
131 IMPLEMENT_CLASS(wxStyledTextCtrl, wxControl)
132 IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent, wxCommandEvent)
133
134 #ifdef LINK_LEXERS
135 // forces the linking of the lexer modules
136 int Scintilla_LinkLexers();
137 #endif
138
139 //----------------------------------------------------------------------
140 // Constructor and Destructor
141
142 wxStyledTextCtrl::wxStyledTextCtrl(wxWindow *parent,
143 wxWindowID id,
144 const wxPoint& pos,
145 const wxSize& size,
146 long style,
147 const wxString& name)
148 {
149 m_swx = NULL;
150 Create(parent, id, pos, size, style, name);
151 }
152
153
154 void wxStyledTextCtrl::Create(wxWindow *parent,
155 wxWindowID id,
156 const wxPoint& pos,
157 const wxSize& size,
158 long style,
159 const wxString& name)
160 {
161 #ifdef __WXMAC__
162 style |= wxVSCROLL | wxHSCROLL;
163 #endif
164 wxControl::Create(parent, id, pos, size,
165 style | wxWANTS_CHARS | wxCLIP_CHILDREN,
166 wxDefaultValidator, name);
167
168 #ifdef LINK_LEXERS
169 Scintilla_LinkLexers();
170 #endif
171 m_swx = new ScintillaWX(this);
172 m_stopWatch.Start();
173 m_lastKeyDownConsumed = false;
174 m_vScrollBar = NULL;
175 m_hScrollBar = NULL;
176 #if wxUSE_UNICODE
177 // Put Scintilla into unicode (UTF-8) mode
178 SetCodePage(wxSTC_CP_UTF8);
179 #endif
180
181 SetBestFittingSize(size);
182 }
183
184
185 wxStyledTextCtrl::~wxStyledTextCtrl() {
186 delete m_swx;
187 }
188
189
190 //----------------------------------------------------------------------
191
192 long wxStyledTextCtrl::SendMsg(int msg, long wp, long lp) {
193
194 return m_swx->WndProc(msg, wp, lp);
195 }
196
197 //----------------------------------------------------------------------
198
199 // Set the vertical scrollbar to use instead of the ont that's built-in.
200 void wxStyledTextCtrl::SetVScrollBar(wxScrollBar* bar) {
201 m_vScrollBar = bar;
202 if (bar != NULL) {
203 // ensure that the built-in scrollbar is not visible
204 SetScrollbar(wxVERTICAL, 0, 0, 0);
205 }
206 }
207
208
209 // Set the horizontal scrollbar to use instead of the ont that's built-in.
210 void wxStyledTextCtrl::SetHScrollBar(wxScrollBar* bar) {
211 m_hScrollBar = bar;
212 if (bar != NULL) {
213 // ensure that the built-in scrollbar is not visible
214 SetScrollbar(wxHORIZONTAL, 0, 0, 0);
215 }
216 }
217
218 //----------------------------------------------------------------------
219 // BEGIN generated section. The following code is automatically generated
220 // by gen_iface.py from the contents of Scintilla.iface. Do not edit
221 // this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
222
223
224 // Add text to the document at current position.
225 void wxStyledTextCtrl::AddText(const wxString& text) {
226 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
227 SendMsg(2001, strlen(buf), (long)(const char*)buf);
228 }
229
230 // Add array of cells to document.
231 void wxStyledTextCtrl::AddStyledText(const wxMemoryBuffer& data) {
232 SendMsg(2002, data.GetDataLen(), (long)data.GetData());
233 }
234
235 // Insert string at a position.
236 void wxStyledTextCtrl::InsertText(int pos, const wxString& text) {
237 SendMsg(2003, pos, (long)(const char*)wx2stc(text));
238 }
239
240 // Delete all text in the document.
241 void wxStyledTextCtrl::ClearAll() {
242 SendMsg(2004, 0, 0);
243 }
244
245 // Set all style bytes to 0, remove all folding information.
246 void wxStyledTextCtrl::ClearDocumentStyle() {
247 SendMsg(2005, 0, 0);
248 }
249
250 // Returns the number of characters in the document.
251 int wxStyledTextCtrl::GetLength() {
252 return SendMsg(2006, 0, 0);
253 }
254
255 // Returns the character byte at the position.
256 int wxStyledTextCtrl::GetCharAt(int pos) {
257 return (unsigned char)SendMsg(2007, pos, 0);
258 }
259
260 // Returns the position of the caret.
261 int wxStyledTextCtrl::GetCurrentPos() {
262 return SendMsg(2008, 0, 0);
263 }
264
265 // Returns the position of the opposite end of the selection to the caret.
266 int wxStyledTextCtrl::GetAnchor() {
267 return SendMsg(2009, 0, 0);
268 }
269
270 // Returns the style byte at the position.
271 int wxStyledTextCtrl::GetStyleAt(int pos) {
272 return (unsigned char)SendMsg(2010, pos, 0);
273 }
274
275 // Redoes the next action on the undo history.
276 void wxStyledTextCtrl::Redo() {
277 SendMsg(2011, 0, 0);
278 }
279
280 // Choose between collecting actions into the undo
281 // history and discarding them.
282 void wxStyledTextCtrl::SetUndoCollection(bool collectUndo) {
283 SendMsg(2012, collectUndo, 0);
284 }
285
286 // Select all the text in the document.
287 void wxStyledTextCtrl::SelectAll() {
288 SendMsg(2013, 0, 0);
289 }
290
291 // Remember the current position in the undo history as the position
292 // at which the document was saved.
293 void wxStyledTextCtrl::SetSavePoint() {
294 SendMsg(2014, 0, 0);
295 }
296
297 // Retrieve a buffer of cells.
298 wxMemoryBuffer wxStyledTextCtrl::GetStyledText(int startPos, int endPos) {
299 wxMemoryBuffer buf;
300 if (endPos < startPos) {
301 int temp = startPos;
302 startPos = endPos;
303 endPos = temp;
304 }
305 int len = endPos - startPos;
306 if (!len) return buf;
307 TextRange tr;
308 tr.lpstrText = (char*)buf.GetWriteBuf(len*2+1);
309 tr.chrg.cpMin = startPos;
310 tr.chrg.cpMax = endPos;
311 len = SendMsg(2015, 0, (long)&tr);
312 buf.UngetWriteBuf(len);
313 return buf;
314 }
315
316 // Are there any redoable actions in the undo history?
317 bool wxStyledTextCtrl::CanRedo() {
318 return SendMsg(2016, 0, 0) != 0;
319 }
320
321 // Retrieve the line number at which a particular marker is located.
322 int wxStyledTextCtrl::MarkerLineFromHandle(int handle) {
323 return SendMsg(2017, handle, 0);
324 }
325
326 // Delete a marker.
327 void wxStyledTextCtrl::MarkerDeleteHandle(int handle) {
328 SendMsg(2018, handle, 0);
329 }
330
331 // Is undo history being collected?
332 bool wxStyledTextCtrl::GetUndoCollection() {
333 return SendMsg(2019, 0, 0) != 0;
334 }
335
336 // Are white space characters currently visible?
337 // Returns one of SCWS_* constants.
338 int wxStyledTextCtrl::GetViewWhiteSpace() {
339 return SendMsg(2020, 0, 0);
340 }
341
342 // Make white space characters invisible, always visible or visible outside indentation.
343 void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS) {
344 SendMsg(2021, viewWS, 0);
345 }
346
347 // Find the position from a point within the window.
348 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt) {
349 return SendMsg(2022, pt.x, pt.y);
350 }
351
352 // Find the position from a point within the window but return
353 // INVALID_POSITION if not close to text.
354 int wxStyledTextCtrl::PositionFromPointClose(int x, int y) {
355 return SendMsg(2023, x, y);
356 }
357
358 // Set caret to start of a line and ensure it is visible.
359 void wxStyledTextCtrl::GotoLine(int line) {
360 SendMsg(2024, line, 0);
361 }
362
363 // Set caret to a position and ensure it is visible.
364 void wxStyledTextCtrl::GotoPos(int pos) {
365 SendMsg(2025, pos, 0);
366 }
367
368 // Set the selection anchor to a position. The anchor is the opposite
369 // end of the selection from the caret.
370 void wxStyledTextCtrl::SetAnchor(int posAnchor) {
371 SendMsg(2026, posAnchor, 0);
372 }
373
374 // Retrieve the text of the line containing the caret.
375 // Returns the index of the caret on the line.
376 wxString wxStyledTextCtrl::GetCurLine(int* linePos) {
377 int len = LineLength(GetCurrentLine());
378 if (!len) {
379 if (linePos) *linePos = 0;
380 return wxEmptyString;
381 }
382
383 wxMemoryBuffer mbuf(len+1);
384 char* buf = (char*)mbuf.GetWriteBuf(len+1);
385
386 int pos = SendMsg(2027, len+1, (long)buf);
387 mbuf.UngetWriteBuf(len);
388 mbuf.AppendByte(0);
389 if (linePos) *linePos = pos;
390 return stc2wx(buf);
391 }
392
393 // Retrieve the position of the last correctly styled character.
394 int wxStyledTextCtrl::GetEndStyled() {
395 return SendMsg(2028, 0, 0);
396 }
397
398 // Convert all line endings in the document to one mode.
399 void wxStyledTextCtrl::ConvertEOLs(int eolMode) {
400 SendMsg(2029, eolMode, 0);
401 }
402
403 // Retrieve the current end of line mode - one of CRLF, CR, or LF.
404 int wxStyledTextCtrl::GetEOLMode() {
405 return SendMsg(2030, 0, 0);
406 }
407
408 // Set the current end of line mode.
409 void wxStyledTextCtrl::SetEOLMode(int eolMode) {
410 SendMsg(2031, eolMode, 0);
411 }
412
413 // Set the current styling position to pos and the styling mask to mask.
414 // The styling mask can be used to protect some bits in each styling byte from modification.
415 void wxStyledTextCtrl::StartStyling(int pos, int mask) {
416 SendMsg(2032, pos, mask);
417 }
418
419 // Change style from current styling position for length characters to a style
420 // and move the current styling position to after this newly styled segment.
421 void wxStyledTextCtrl::SetStyling(int length, int style) {
422 SendMsg(2033, length, style);
423 }
424
425 // Is drawing done first into a buffer or direct to the screen?
426 bool wxStyledTextCtrl::GetBufferedDraw() {
427 return SendMsg(2034, 0, 0) != 0;
428 }
429
430 // If drawing is buffered then each line of text is drawn into a bitmap buffer
431 // before drawing it to the screen to avoid flicker.
432 void wxStyledTextCtrl::SetBufferedDraw(bool buffered) {
433 SendMsg(2035, buffered, 0);
434 }
435
436 // Change the visible size of a tab to be a multiple of the width of a space character.
437 void wxStyledTextCtrl::SetTabWidth(int tabWidth) {
438 SendMsg(2036, tabWidth, 0);
439 }
440
441 // Retrieve the visible size of a tab.
442 int wxStyledTextCtrl::GetTabWidth() {
443 return SendMsg(2121, 0, 0);
444 }
445
446 // Set the code page used to interpret the bytes of the document as characters.
447 void wxStyledTextCtrl::SetCodePage(int codePage) {
448 #if wxUSE_UNICODE
449 wxASSERT_MSG(codePage == wxSTC_CP_UTF8,
450 wxT("Only wxSTC_CP_UTF8 may be used when wxUSE_UNICODE is on."));
451 #else
452 wxASSERT_MSG(codePage != wxSTC_CP_UTF8,
453 wxT("wxSTC_CP_UTF8 may not be used when wxUSE_UNICODE is off."));
454 #endif
455 SendMsg(2037, codePage);
456 }
457
458 // Set the symbol used for a particular marker number,
459 // and optionally the fore and background colours.
460 void wxStyledTextCtrl::MarkerDefine(int markerNumber, int markerSymbol,
461 const wxColour& foreground,
462 const wxColour& background) {
463
464 SendMsg(2040, markerNumber, markerSymbol);
465 if (foreground.Ok())
466 MarkerSetForeground(markerNumber, foreground);
467 if (background.Ok())
468 MarkerSetBackground(markerNumber, background);
469 }
470
471 // Set the foreground colour used for a particular marker number.
472 void wxStyledTextCtrl::MarkerSetForeground(int markerNumber, const wxColour& fore) {
473 SendMsg(2041, markerNumber, wxColourAsLong(fore));
474 }
475
476 // Set the background colour used for a particular marker number.
477 void wxStyledTextCtrl::MarkerSetBackground(int markerNumber, const wxColour& back) {
478 SendMsg(2042, markerNumber, wxColourAsLong(back));
479 }
480
481 // Add a marker to a line, returning an ID which can be used to find or delete the marker.
482 int wxStyledTextCtrl::MarkerAdd(int line, int markerNumber) {
483 return SendMsg(2043, line, markerNumber);
484 }
485
486 // Delete a marker from a line.
487 void wxStyledTextCtrl::MarkerDelete(int line, int markerNumber) {
488 SendMsg(2044, line, markerNumber);
489 }
490
491 // Delete all markers with a particular number from all lines.
492 void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber) {
493 SendMsg(2045, markerNumber, 0);
494 }
495
496 // Get a bit mask of all the markers set on a line.
497 int wxStyledTextCtrl::MarkerGet(int line) {
498 return SendMsg(2046, line, 0);
499 }
500
501 // Find the next line after lineStart that includes a marker in mask.
502 int wxStyledTextCtrl::MarkerNext(int lineStart, int markerMask) {
503 return SendMsg(2047, lineStart, markerMask);
504 }
505
506 // Find the previous line before lineStart that includes a marker in mask.
507 int wxStyledTextCtrl::MarkerPrevious(int lineStart, int markerMask) {
508 return SendMsg(2048, lineStart, markerMask);
509 }
510
511 // Define a marker from a bitmap
512 void wxStyledTextCtrl::MarkerDefineBitmap(int markerNumber, const wxBitmap& bmp) {
513 // convert bmp to a xpm in a string
514 wxMemoryOutputStream strm;
515 wxImage img = bmp.ConvertToImage();
516 img.SaveFile(strm, wxBITMAP_TYPE_XPM);
517 size_t len = strm.GetSize();
518 char* buff = new char[len+1];
519 strm.CopyTo(buff, len);
520 buff[len] = 0;
521 SendMsg(2049, markerNumber, (long)buff);
522 delete [] buff;
523 }
524
525 // Set a margin to be either numeric or symbolic.
526 void wxStyledTextCtrl::SetMarginType(int margin, int marginType) {
527 SendMsg(2240, margin, marginType);
528 }
529
530 // Retrieve the type of a margin.
531 int wxStyledTextCtrl::GetMarginType(int margin) {
532 return SendMsg(2241, margin, 0);
533 }
534
535 // Set the width of a margin to a width expressed in pixels.
536 void wxStyledTextCtrl::SetMarginWidth(int margin, int pixelWidth) {
537 SendMsg(2242, margin, pixelWidth);
538 }
539
540 // Retrieve the width of a margin in pixels.
541 int wxStyledTextCtrl::GetMarginWidth(int margin) {
542 return SendMsg(2243, margin, 0);
543 }
544
545 // Set a mask that determines which markers are displayed in a margin.
546 void wxStyledTextCtrl::SetMarginMask(int margin, int mask) {
547 SendMsg(2244, margin, mask);
548 }
549
550 // Retrieve the marker mask of a margin.
551 int wxStyledTextCtrl::GetMarginMask(int margin) {
552 return SendMsg(2245, margin, 0);
553 }
554
555 // Make a margin sensitive or insensitive to mouse clicks.
556 void wxStyledTextCtrl::SetMarginSensitive(int margin, bool sensitive) {
557 SendMsg(2246, margin, sensitive);
558 }
559
560 // Retrieve the mouse click sensitivity of a margin.
561 bool wxStyledTextCtrl::GetMarginSensitive(int margin) {
562 return SendMsg(2247, margin, 0) != 0;
563 }
564
565 // Clear all the styles and make equivalent to the global default style.
566 void wxStyledTextCtrl::StyleClearAll() {
567 SendMsg(2050, 0, 0);
568 }
569
570 // Set the foreground colour of a style.
571 void wxStyledTextCtrl::StyleSetForeground(int style, const wxColour& fore) {
572 SendMsg(2051, style, wxColourAsLong(fore));
573 }
574
575 // Set the background colour of a style.
576 void wxStyledTextCtrl::StyleSetBackground(int style, const wxColour& back) {
577 SendMsg(2052, style, wxColourAsLong(back));
578 }
579
580 // Set a style to be bold or not.
581 void wxStyledTextCtrl::StyleSetBold(int style, bool bold) {
582 SendMsg(2053, style, bold);
583 }
584
585 // Set a style to be italic or not.
586 void wxStyledTextCtrl::StyleSetItalic(int style, bool italic) {
587 SendMsg(2054, style, italic);
588 }
589
590 // Set the size of characters of a style.
591 void wxStyledTextCtrl::StyleSetSize(int style, int sizePoints) {
592 SendMsg(2055, style, sizePoints);
593 }
594
595 // Set the font of a style.
596 void wxStyledTextCtrl::StyleSetFaceName(int style, const wxString& fontName) {
597 SendMsg(2056, style, (long)(const char*)wx2stc(fontName));
598 }
599
600 // Set a style to have its end of line filled or not.
601 void wxStyledTextCtrl::StyleSetEOLFilled(int style, bool filled) {
602 SendMsg(2057, style, filled);
603 }
604
605 // Reset the default style to its state at startup
606 void wxStyledTextCtrl::StyleResetDefault() {
607 SendMsg(2058, 0, 0);
608 }
609
610 // Set a style to be underlined or not.
611 void wxStyledTextCtrl::StyleSetUnderline(int style, bool underline) {
612 SendMsg(2059, style, underline);
613 }
614
615 // Set a style to be mixed case, or to force upper or lower case.
616 void wxStyledTextCtrl::StyleSetCase(int style, int caseForce) {
617 SendMsg(2060, style, caseForce);
618 }
619
620 // Set the character set of the font in a style.
621 void wxStyledTextCtrl::StyleSetCharacterSet(int style, int characterSet) {
622 SendMsg(2066, style, characterSet);
623 }
624
625 // Set a style to be a hotspot or not.
626 void wxStyledTextCtrl::StyleSetHotSpot(int style, bool hotspot) {
627 SendMsg(2409, style, hotspot);
628 }
629
630 // Set the foreground colour of the selection and whether to use this setting.
631 void wxStyledTextCtrl::SetSelForeground(bool useSetting, const wxColour& fore) {
632 SendMsg(2067, useSetting, wxColourAsLong(fore));
633 }
634
635 // Set the background colour of the selection and whether to use this setting.
636 void wxStyledTextCtrl::SetSelBackground(bool useSetting, const wxColour& back) {
637 SendMsg(2068, useSetting, wxColourAsLong(back));
638 }
639
640 // Set the foreground colour of the caret.
641 void wxStyledTextCtrl::SetCaretForeground(const wxColour& fore) {
642 SendMsg(2069, wxColourAsLong(fore), 0);
643 }
644
645 // When key+modifier combination km is pressed perform msg.
646 void wxStyledTextCtrl::CmdKeyAssign(int key, int modifiers, int cmd) {
647 SendMsg(2070, MAKELONG(key, modifiers), cmd);
648 }
649
650 // When key+modifier combination km is pressed do nothing.
651 void wxStyledTextCtrl::CmdKeyClear(int key, int modifiers) {
652 SendMsg(2071, MAKELONG(key, modifiers));
653 }
654
655 // Drop all key mappings.
656 void wxStyledTextCtrl::CmdKeyClearAll() {
657 SendMsg(2072, 0, 0);
658 }
659
660 // Set the styles for a segment of the document.
661 void wxStyledTextCtrl::SetStyleBytes(int length, char* styleBytes) {
662 SendMsg(2073, length, (long)styleBytes);
663 }
664
665 // Set a style to be visible or not.
666 void wxStyledTextCtrl::StyleSetVisible(int style, bool visible) {
667 SendMsg(2074, style, visible);
668 }
669
670 // Get the time in milliseconds that the caret is on and off.
671 int wxStyledTextCtrl::GetCaretPeriod() {
672 return SendMsg(2075, 0, 0);
673 }
674
675 // Get the time in milliseconds that the caret is on and off. 0 = steady on.
676 void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds) {
677 SendMsg(2076, periodMilliseconds, 0);
678 }
679
680 // Set the set of characters making up words for when moving or selecting by word.
681 // First sets deaults like SetCharsDefault.
682 void wxStyledTextCtrl::SetWordChars(const wxString& characters) {
683 SendMsg(2077, 0, (long)(const char*)wx2stc(characters));
684 }
685
686 // Start a sequence of actions that is undone and redone as a unit.
687 // May be nested.
688 void wxStyledTextCtrl::BeginUndoAction() {
689 SendMsg(2078, 0, 0);
690 }
691
692 // End a sequence of actions that is undone and redone as a unit.
693 void wxStyledTextCtrl::EndUndoAction() {
694 SendMsg(2079, 0, 0);
695 }
696
697 // Set an indicator to plain, squiggle or TT.
698 void wxStyledTextCtrl::IndicatorSetStyle(int indic, int style) {
699 SendMsg(2080, indic, style);
700 }
701
702 // Retrieve the style of an indicator.
703 int wxStyledTextCtrl::IndicatorGetStyle(int indic) {
704 return SendMsg(2081, indic, 0);
705 }
706
707 // Set the foreground colour of an indicator.
708 void wxStyledTextCtrl::IndicatorSetForeground(int indic, const wxColour& fore) {
709 SendMsg(2082, indic, wxColourAsLong(fore));
710 }
711
712 // Retrieve the foreground colour of an indicator.
713 wxColour wxStyledTextCtrl::IndicatorGetForeground(int indic) {
714 long c = SendMsg(2083, indic, 0);
715 return wxColourFromLong(c);
716 }
717
718 // Set the foreground colour of all whitespace and whether to use this setting.
719 void wxStyledTextCtrl::SetWhitespaceForeground(bool useSetting, const wxColour& fore) {
720 SendMsg(2084, useSetting, wxColourAsLong(fore));
721 }
722
723 // Set the background colour of all whitespace and whether to use this setting.
724 void wxStyledTextCtrl::SetWhitespaceBackground(bool useSetting, const wxColour& back) {
725 SendMsg(2085, useSetting, wxColourAsLong(back));
726 }
727
728 // Divide each styling byte into lexical class bits (default: 5) and indicator
729 // bits (default: 3). If a lexer requires more than 32 lexical states, then this
730 // is used to expand the possible states.
731 void wxStyledTextCtrl::SetStyleBits(int bits) {
732 SendMsg(2090, bits, 0);
733 }
734
735 // Retrieve number of bits in style bytes used to hold the lexical state.
736 int wxStyledTextCtrl::GetStyleBits() {
737 return SendMsg(2091, 0, 0);
738 }
739
740 // Used to hold extra styling information for each line.
741 void wxStyledTextCtrl::SetLineState(int line, int state) {
742 SendMsg(2092, line, state);
743 }
744
745 // Retrieve the extra styling information for a line.
746 int wxStyledTextCtrl::GetLineState(int line) {
747 return SendMsg(2093, line, 0);
748 }
749
750 // Retrieve the last line number that has line state.
751 int wxStyledTextCtrl::GetMaxLineState() {
752 return SendMsg(2094, 0, 0);
753 }
754
755 // Is the background of the line containing the caret in a different colour?
756 bool wxStyledTextCtrl::GetCaretLineVisible() {
757 return SendMsg(2095, 0, 0) != 0;
758 }
759
760 // Display the background of the line containing the caret in a different colour.
761 void wxStyledTextCtrl::SetCaretLineVisible(bool show) {
762 SendMsg(2096, show, 0);
763 }
764
765 // Get the colour of the background of the line containing the caret.
766 wxColour wxStyledTextCtrl::GetCaretLineBack() {
767 long c = SendMsg(2097, 0, 0);
768 return wxColourFromLong(c);
769 }
770
771 // Set the colour of the background of the line containing the caret.
772 void wxStyledTextCtrl::SetCaretLineBack(const wxColour& back) {
773 SendMsg(2098, wxColourAsLong(back), 0);
774 }
775
776 // Set a style to be changeable or not (read only).
777 // Experimental feature, currently buggy.
778 void wxStyledTextCtrl::StyleSetChangeable(int style, bool changeable) {
779 SendMsg(2099, style, changeable);
780 }
781
782 // Display a auto-completion list.
783 // The lenEntered parameter indicates how many characters before
784 // the caret should be used to provide context.
785 void wxStyledTextCtrl::AutoCompShow(int lenEntered, const wxString& itemList) {
786 SendMsg(2100, lenEntered, (long)(const char*)wx2stc(itemList));
787 }
788
789 // Remove the auto-completion list from the screen.
790 void wxStyledTextCtrl::AutoCompCancel() {
791 SendMsg(2101, 0, 0);
792 }
793
794 // Is there an auto-completion list visible?
795 bool wxStyledTextCtrl::AutoCompActive() {
796 return SendMsg(2102, 0, 0) != 0;
797 }
798
799 // Retrieve the position of the caret when the auto-completion list was displayed.
800 int wxStyledTextCtrl::AutoCompPosStart() {
801 return SendMsg(2103, 0, 0);
802 }
803
804 // User has selected an item so remove the list and insert the selection.
805 void wxStyledTextCtrl::AutoCompComplete() {
806 SendMsg(2104, 0, 0);
807 }
808
809 // Define a set of character that when typed cancel the auto-completion list.
810 void wxStyledTextCtrl::AutoCompStops(const wxString& characterSet) {
811 SendMsg(2105, 0, (long)(const char*)wx2stc(characterSet));
812 }
813
814 // Change the separator character in the string setting up an auto-completion list.
815 // Default is space but can be changed if items contain space.
816 void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter) {
817 SendMsg(2106, separatorCharacter, 0);
818 }
819
820 // Retrieve the auto-completion list separator character.
821 int wxStyledTextCtrl::AutoCompGetSeparator() {
822 return SendMsg(2107, 0, 0);
823 }
824
825 // Select the item in the auto-completion list that starts with a string.
826 void wxStyledTextCtrl::AutoCompSelect(const wxString& text) {
827 SendMsg(2108, 0, (long)(const char*)wx2stc(text));
828 }
829
830 // Should the auto-completion list be cancelled if the user backspaces to a
831 // position before where the box was created.
832 void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel) {
833 SendMsg(2110, cancel, 0);
834 }
835
836 // Retrieve whether auto-completion cancelled by backspacing before start.
837 bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
838 return SendMsg(2111, 0, 0) != 0;
839 }
840
841 // Define a set of characters that when typed will cause the autocompletion to
842 // choose the selected item.
843 void wxStyledTextCtrl::AutoCompSetFillUps(const wxString& characterSet) {
844 SendMsg(2112, 0, (long)(const char*)wx2stc(characterSet));
845 }
846
847 // Should a single item auto-completion list automatically choose the item.
848 void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle) {
849 SendMsg(2113, chooseSingle, 0);
850 }
851
852 // Retrieve whether a single item auto-completion list automatically choose the item.
853 bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
854 return SendMsg(2114, 0, 0) != 0;
855 }
856
857 // Set whether case is significant when performing auto-completion searches.
858 void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase) {
859 SendMsg(2115, ignoreCase, 0);
860 }
861
862 // Retrieve state of ignore case flag.
863 bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
864 return SendMsg(2116, 0, 0) != 0;
865 }
866
867 // Display a list of strings and send notification when user chooses one.
868 void wxStyledTextCtrl::UserListShow(int listType, const wxString& itemList) {
869 SendMsg(2117, listType, (long)(const char*)wx2stc(itemList));
870 }
871
872 // Set whether or not autocompletion is hidden automatically when nothing matches.
873 void wxStyledTextCtrl::AutoCompSetAutoHide(bool autoHide) {
874 SendMsg(2118, autoHide, 0);
875 }
876
877 // Retrieve whether or not autocompletion is hidden automatically when nothing matches.
878 bool wxStyledTextCtrl::AutoCompGetAutoHide() {
879 return SendMsg(2119, 0, 0) != 0;
880 }
881
882 // Set whether or not autocompletion deletes any word characters
883 // after the inserted text upon completion.
884 void wxStyledTextCtrl::AutoCompSetDropRestOfWord(bool dropRestOfWord) {
885 SendMsg(2270, dropRestOfWord, 0);
886 }
887
888 // Retrieve whether or not autocompletion deletes any word characters
889 // after the inserted text upon completion.
890 bool wxStyledTextCtrl::AutoCompGetDropRestOfWord() {
891 return SendMsg(2271, 0, 0) != 0;
892 }
893
894 // Register an image for use in autocompletion lists.
895 void wxStyledTextCtrl::RegisterImage(int type, const wxBitmap& bmp) {
896 // convert bmp to a xpm in a string
897 wxMemoryOutputStream strm;
898 wxImage img = bmp.ConvertToImage();
899 img.SaveFile(strm, wxBITMAP_TYPE_XPM);
900 size_t len = strm.GetSize();
901 char* buff = new char[len+1];
902 strm.CopyTo(buff, len);
903 buff[len] = 0;
904 SendMsg(2405, type, (long)buff);
905 delete [] buff;
906 }
907
908 // Clear all the registered images.
909 void wxStyledTextCtrl::ClearRegisteredImages() {
910 SendMsg(2408, 0, 0);
911 }
912
913 // Retrieve the auto-completion list type-separator character.
914 int wxStyledTextCtrl::AutoCompGetTypeSeparator() {
915 return SendMsg(2285, 0, 0);
916 }
917
918 // Change the type-separator character in the string setting up an auto-completion list.
919 // Default is '?' but can be changed if items contain '?'.
920 void wxStyledTextCtrl::AutoCompSetTypeSeparator(int separatorCharacter) {
921 SendMsg(2286, separatorCharacter, 0);
922 }
923
924 // Set the number of spaces used for one level of indentation.
925 void wxStyledTextCtrl::SetIndent(int indentSize) {
926 SendMsg(2122, indentSize, 0);
927 }
928
929 // Retrieve indentation size.
930 int wxStyledTextCtrl::GetIndent() {
931 return SendMsg(2123, 0, 0);
932 }
933
934 // Indentation will only use space characters if useTabs is false, otherwise
935 // it will use a combination of tabs and spaces.
936 void wxStyledTextCtrl::SetUseTabs(bool useTabs) {
937 SendMsg(2124, useTabs, 0);
938 }
939
940 // Retrieve whether tabs will be used in indentation.
941 bool wxStyledTextCtrl::GetUseTabs() {
942 return SendMsg(2125, 0, 0) != 0;
943 }
944
945 // Change the indentation of a line to a number of columns.
946 void wxStyledTextCtrl::SetLineIndentation(int line, int indentSize) {
947 SendMsg(2126, line, indentSize);
948 }
949
950 // Retrieve the number of columns that a line is indented.
951 int wxStyledTextCtrl::GetLineIndentation(int line) {
952 return SendMsg(2127, line, 0);
953 }
954
955 // Retrieve the position before the first non indentation character on a line.
956 int wxStyledTextCtrl::GetLineIndentPosition(int line) {
957 return SendMsg(2128, line, 0);
958 }
959
960 // Retrieve the column number of a position, taking tab width into account.
961 int wxStyledTextCtrl::GetColumn(int pos) {
962 return SendMsg(2129, pos, 0);
963 }
964
965 // Show or hide the horizontal scroll bar.
966 void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show) {
967 SendMsg(2130, show, 0);
968 }
969
970 // Is the horizontal scroll bar visible?
971 bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
972 return SendMsg(2131, 0, 0) != 0;
973 }
974
975 // Show or hide indentation guides.
976 void wxStyledTextCtrl::SetIndentationGuides(bool show) {
977 SendMsg(2132, show, 0);
978 }
979
980 // Are the indentation guides visible?
981 bool wxStyledTextCtrl::GetIndentationGuides() {
982 return SendMsg(2133, 0, 0) != 0;
983 }
984
985 // Set the highlighted indentation guide column.
986 // 0 = no highlighted guide.
987 void wxStyledTextCtrl::SetHighlightGuide(int column) {
988 SendMsg(2134, column, 0);
989 }
990
991 // Get the highlighted indentation guide column.
992 int wxStyledTextCtrl::GetHighlightGuide() {
993 return SendMsg(2135, 0, 0);
994 }
995
996 // Get the position after the last visible characters on a line.
997 int wxStyledTextCtrl::GetLineEndPosition(int line) {
998 return SendMsg(2136, line, 0);
999 }
1000
1001 // Get the code page used to interpret the bytes of the document as characters.
1002 int wxStyledTextCtrl::GetCodePage() {
1003 return SendMsg(2137, 0, 0);
1004 }
1005
1006 // Get the foreground colour of the caret.
1007 wxColour wxStyledTextCtrl::GetCaretForeground() {
1008 long c = SendMsg(2138, 0, 0);
1009 return wxColourFromLong(c);
1010 }
1011
1012 // In read-only mode?
1013 bool wxStyledTextCtrl::GetReadOnly() {
1014 return SendMsg(2140, 0, 0) != 0;
1015 }
1016
1017 // Sets the position of the caret.
1018 void wxStyledTextCtrl::SetCurrentPos(int pos) {
1019 SendMsg(2141, pos, 0);
1020 }
1021
1022 // Sets the position that starts the selection - this becomes the anchor.
1023 void wxStyledTextCtrl::SetSelectionStart(int pos) {
1024 SendMsg(2142, pos, 0);
1025 }
1026
1027 // Returns the position at the start of the selection.
1028 int wxStyledTextCtrl::GetSelectionStart() {
1029 return SendMsg(2143, 0, 0);
1030 }
1031
1032 // Sets the position that ends the selection - this becomes the currentPosition.
1033 void wxStyledTextCtrl::SetSelectionEnd(int pos) {
1034 SendMsg(2144, pos, 0);
1035 }
1036
1037 // Returns the position at the end of the selection.
1038 int wxStyledTextCtrl::GetSelectionEnd() {
1039 return SendMsg(2145, 0, 0);
1040 }
1041
1042 // Sets the print magnification added to the point size of each style for printing.
1043 void wxStyledTextCtrl::SetPrintMagnification(int magnification) {
1044 SendMsg(2146, magnification, 0);
1045 }
1046
1047 // Returns the print magnification.
1048 int wxStyledTextCtrl::GetPrintMagnification() {
1049 return SendMsg(2147, 0, 0);
1050 }
1051
1052 // Modify colours when printing for clearer printed text.
1053 void wxStyledTextCtrl::SetPrintColourMode(int mode) {
1054 SendMsg(2148, mode, 0);
1055 }
1056
1057 // Returns the print colour mode.
1058 int wxStyledTextCtrl::GetPrintColourMode() {
1059 return SendMsg(2149, 0, 0);
1060 }
1061
1062 // Find some text in the document.
1063 int wxStyledTextCtrl::FindText(int minPos, int maxPos,
1064 const wxString& text,
1065 int flags) {
1066 TextToFind ft;
1067 ft.chrg.cpMin = minPos;
1068 ft.chrg.cpMax = maxPos;
1069 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
1070 ft.lpstrText = (char*)(const char*)buf;
1071
1072 return SendMsg(2150, flags, (long)&ft);
1073 }
1074
1075 // On Windows, will draw the document into a display context such as a printer.
1076 int wxStyledTextCtrl::FormatRange(bool doDraw,
1077 int startPos,
1078 int endPos,
1079 wxDC* draw,
1080 wxDC* target,
1081 wxRect renderRect,
1082 wxRect pageRect) {
1083 RangeToFormat fr;
1084
1085 if (endPos < startPos) {
1086 int temp = startPos;
1087 startPos = endPos;
1088 endPos = temp;
1089 }
1090 fr.hdc = draw;
1091 fr.hdcTarget = target;
1092 fr.rc.top = renderRect.GetTop();
1093 fr.rc.left = renderRect.GetLeft();
1094 fr.rc.right = renderRect.GetRight();
1095 fr.rc.bottom = renderRect.GetBottom();
1096 fr.rcPage.top = pageRect.GetTop();
1097 fr.rcPage.left = pageRect.GetLeft();
1098 fr.rcPage.right = pageRect.GetRight();
1099 fr.rcPage.bottom = pageRect.GetBottom();
1100 fr.chrg.cpMin = startPos;
1101 fr.chrg.cpMax = endPos;
1102
1103 return SendMsg(2151, doDraw, (long)&fr);
1104 }
1105
1106 // Retrieve the display line at the top of the display.
1107 int wxStyledTextCtrl::GetFirstVisibleLine() {
1108 return SendMsg(2152, 0, 0);
1109 }
1110
1111 // Retrieve the contents of a line.
1112 wxString wxStyledTextCtrl::GetLine(int line) {
1113 int len = LineLength(line);
1114 if (!len) return wxEmptyString;
1115
1116 wxMemoryBuffer mbuf(len+1);
1117 char* buf = (char*)mbuf.GetWriteBuf(len+1);
1118 SendMsg(2153, line, (long)buf);
1119 mbuf.UngetWriteBuf(len);
1120 mbuf.AppendByte(0);
1121 return stc2wx(buf);
1122 }
1123
1124 // Returns the number of lines in the document. There is always at least one.
1125 int wxStyledTextCtrl::GetLineCount() {
1126 return SendMsg(2154, 0, 0);
1127 }
1128
1129 // Sets the size in pixels of the left margin.
1130 void wxStyledTextCtrl::SetMarginLeft(int pixelWidth) {
1131 SendMsg(2155, 0, pixelWidth);
1132 }
1133
1134 // Returns the size in pixels of the left margin.
1135 int wxStyledTextCtrl::GetMarginLeft() {
1136 return SendMsg(2156, 0, 0);
1137 }
1138
1139 // Sets the size in pixels of the right margin.
1140 void wxStyledTextCtrl::SetMarginRight(int pixelWidth) {
1141 SendMsg(2157, 0, pixelWidth);
1142 }
1143
1144 // Returns the size in pixels of the right margin.
1145 int wxStyledTextCtrl::GetMarginRight() {
1146 return SendMsg(2158, 0, 0);
1147 }
1148
1149 // Is the document different from when it was last saved?
1150 bool wxStyledTextCtrl::GetModify() {
1151 return SendMsg(2159, 0, 0) != 0;
1152 }
1153
1154 // Select a range of text.
1155 void wxStyledTextCtrl::SetSelection(int start, int end) {
1156 SendMsg(2160, start, end);
1157 }
1158
1159 // Retrieve the selected text.
1160 wxString wxStyledTextCtrl::GetSelectedText() {
1161 int start;
1162 int end;
1163
1164 GetSelection(&start, &end);
1165 int len = end - start;
1166 if (!len) return wxEmptyString;
1167
1168 wxMemoryBuffer mbuf(len+2);
1169 char* buf = (char*)mbuf.GetWriteBuf(len+1);
1170 SendMsg(2161, 0, (long)buf);
1171 mbuf.UngetWriteBuf(len);
1172 mbuf.AppendByte(0);
1173 return stc2wx(buf);
1174 }
1175
1176 // Retrieve a range of text.
1177 wxString wxStyledTextCtrl::GetTextRange(int startPos, int endPos) {
1178 if (endPos < startPos) {
1179 int temp = startPos;
1180 startPos = endPos;
1181 endPos = temp;
1182 }
1183 int len = endPos - startPos;
1184 if (!len) return wxEmptyString;
1185 wxMemoryBuffer mbuf(len+1);
1186 char* buf = (char*)mbuf.GetWriteBuf(len);
1187 TextRange tr;
1188 tr.lpstrText = buf;
1189 tr.chrg.cpMin = startPos;
1190 tr.chrg.cpMax = endPos;
1191 SendMsg(2162, 0, (long)&tr);
1192 mbuf.UngetWriteBuf(len);
1193 mbuf.AppendByte(0);
1194 return stc2wx(buf);
1195 }
1196
1197 // Draw the selection in normal style or with selection highlighted.
1198 void wxStyledTextCtrl::HideSelection(bool normal) {
1199 SendMsg(2163, normal, 0);
1200 }
1201
1202 // Retrieve the line containing a position.
1203 int wxStyledTextCtrl::LineFromPosition(int pos) {
1204 return SendMsg(2166, pos, 0);
1205 }
1206
1207 // Retrieve the position at the start of a line.
1208 int wxStyledTextCtrl::PositionFromLine(int line) {
1209 return SendMsg(2167, line, 0);
1210 }
1211
1212 // Scroll horizontally and vertically.
1213 void wxStyledTextCtrl::LineScroll(int columns, int lines) {
1214 SendMsg(2168, columns, lines);
1215 }
1216
1217 // Ensure the caret is visible.
1218 void wxStyledTextCtrl::EnsureCaretVisible() {
1219 SendMsg(2169, 0, 0);
1220 }
1221
1222 // Replace the selected text with the argument text.
1223 void wxStyledTextCtrl::ReplaceSelection(const wxString& text) {
1224 SendMsg(2170, 0, (long)(const char*)wx2stc(text));
1225 }
1226
1227 // Set to read only or read write.
1228 void wxStyledTextCtrl::SetReadOnly(bool readOnly) {
1229 SendMsg(2171, readOnly, 0);
1230 }
1231
1232 // Will a paste succeed?
1233 bool wxStyledTextCtrl::CanPaste() {
1234 return SendMsg(2173, 0, 0) != 0;
1235 }
1236
1237 // Are there any undoable actions in the undo history?
1238 bool wxStyledTextCtrl::CanUndo() {
1239 return SendMsg(2174, 0, 0) != 0;
1240 }
1241
1242 // Delete the undo history.
1243 void wxStyledTextCtrl::EmptyUndoBuffer() {
1244 SendMsg(2175, 0, 0);
1245 }
1246
1247 // Undo one action in the undo history.
1248 void wxStyledTextCtrl::Undo() {
1249 SendMsg(2176, 0, 0);
1250 }
1251
1252 // Cut the selection to the clipboard.
1253 void wxStyledTextCtrl::Cut() {
1254 SendMsg(2177, 0, 0);
1255 }
1256
1257 // Copy the selection to the clipboard.
1258 void wxStyledTextCtrl::Copy() {
1259 SendMsg(2178, 0, 0);
1260 }
1261
1262 // Paste the contents of the clipboard into the document replacing the selection.
1263 void wxStyledTextCtrl::Paste() {
1264 SendMsg(2179, 0, 0);
1265 }
1266
1267 // Clear the selection.
1268 void wxStyledTextCtrl::Clear() {
1269 SendMsg(2180, 0, 0);
1270 }
1271
1272 // Replace the contents of the document with the argument text.
1273 void wxStyledTextCtrl::SetText(const wxString& text) {
1274 SendMsg(2181, 0, (long)(const char*)wx2stc(text));
1275 }
1276
1277 // Retrieve all the text in the document.
1278 wxString wxStyledTextCtrl::GetText() {
1279 int len = GetTextLength();
1280 wxMemoryBuffer mbuf(len+1); // leave room for the null...
1281 char* buf = (char*)mbuf.GetWriteBuf(len+1);
1282 SendMsg(2182, len+1, (long)buf);
1283 mbuf.UngetWriteBuf(len);
1284 mbuf.AppendByte(0);
1285 return stc2wx(buf);
1286 }
1287
1288 // Retrieve the number of characters in the document.
1289 int wxStyledTextCtrl::GetTextLength() {
1290 return SendMsg(2183, 0, 0);
1291 }
1292
1293 // Set to overtype (true) or insert mode.
1294 void wxStyledTextCtrl::SetOvertype(bool overtype) {
1295 SendMsg(2186, overtype, 0);
1296 }
1297
1298 // Returns true if overtype mode is active otherwise false is returned.
1299 bool wxStyledTextCtrl::GetOvertype() {
1300 return SendMsg(2187, 0, 0) != 0;
1301 }
1302
1303 // Set the width of the insert mode caret.
1304 void wxStyledTextCtrl::SetCaretWidth(int pixelWidth) {
1305 SendMsg(2188, pixelWidth, 0);
1306 }
1307
1308 // Returns the width of the insert mode caret.
1309 int wxStyledTextCtrl::GetCaretWidth() {
1310 return SendMsg(2189, 0, 0);
1311 }
1312
1313 // Sets the position that starts the target which is used for updating the
1314 // document without affecting the scroll position.
1315 void wxStyledTextCtrl::SetTargetStart(int pos) {
1316 SendMsg(2190, pos, 0);
1317 }
1318
1319 // Get the position that starts the target.
1320 int wxStyledTextCtrl::GetTargetStart() {
1321 return SendMsg(2191, 0, 0);
1322 }
1323
1324 // Sets the position that ends the target which is used for updating the
1325 // document without affecting the scroll position.
1326 void wxStyledTextCtrl::SetTargetEnd(int pos) {
1327 SendMsg(2192, pos, 0);
1328 }
1329
1330 // Get the position that ends the target.
1331 int wxStyledTextCtrl::GetTargetEnd() {
1332 return SendMsg(2193, 0, 0);
1333 }
1334
1335 // Replace the target text with the argument text.
1336 // Text is counted so it can contain NULs.
1337 // Returns the length of the replacement text.
1338
1339 int wxStyledTextCtrl::ReplaceTarget(const wxString& text) {
1340 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
1341 return SendMsg(2194, strlen(buf), (long)(const char*)buf);
1342 }
1343
1344 // Replace the target text with the argument text after \d processing.
1345 // Text is counted so it can contain NULs.
1346 // Looks for \d where d is between 1 and 9 and replaces these with the strings
1347 // matched in the last search operation which were surrounded by \( and \).
1348 // Returns the length of the replacement text including any change
1349 // caused by processing the \d patterns.
1350
1351 int wxStyledTextCtrl::ReplaceTargetRE(const wxString& text) {
1352 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
1353 return SendMsg(2195, strlen(buf), (long)(const char*)buf);
1354 }
1355
1356 // Search for a counted string in the target and set the target to the found
1357 // range. Text is counted so it can contain NULs.
1358 // Returns length of range or -1 for failure in which case target is not moved.
1359
1360 int wxStyledTextCtrl::SearchInTarget(const wxString& text) {
1361 wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
1362 return SendMsg(2197, strlen(buf), (long)(const char*)buf);
1363 }
1364
1365 // Set the search flags used by SearchInTarget.
1366 void wxStyledTextCtrl::SetSearchFlags(int flags) {
1367 SendMsg(2198, flags, 0);
1368 }
1369
1370 // Get the search flags used by SearchInTarget.
1371 int wxStyledTextCtrl::GetSearchFlags() {
1372 return SendMsg(2199, 0, 0);
1373 }
1374
1375 // Show a call tip containing a definition near position pos.
1376 void wxStyledTextCtrl::CallTipShow(int pos, const wxString& definition) {
1377 SendMsg(2200, pos, (long)(const char*)wx2stc(definition));
1378 }
1379
1380 // Remove the call tip from the screen.
1381 void wxStyledTextCtrl::CallTipCancel() {
1382 SendMsg(2201, 0, 0);
1383 }
1384
1385 // Is there an active call tip?
1386 bool wxStyledTextCtrl::CallTipActive() {
1387 return SendMsg(2202, 0, 0) != 0;
1388 }
1389
1390 // Retrieve the position where the caret was before displaying the call tip.
1391 int wxStyledTextCtrl::CallTipPosAtStart() {
1392 return SendMsg(2203, 0, 0);
1393 }
1394
1395 // Highlight a segment of the definition.
1396 void wxStyledTextCtrl::CallTipSetHighlight(int start, int end) {
1397 SendMsg(2204, start, end);
1398 }
1399
1400 // Set the background colour for the call tip.
1401 void wxStyledTextCtrl::CallTipSetBackground(const wxColour& back) {
1402 SendMsg(2205, wxColourAsLong(back), 0);
1403 }
1404
1405 // Set the foreground colour for the call tip.
1406 void wxStyledTextCtrl::CallTipSetForeground(const wxColour& fore) {
1407 SendMsg(2206, wxColourAsLong(fore), 0);
1408 }
1409
1410 // Set the foreground colour for the highlighted part of the call tip.
1411 void wxStyledTextCtrl::CallTipSetForegroundHighlight(const wxColour& fore) {
1412 SendMsg(2207, wxColourAsLong(fore), 0);
1413 }
1414
1415 // Find the display line of a document line taking hidden lines into account.
1416 int wxStyledTextCtrl::VisibleFromDocLine(int line) {
1417 return SendMsg(2220, line, 0);
1418 }
1419
1420 // Find the document line of a display line taking hidden lines into account.
1421 int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay) {
1422 return SendMsg(2221, lineDisplay, 0);
1423 }
1424
1425 // Set the fold level of a line.
1426 // This encodes an integer level along with flags indicating whether the
1427 // line is a header and whether it is effectively white space.
1428 void wxStyledTextCtrl::SetFoldLevel(int line, int level) {
1429 SendMsg(2222, line, level);
1430 }
1431
1432 // Retrieve the fold level of a line.
1433 int wxStyledTextCtrl::GetFoldLevel(int line) {
1434 return SendMsg(2223, line, 0);
1435 }
1436
1437 // Find the last child line of a header line.
1438 int wxStyledTextCtrl::GetLastChild(int line, int level) {
1439 return SendMsg(2224, line, level);
1440 }
1441
1442 // Find the parent line of a child line.
1443 int wxStyledTextCtrl::GetFoldParent(int line) {
1444 return SendMsg(2225, line, 0);
1445 }
1446
1447 // Make a range of lines visible.
1448 void wxStyledTextCtrl::ShowLines(int lineStart, int lineEnd) {
1449 SendMsg(2226, lineStart, lineEnd);
1450 }
1451
1452 // Make a range of lines invisible.
1453 void wxStyledTextCtrl::HideLines(int lineStart, int lineEnd) {
1454 SendMsg(2227, lineStart, lineEnd);
1455 }
1456
1457 // Is a line visible?
1458 bool wxStyledTextCtrl::GetLineVisible(int line) {
1459 return SendMsg(2228, line, 0) != 0;
1460 }
1461
1462 // Show the children of a header line.
1463 void wxStyledTextCtrl::SetFoldExpanded(int line, bool expanded) {
1464 SendMsg(2229, line, expanded);
1465 }
1466
1467 // Is a header line expanded?
1468 bool wxStyledTextCtrl::GetFoldExpanded(int line) {
1469 return SendMsg(2230, line, 0) != 0;
1470 }
1471
1472 // Switch a header line between expanded and contracted.
1473 void wxStyledTextCtrl::ToggleFold(int line) {
1474 SendMsg(2231, line, 0);
1475 }
1476
1477 // Ensure a particular line is visible by expanding any header line hiding it.
1478 void wxStyledTextCtrl::EnsureVisible(int line) {
1479 SendMsg(2232, line, 0);
1480 }
1481
1482 // Set some style options for folding.
1483 void wxStyledTextCtrl::SetFoldFlags(int flags) {
1484 SendMsg(2233, flags, 0);
1485 }
1486
1487 // Ensure a particular line is visible by expanding any header line hiding it.
1488 // Use the currently set visibility policy to determine which range to display.
1489 void wxStyledTextCtrl::EnsureVisibleEnforcePolicy(int line) {
1490 SendMsg(2234, line, 0);
1491 }
1492
1493 // Sets whether a tab pressed when caret is within indentation indents.
1494 void wxStyledTextCtrl::SetTabIndents(bool tabIndents) {
1495 SendMsg(2260, tabIndents, 0);
1496 }
1497
1498 // Does a tab pressed when caret is within indentation indent?
1499 bool wxStyledTextCtrl::GetTabIndents() {
1500 return SendMsg(2261, 0, 0) != 0;
1501 }
1502
1503 // Sets whether a backspace pressed when caret is within indentation unindents.
1504 void wxStyledTextCtrl::SetBackSpaceUnIndents(bool bsUnIndents) {
1505 SendMsg(2262, bsUnIndents, 0);
1506 }
1507
1508 // Does a backspace pressed when caret is within indentation unindent?
1509 bool wxStyledTextCtrl::GetBackSpaceUnIndents() {
1510 return SendMsg(2263, 0, 0) != 0;
1511 }
1512
1513 // Sets the time the mouse must sit still to generate a mouse dwell event.
1514 void wxStyledTextCtrl::SetMouseDwellTime(int periodMilliseconds) {
1515 SendMsg(2264, periodMilliseconds, 0);
1516 }
1517
1518 // Retrieve the time the mouse must sit still to generate a mouse dwell event.
1519 int wxStyledTextCtrl::GetMouseDwellTime() {
1520 return SendMsg(2265, 0, 0);
1521 }
1522
1523 // Get position of start of word.
1524 int wxStyledTextCtrl::WordStartPosition(int pos, bool onlyWordCharacters) {
1525 return SendMsg(2266, pos, onlyWordCharacters);
1526 }
1527
1528 // Get position of end of word.
1529 int wxStyledTextCtrl::WordEndPosition(int pos, bool onlyWordCharacters) {
1530 return SendMsg(2267, pos, onlyWordCharacters);
1531 }
1532
1533 // Sets whether text is word wrapped.
1534 void wxStyledTextCtrl::SetWrapMode(int mode) {
1535 SendMsg(2268, mode, 0);
1536 }
1537
1538 // Retrieve whether text is word wrapped.
1539 int wxStyledTextCtrl::GetWrapMode() {
1540 return SendMsg(2269, 0, 0);
1541 }
1542
1543 // Set the display mode of visual flags for wrapped lines.
1544 void wxStyledTextCtrl::SetWrapVisualFlags(int wrapVisualFlags) {
1545 SendMsg(2460, wrapVisualFlags, 0);
1546 }
1547
1548 // Retrive the display mode of visual flags for wrapped lines.
1549 int wxStyledTextCtrl::GetWrapVisualFlags() {
1550 return SendMsg(2461, 0, 0);
1551 }
1552
1553 // Set the location of visual flags for wrapped lines.
1554 void wxStyledTextCtrl::SetWrapVisualFlagsLocation(int wrapVisualFlagsLocation) {
1555 SendMsg(2462, wrapVisualFlagsLocation, 0);
1556 }
1557
1558 // Retrive the location of visual flags for wrapped lines.
1559 int wxStyledTextCtrl::GetWrapVisualFlagsLocation() {
1560 return SendMsg(2463, 0, 0);
1561 }
1562
1563 // Set the start indent for wrapped lines.
1564 void wxStyledTextCtrl::SetWrapStartIndent(int indent) {
1565 SendMsg(2464, indent, 0);
1566 }
1567
1568 // Retrive the start indent for wrapped lines.
1569 int wxStyledTextCtrl::GetWrapStartIndent() {
1570 return SendMsg(2465, 0, 0);
1571 }
1572
1573 // Sets the degree of caching of layout information.
1574 void wxStyledTextCtrl::SetLayoutCache(int mode) {
1575 SendMsg(2272, mode, 0);
1576 }
1577
1578 // Retrieve the degree of caching of layout information.
1579 int wxStyledTextCtrl::GetLayoutCache() {
1580 return SendMsg(2273, 0, 0);
1581 }
1582
1583 // Sets the document width assumed for scrolling.
1584 void wxStyledTextCtrl::SetScrollWidth(int pixelWidth) {
1585 SendMsg(2274, pixelWidth, 0);
1586 }
1587
1588 // Retrieve the document width assumed for scrolling.
1589 int wxStyledTextCtrl::GetScrollWidth() {
1590 return SendMsg(2275, 0, 0);
1591 }
1592
1593 // Measure the pixel width of some text in a particular style.
1594 // NUL terminated text argument.
1595 // Does not handle tab or control characters.
1596 int wxStyledTextCtrl::TextWidth(int style, const wxString& text) {
1597 return SendMsg(2276, style, (long)(const char*)wx2stc(text));
1598 }
1599
1600 // Sets the scroll range so that maximum scroll position has
1601 // the last line at the bottom of the view (default).
1602 // Setting this to false allows scrolling one page below the last line.
1603 void wxStyledTextCtrl::SetEndAtLastLine(bool endAtLastLine) {
1604 SendMsg(2277, endAtLastLine, 0);
1605 }
1606
1607 // Retrieve whether the maximum scroll position has the last
1608 // line at the bottom of the view.
1609 int wxStyledTextCtrl::GetEndAtLastLine() {
1610 return SendMsg(2278, 0, 0);
1611 }
1612
1613 // Retrieve the height of a particular line of text in pixels.
1614 int wxStyledTextCtrl::TextHeight(int line) {
1615 return SendMsg(2279, line, 0);
1616 }
1617
1618 // Show or hide the vertical scroll bar.
1619 void wxStyledTextCtrl::SetUseVerticalScrollBar(bool show) {
1620 SendMsg(2280, show, 0);
1621 }
1622
1623 // Is the vertical scroll bar visible?
1624 bool wxStyledTextCtrl::GetUseVerticalScrollBar() {
1625 return SendMsg(2281, 0, 0) != 0;
1626 }
1627
1628 // Append a string to the end of the document without changing the selection.
1629 void wxStyledTextCtrl::AppendText(int length, const wxString& text) {
1630 SendMsg(2282, length, (long)(const char*)wx2stc(text));
1631 }
1632
1633 // Is drawing done in two phases with backgrounds drawn before foregrounds?
1634 bool wxStyledTextCtrl::GetTwoPhaseDraw() {
1635 return SendMsg(2283, 0, 0) != 0;
1636 }
1637
1638 // In twoPhaseDraw mode, drawing is performed in two phases, first the background
1639 // and then the foreground. This avoids chopping off characters that overlap the next run.
1640 void wxStyledTextCtrl::SetTwoPhaseDraw(bool twoPhase) {
1641 SendMsg(2284, twoPhase, 0);
1642 }
1643
1644 // Make the target range start and end be the same as the selection range start and end.
1645 void wxStyledTextCtrl::TargetFromSelection() {
1646 SendMsg(2287, 0, 0);
1647 }
1648
1649 // Join the lines in the target.
1650 void wxStyledTextCtrl::LinesJoin() {
1651 SendMsg(2288, 0, 0);
1652 }
1653
1654 // Split the lines in the target into lines that are less wide than pixelWidth
1655 // where possible.
1656 void wxStyledTextCtrl::LinesSplit(int pixelWidth) {
1657 SendMsg(2289, pixelWidth, 0);
1658 }
1659
1660 // Set the colours used as a chequerboard pattern in the fold margin
1661 void wxStyledTextCtrl::SetFoldMarginColour(bool useSetting, const wxColour& back) {
1662 SendMsg(2290, useSetting, wxColourAsLong(back));
1663 }
1664 void wxStyledTextCtrl::SetFoldMarginHiColour(bool useSetting, const wxColour& fore) {
1665 SendMsg(2291, useSetting, wxColourAsLong(fore));
1666 }
1667
1668 // Move caret down one line.
1669 void wxStyledTextCtrl::LineDown() {
1670 SendMsg(2300, 0, 0);
1671 }
1672
1673 // Move caret down one line extending selection to new caret position.
1674 void wxStyledTextCtrl::LineDownExtend() {
1675 SendMsg(2301, 0, 0);
1676 }
1677
1678 // Move caret up one line.
1679 void wxStyledTextCtrl::LineUp() {
1680 SendMsg(2302, 0, 0);
1681 }
1682
1683 // Move caret up one line extending selection to new caret position.
1684 void wxStyledTextCtrl::LineUpExtend() {
1685 SendMsg(2303, 0, 0);
1686 }
1687
1688 // Move caret left one character.
1689 void wxStyledTextCtrl::CharLeft() {
1690 SendMsg(2304, 0, 0);
1691 }
1692
1693 // Move caret left one character extending selection to new caret position.
1694 void wxStyledTextCtrl::CharLeftExtend() {
1695 SendMsg(2305, 0, 0);
1696 }
1697
1698 // Move caret right one character.
1699 void wxStyledTextCtrl::CharRight() {
1700 SendMsg(2306, 0, 0);
1701 }
1702
1703 // Move caret right one character extending selection to new caret position.
1704 void wxStyledTextCtrl::CharRightExtend() {
1705 SendMsg(2307, 0, 0);
1706 }
1707
1708 // Move caret left one word.
1709 void wxStyledTextCtrl::WordLeft() {
1710 SendMsg(2308, 0, 0);
1711 }
1712
1713 // Move caret left one word extending selection to new caret position.
1714 void wxStyledTextCtrl::WordLeftExtend() {
1715 SendMsg(2309, 0, 0);
1716 }
1717
1718 // Move caret right one word.
1719 void wxStyledTextCtrl::WordRight() {
1720 SendMsg(2310, 0, 0);
1721 }
1722
1723 // Move caret right one word extending selection to new caret position.
1724 void wxStyledTextCtrl::WordRightExtend() {
1725 SendMsg(2311, 0, 0);
1726 }
1727
1728 // Move caret to first position on line.
1729 void wxStyledTextCtrl::Home() {
1730 SendMsg(2312, 0, 0);
1731 }
1732
1733 // Move caret to first position on line extending selection to new caret position.
1734 void wxStyledTextCtrl::HomeExtend() {
1735 SendMsg(2313, 0, 0);
1736 }
1737
1738 // Move caret to last position on line.
1739 void wxStyledTextCtrl::LineEnd() {
1740 SendMsg(2314, 0, 0);
1741 }
1742
1743 // Move caret to last position on line extending selection to new caret position.
1744 void wxStyledTextCtrl::LineEndExtend() {
1745 SendMsg(2315, 0, 0);
1746 }
1747
1748 // Move caret to first position in document.
1749 void wxStyledTextCtrl::DocumentStart() {
1750 SendMsg(2316, 0, 0);
1751 }
1752
1753 // Move caret to first position in document extending selection to new caret position.
1754 void wxStyledTextCtrl::DocumentStartExtend() {
1755 SendMsg(2317, 0, 0);
1756 }
1757
1758 // Move caret to last position in document.
1759 void wxStyledTextCtrl::DocumentEnd() {
1760 SendMsg(2318, 0, 0);
1761 }
1762
1763 // Move caret to last position in document extending selection to new caret position.
1764 void wxStyledTextCtrl::DocumentEndExtend() {
1765 SendMsg(2319, 0, 0);
1766 }
1767
1768 // Move caret one page up.
1769 void wxStyledTextCtrl::PageUp() {
1770 SendMsg(2320, 0, 0);
1771 }
1772
1773 // Move caret one page up extending selection to new caret position.
1774 void wxStyledTextCtrl::PageUpExtend() {
1775 SendMsg(2321, 0, 0);
1776 }
1777
1778 // Move caret one page down.
1779 void wxStyledTextCtrl::PageDown() {
1780 SendMsg(2322, 0, 0);
1781 }
1782
1783 // Move caret one page down extending selection to new caret position.
1784 void wxStyledTextCtrl::PageDownExtend() {
1785 SendMsg(2323, 0, 0);
1786 }
1787
1788 // Switch from insert to overtype mode or the reverse.
1789 void wxStyledTextCtrl::EditToggleOvertype() {
1790 SendMsg(2324, 0, 0);
1791 }
1792
1793 // Cancel any modes such as call tip or auto-completion list display.
1794 void wxStyledTextCtrl::Cancel() {
1795 SendMsg(2325, 0, 0);
1796 }
1797
1798 // Delete the selection or if no selection, the character before the caret.
1799 void wxStyledTextCtrl::DeleteBack() {
1800 SendMsg(2326, 0, 0);
1801 }
1802
1803 // If selection is empty or all on one line replace the selection with a tab character.
1804 // If more than one line selected, indent the lines.
1805 void wxStyledTextCtrl::Tab() {
1806 SendMsg(2327, 0, 0);
1807 }
1808
1809 // Dedent the selected lines.
1810 void wxStyledTextCtrl::BackTab() {
1811 SendMsg(2328, 0, 0);
1812 }
1813
1814 // Insert a new line, may use a CRLF, CR or LF depending on EOL mode.
1815 void wxStyledTextCtrl::NewLine() {
1816 SendMsg(2329, 0, 0);
1817 }
1818
1819 // Insert a Form Feed character.
1820 void wxStyledTextCtrl::FormFeed() {
1821 SendMsg(2330, 0, 0);
1822 }
1823
1824 // Move caret to before first visible character on line.
1825 // If already there move to first character on line.
1826 void wxStyledTextCtrl::VCHome() {
1827 SendMsg(2331, 0, 0);
1828 }
1829
1830 // Like VCHome but extending selection to new caret position.
1831 void wxStyledTextCtrl::VCHomeExtend() {
1832 SendMsg(2332, 0, 0);
1833 }
1834
1835 // Magnify the displayed text by increasing the sizes by 1 point.
1836 void wxStyledTextCtrl::ZoomIn() {
1837 SendMsg(2333, 0, 0);
1838 }
1839
1840 // Make the displayed text smaller by decreasing the sizes by 1 point.
1841 void wxStyledTextCtrl::ZoomOut() {
1842 SendMsg(2334, 0, 0);
1843 }
1844
1845 // Delete the word to the left of the caret.
1846 void wxStyledTextCtrl::DelWordLeft() {
1847 SendMsg(2335, 0, 0);
1848 }
1849
1850 // Delete the word to the right of the caret.
1851 void wxStyledTextCtrl::DelWordRight() {
1852 SendMsg(2336, 0, 0);
1853 }
1854
1855 // Cut the line containing the caret.
1856 void wxStyledTextCtrl::LineCut() {
1857 SendMsg(2337, 0, 0);
1858 }
1859
1860 // Delete the line containing the caret.
1861 void wxStyledTextCtrl::LineDelete() {
1862 SendMsg(2338, 0, 0);
1863 }
1864
1865 // Switch the current line with the previous.
1866 void wxStyledTextCtrl::LineTranspose() {
1867 SendMsg(2339, 0, 0);
1868 }
1869
1870 // Duplicate the current line.
1871 void wxStyledTextCtrl::LineDuplicate() {
1872 SendMsg(2404, 0, 0);
1873 }
1874
1875 // Transform the selection to lower case.
1876 void wxStyledTextCtrl::LowerCase() {
1877 SendMsg(2340, 0, 0);
1878 }
1879
1880 // Transform the selection to upper case.
1881 void wxStyledTextCtrl::UpperCase() {
1882 SendMsg(2341, 0, 0);
1883 }
1884
1885 // Scroll the document down, keeping the caret visible.
1886 void wxStyledTextCtrl::LineScrollDown() {
1887 SendMsg(2342, 0, 0);
1888 }
1889
1890 // Scroll the document up, keeping the caret visible.
1891 void wxStyledTextCtrl::LineScrollUp() {
1892 SendMsg(2343, 0, 0);
1893 }
1894
1895 // Delete the selection or if no selection, the character before the caret.
1896 // Will not delete the character before at the start of a line.
1897 void wxStyledTextCtrl::DeleteBackNotLine() {
1898 SendMsg(2344, 0, 0);
1899 }
1900
1901 // Move caret to first position on display line.
1902 void wxStyledTextCtrl::HomeDisplay() {
1903 SendMsg(2345, 0, 0);
1904 }
1905
1906 // Move caret to first position on display line extending selection to
1907 // new caret position.
1908 void wxStyledTextCtrl::HomeDisplayExtend() {
1909 SendMsg(2346, 0, 0);
1910 }
1911
1912 // Move caret to last position on display line.
1913 void wxStyledTextCtrl::LineEndDisplay() {
1914 SendMsg(2347, 0, 0);
1915 }
1916
1917 // Move caret to last position on display line extending selection to new
1918 // caret position.
1919 void wxStyledTextCtrl::LineEndDisplayExtend() {
1920 SendMsg(2348, 0, 0);
1921 }
1922
1923 // These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)?
1924 // except they behave differently when word-wrap is enabled:
1925 // They go first to the start / end of the display line, like (Home|LineEnd)Display
1926 // The difference is that, the cursor is already at the point, it goes on to the start
1927 // or end of the document line, as appropriate for (Home|LineEnd|VCHome)(Extend)?.
1928 void wxStyledTextCtrl::HomeWrap() {
1929 SendMsg(2349, 0, 0);
1930 }
1931 void wxStyledTextCtrl::HomeWrapExtend() {
1932 SendMsg(2450, 0, 0);
1933 }
1934 void wxStyledTextCtrl::LineEndWrap() {
1935 SendMsg(2451, 0, 0);
1936 }
1937 void wxStyledTextCtrl::LineEndWrapExtend() {
1938 SendMsg(2452, 0, 0);
1939 }
1940 void wxStyledTextCtrl::VCHomeWrap() {
1941 SendMsg(2453, 0, 0);
1942 }
1943 void wxStyledTextCtrl::VCHomeWrapExtend() {
1944 SendMsg(2454, 0, 0);
1945 }
1946
1947 // Copy the line containing the caret.
1948 void wxStyledTextCtrl::LineCopy() {
1949 SendMsg(2455, 0, 0);
1950 }
1951
1952 // Move the caret inside current view if it's not there already.
1953 void wxStyledTextCtrl::MoveCaretInsideView() {
1954 SendMsg(2401, 0, 0);
1955 }
1956
1957 // How many characters are on a line, not including end of line characters?
1958 int wxStyledTextCtrl::LineLength(int line) {
1959 return SendMsg(2350, line, 0);
1960 }
1961
1962 // Highlight the characters at two positions.
1963 void wxStyledTextCtrl::BraceHighlight(int pos1, int pos2) {
1964 SendMsg(2351, pos1, pos2);
1965 }
1966
1967 // Highlight the character at a position indicating there is no matching brace.
1968 void wxStyledTextCtrl::BraceBadLight(int pos) {
1969 SendMsg(2352, pos, 0);
1970 }
1971
1972 // Find the position of a matching brace or INVALID_POSITION if no match.
1973 int wxStyledTextCtrl::BraceMatch(int pos) {
1974 return SendMsg(2353, pos, 0);
1975 }
1976
1977 // Are the end of line characters visible?
1978 bool wxStyledTextCtrl::GetViewEOL() {
1979 return SendMsg(2355, 0, 0) != 0;
1980 }
1981
1982 // Make the end of line characters visible or invisible.
1983 void wxStyledTextCtrl::SetViewEOL(bool visible) {
1984 SendMsg(2356, visible, 0);
1985 }
1986
1987 // Retrieve a pointer to the document object.
1988 void* wxStyledTextCtrl::GetDocPointer() {
1989 return (void*)SendMsg(2357);
1990 }
1991
1992 // Change the document object used.
1993 void wxStyledTextCtrl::SetDocPointer(void* docPointer) {
1994 SendMsg(2358, 0, (long)docPointer);
1995 }
1996
1997 // Set which document modification events are sent to the container.
1998 void wxStyledTextCtrl::SetModEventMask(int mask) {
1999 SendMsg(2359, mask, 0);
2000 }
2001
2002 // Retrieve the column number which text should be kept within.
2003 int wxStyledTextCtrl::GetEdgeColumn() {
2004 return SendMsg(2360, 0, 0);
2005 }
2006
2007 // Set the column number of the edge.
2008 // If text goes past the edge then it is highlighted.
2009 void wxStyledTextCtrl::SetEdgeColumn(int column) {
2010 SendMsg(2361, column, 0);
2011 }
2012
2013 // Retrieve the edge highlight mode.
2014 int wxStyledTextCtrl::GetEdgeMode() {
2015 return SendMsg(2362, 0, 0);
2016 }
2017
2018 // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
2019 // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
2020 void wxStyledTextCtrl::SetEdgeMode(int mode) {
2021 SendMsg(2363, mode, 0);
2022 }
2023
2024 // Retrieve the colour used in edge indication.
2025 wxColour wxStyledTextCtrl::GetEdgeColour() {
2026 long c = SendMsg(2364, 0, 0);
2027 return wxColourFromLong(c);
2028 }
2029
2030 // Change the colour used in edge indication.
2031 void wxStyledTextCtrl::SetEdgeColour(const wxColour& edgeColour) {
2032 SendMsg(2365, wxColourAsLong(edgeColour), 0);
2033 }
2034
2035 // Sets the current caret position to be the search anchor.
2036 void wxStyledTextCtrl::SearchAnchor() {
2037 SendMsg(2366, 0, 0);
2038 }
2039
2040 // Find some text starting at the search anchor.
2041 // Does not ensure the selection is visible.
2042 int wxStyledTextCtrl::SearchNext(int flags, const wxString& text) {
2043 return SendMsg(2367, flags, (long)(const char*)wx2stc(text));
2044 }
2045
2046 // Find some text starting at the search anchor and moving backwards.
2047 // Does not ensure the selection is visible.
2048 int wxStyledTextCtrl::SearchPrev(int flags, const wxString& text) {
2049 return SendMsg(2368, flags, (long)(const char*)wx2stc(text));
2050 }
2051
2052 // Retrieves the number of lines completely visible.
2053 int wxStyledTextCtrl::LinesOnScreen() {
2054 return SendMsg(2370, 0, 0);
2055 }
2056
2057 // Set whether a pop up menu is displayed automatically when the user presses
2058 // the wrong mouse button.
2059 void wxStyledTextCtrl::UsePopUp(bool allowPopUp) {
2060 SendMsg(2371, allowPopUp, 0);
2061 }
2062
2063 // Is the selection rectangular? The alternative is the more common stream selection.
2064 bool wxStyledTextCtrl::SelectionIsRectangle() {
2065 return SendMsg(2372, 0, 0) != 0;
2066 }
2067
2068 // Set the zoom level. This number of points is added to the size of all fonts.
2069 // It may be positive to magnify or negative to reduce.
2070 void wxStyledTextCtrl::SetZoom(int zoom) {
2071 SendMsg(2373, zoom, 0);
2072 }
2073
2074 // Retrieve the zoom level.
2075 int wxStyledTextCtrl::GetZoom() {
2076 return SendMsg(2374, 0, 0);
2077 }
2078
2079 // Create a new document object.
2080 // Starts with reference count of 1 and not selected into editor.
2081 void* wxStyledTextCtrl::CreateDocument() {
2082 return (void*)SendMsg(2375);
2083 }
2084
2085 // Extend life of document.
2086 void wxStyledTextCtrl::AddRefDocument(void* docPointer) {
2087 SendMsg(2376, 0, (long)docPointer);
2088 }
2089
2090 // Release a reference to the document, deleting document if it fades to black.
2091 void wxStyledTextCtrl::ReleaseDocument(void* docPointer) {
2092 SendMsg(2377, 0, (long)docPointer);
2093 }
2094
2095 // Get which document modification events are sent to the container.
2096 int wxStyledTextCtrl::GetModEventMask() {
2097 return SendMsg(2378, 0, 0);
2098 }
2099
2100 // Change internal focus flag.
2101 void wxStyledTextCtrl::SetSTCFocus(bool focus) {
2102 SendMsg(2380, focus, 0);
2103 }
2104
2105 // Get internal focus flag.
2106 bool wxStyledTextCtrl::GetSTCFocus() {
2107 return SendMsg(2381, 0, 0) != 0;
2108 }
2109
2110 // Change error status - 0 = OK.
2111 void wxStyledTextCtrl::SetStatus(int statusCode) {
2112 SendMsg(2382, statusCode, 0);
2113 }
2114
2115 // Get error status.
2116 int wxStyledTextCtrl::GetStatus() {
2117 return SendMsg(2383, 0, 0);
2118 }
2119
2120 // Set whether the mouse is captured when its button is pressed.
2121 void wxStyledTextCtrl::SetMouseDownCaptures(bool captures) {
2122 SendMsg(2384, captures, 0);
2123 }
2124
2125 // Get whether mouse gets captured.
2126 bool wxStyledTextCtrl::GetMouseDownCaptures() {
2127 return SendMsg(2385, 0, 0) != 0;
2128 }
2129
2130 // Sets the cursor to one of the SC_CURSOR* values.
2131 void wxStyledTextCtrl::SetSTCCursor(int cursorType) {
2132 SendMsg(2386, cursorType, 0);
2133 }
2134
2135 // Get cursor type.
2136 int wxStyledTextCtrl::GetSTCCursor() {
2137 return SendMsg(2387, 0, 0);
2138 }
2139
2140 // Change the way control characters are displayed:
2141 // If symbol is < 32, keep the drawn way, else, use the given character.
2142 void wxStyledTextCtrl::SetControlCharSymbol(int symbol) {
2143 SendMsg(2388, symbol, 0);
2144 }
2145
2146 // Get the way control characters are displayed.
2147 int wxStyledTextCtrl::GetControlCharSymbol() {
2148 return SendMsg(2389, 0, 0);
2149 }
2150
2151 // Move to the previous change in capitalisation.
2152 void wxStyledTextCtrl::WordPartLeft() {
2153 SendMsg(2390, 0, 0);
2154 }
2155
2156 // Move to the previous change in capitalisation extending selection
2157 // to new caret position.
2158 void wxStyledTextCtrl::WordPartLeftExtend() {
2159 SendMsg(2391, 0, 0);
2160 }
2161
2162 // Move to the change next in capitalisation.
2163 void wxStyledTextCtrl::WordPartRight() {
2164 SendMsg(2392, 0, 0);
2165 }
2166
2167 // Move to the next change in capitalisation extending selection
2168 // to new caret position.
2169 void wxStyledTextCtrl::WordPartRightExtend() {
2170 SendMsg(2393, 0, 0);
2171 }
2172
2173 // Set the way the display area is determined when a particular line
2174 // is to be moved to by Find, FindNext, GotoLine, etc.
2175 void wxStyledTextCtrl::SetVisiblePolicy(int visiblePolicy, int visibleSlop) {
2176 SendMsg(2394, visiblePolicy, visibleSlop);
2177 }
2178
2179 // Delete back from the current position to the start of the line.
2180 void wxStyledTextCtrl::DelLineLeft() {
2181 SendMsg(2395, 0, 0);
2182 }
2183
2184 // Delete forwards from the current position to the end of the line.
2185 void wxStyledTextCtrl::DelLineRight() {
2186 SendMsg(2396, 0, 0);
2187 }
2188
2189 // Get and Set the xOffset (ie, horizonal scroll position).
2190 void wxStyledTextCtrl::SetXOffset(int newOffset) {
2191 SendMsg(2397, newOffset, 0);
2192 }
2193 int wxStyledTextCtrl::GetXOffset() {
2194 return SendMsg(2398, 0, 0);
2195 }
2196
2197 // Set the last x chosen value to be the caret x position.
2198 void wxStyledTextCtrl::ChooseCaretX() {
2199 SendMsg(2399, 0, 0);
2200 }
2201
2202 // Set the way the caret is kept visible when going sideway.
2203 // The exclusion zone is given in pixels.
2204 void wxStyledTextCtrl::SetXCaretPolicy(int caretPolicy, int caretSlop) {
2205 SendMsg(2402, caretPolicy, caretSlop);
2206 }
2207
2208 // Set the way the line the caret is on is kept visible.
2209 // The exclusion zone is given in lines.
2210 void wxStyledTextCtrl::SetYCaretPolicy(int caretPolicy, int caretSlop) {
2211 SendMsg(2403, caretPolicy, caretSlop);
2212 }
2213
2214 // Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
2215 void wxStyledTextCtrl::SetPrintWrapMode(int mode) {
2216 SendMsg(2406, mode, 0);
2217 }
2218
2219 // Is printing line wrapped?
2220 int wxStyledTextCtrl::GetPrintWrapMode() {
2221 return SendMsg(2407, 0, 0);
2222 }
2223
2224 // Set a fore colour for active hotspots.
2225 void wxStyledTextCtrl::SetHotspotActiveForeground(bool useSetting, const wxColour& fore) {
2226 SendMsg(2410, useSetting, wxColourAsLong(fore));
2227 }
2228
2229 // Set a back colour for active hotspots.
2230 void wxStyledTextCtrl::SetHotspotActiveBackground(bool useSetting, const wxColour& back) {
2231 SendMsg(2411, useSetting, wxColourAsLong(back));
2232 }
2233
2234 // Enable / Disable underlining active hotspots.
2235 void wxStyledTextCtrl::SetHotspotActiveUnderline(bool underline) {
2236 SendMsg(2412, underline, 0);
2237 }
2238
2239 // Limit hotspots to single line so hotspots on two lines don't merge.
2240 void wxStyledTextCtrl::SetHotspotSingleLine(bool singleLine) {
2241 SendMsg(2421, singleLine, 0);
2242 }
2243
2244 // Move caret between paragraphs (delimited by empty lines).
2245 void wxStyledTextCtrl::ParaDown() {
2246 SendMsg(2413, 0, 0);
2247 }
2248 void wxStyledTextCtrl::ParaDownExtend() {
2249 SendMsg(2414, 0, 0);
2250 }
2251 void wxStyledTextCtrl::ParaUp() {
2252 SendMsg(2415, 0, 0);
2253 }
2254 void wxStyledTextCtrl::ParaUpExtend() {
2255 SendMsg(2416, 0, 0);
2256 }
2257
2258 // Given a valid document position, return the previous position taking code
2259 // page into account. Returns 0 if passed 0.
2260 int wxStyledTextCtrl::PositionBefore(int pos) {
2261 return SendMsg(2417, pos, 0);
2262 }
2263
2264 // Given a valid document position, return the next position taking code
2265 // page into account. Maximum value returned is the last position in the document.
2266 int wxStyledTextCtrl::PositionAfter(int pos) {
2267 return SendMsg(2418, pos, 0);
2268 }
2269
2270 // Copy a range of text to the clipboard. Positions are clipped into the document.
2271 void wxStyledTextCtrl::CopyRange(int start, int end) {
2272 SendMsg(2419, start, end);
2273 }
2274
2275 // Copy argument text to the clipboard.
2276 void wxStyledTextCtrl::CopyText(int length, const wxString& text) {
2277 SendMsg(2420, length, (long)(const char*)wx2stc(text));
2278 }
2279
2280 // Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE) or
2281 // by lines (SC_SEL_LINES).
2282 void wxStyledTextCtrl::SetSelectionMode(int mode) {
2283 SendMsg(2422, mode, 0);
2284 }
2285
2286 // Get the mode of the current selection.
2287 int wxStyledTextCtrl::GetSelectionMode() {
2288 return SendMsg(2423, 0, 0);
2289 }
2290
2291 // Retrieve the position of the start of the selection at the given line (INVALID_POSITION if no selection on this line).
2292 int wxStyledTextCtrl::GetLineSelStartPosition(int line) {
2293 return SendMsg(2424, line, 0);
2294 }
2295
2296 // Retrieve the position of the end of the selection at the given line (INVALID_POSITION if no selection on this line).
2297 int wxStyledTextCtrl::GetLineSelEndPosition(int line) {
2298 return SendMsg(2425, line, 0);
2299 }
2300
2301 // Move caret down one line, extending rectangular selection to new caret position.
2302 void wxStyledTextCtrl::LineDownRectExtend() {
2303 SendMsg(2426, 0, 0);
2304 }
2305
2306 // Move caret up one line, extending rectangular selection to new caret position.
2307 void wxStyledTextCtrl::LineUpRectExtend() {
2308 SendMsg(2427, 0, 0);
2309 }
2310
2311 // Move caret left one character, extending rectangular selection to new caret position.
2312 void wxStyledTextCtrl::CharLeftRectExtend() {
2313 SendMsg(2428, 0, 0);
2314 }
2315
2316 // Move caret right one character, extending rectangular selection to new caret position.
2317 void wxStyledTextCtrl::CharRightRectExtend() {
2318 SendMsg(2429, 0, 0);
2319 }
2320
2321 // Move caret to first position on line, extending rectangular selection to new caret position.
2322 void wxStyledTextCtrl::HomeRectExtend() {
2323 SendMsg(2430, 0, 0);
2324 }
2325
2326 // Move caret to before first visible character on line.
2327 // If already there move to first character on line.
2328 // In either case, extend rectangular selection to new caret position.
2329 void wxStyledTextCtrl::VCHomeRectExtend() {
2330 SendMsg(2431, 0, 0);
2331 }
2332
2333 // Move caret to last position on line, extending rectangular selection to new caret position.
2334 void wxStyledTextCtrl::LineEndRectExtend() {
2335 SendMsg(2432, 0, 0);
2336 }
2337
2338 // Move caret one page up, extending rectangular selection to new caret position.
2339 void wxStyledTextCtrl::PageUpRectExtend() {
2340 SendMsg(2433, 0, 0);
2341 }
2342
2343 // Move caret one page down, extending rectangular selection to new caret position.
2344 void wxStyledTextCtrl::PageDownRectExtend() {
2345 SendMsg(2434, 0, 0);
2346 }
2347
2348 // Move caret to top of page, or one page up if already at top of page.
2349 void wxStyledTextCtrl::StutteredPageUp() {
2350 SendMsg(2435, 0, 0);
2351 }
2352
2353 // Move caret to top of page, or one page up if already at top of page, extending selection to new caret position.
2354 void wxStyledTextCtrl::StutteredPageUpExtend() {
2355 SendMsg(2436, 0, 0);
2356 }
2357
2358 // Move caret to bottom of page, or one page down if already at bottom of page.
2359 void wxStyledTextCtrl::StutteredPageDown() {
2360 SendMsg(2437, 0, 0);
2361 }
2362
2363 // Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position.
2364 void wxStyledTextCtrl::StutteredPageDownExtend() {
2365 SendMsg(2438, 0, 0);
2366 }
2367
2368 // Move caret left one word, position cursor at end of word.
2369 void wxStyledTextCtrl::WordLeftEnd() {
2370 SendMsg(2439, 0, 0);
2371 }
2372
2373 // Move caret left one word, position cursor at end of word, extending selection to new caret position.
2374 void wxStyledTextCtrl::WordLeftEndExtend() {
2375 SendMsg(2440, 0, 0);
2376 }
2377
2378 // Move caret right one word, position cursor at end of word.
2379 void wxStyledTextCtrl::WordRightEnd() {
2380 SendMsg(2441, 0, 0);
2381 }
2382
2383 // Move caret right one word, position cursor at end of word, extending selection to new caret position.
2384 void wxStyledTextCtrl::WordRightEndExtend() {
2385 SendMsg(2442, 0, 0);
2386 }
2387
2388 // Set the set of characters making up whitespace for when moving or selecting by word.
2389 // Should be called after SetWordChars.
2390 void wxStyledTextCtrl::SetWhitespaceChars(const wxString& characters) {
2391 SendMsg(2443, 0, (long)(const char*)wx2stc(characters));
2392 }
2393
2394 // Reset the set of characters for whitespace and word characters to the defaults.
2395 void wxStyledTextCtrl::SetCharsDefault() {
2396 SendMsg(2444, 0, 0);
2397 }
2398
2399 // Get currently selected item position in the auto-completion list
2400 int wxStyledTextCtrl::AutoCompGetCurrent() {
2401 return SendMsg(2445, 0, 0);
2402 }
2403
2404 // Enlarge the document to a particular size of text bytes.
2405 void wxStyledTextCtrl::Allocate(int bytes) {
2406 SendMsg(2446, bytes, 0);
2407 }
2408
2409 // Start notifying the container of all key presses and commands.
2410 void wxStyledTextCtrl::StartRecord() {
2411 SendMsg(3001, 0, 0);
2412 }
2413
2414 // Stop notifying the container of all key presses and commands.
2415 void wxStyledTextCtrl::StopRecord() {
2416 SendMsg(3002, 0, 0);
2417 }
2418
2419 // Set the lexing language of the document.
2420 void wxStyledTextCtrl::SetLexer(int lexer) {
2421 SendMsg(4001, lexer, 0);
2422 }
2423
2424 // Retrieve the lexing language of the document.
2425 int wxStyledTextCtrl::GetLexer() {
2426 return SendMsg(4002, 0, 0);
2427 }
2428
2429 // Colourise a segment of the document using the current lexing language.
2430 void wxStyledTextCtrl::Colourise(int start, int end) {
2431 SendMsg(4003, start, end);
2432 }
2433
2434 // Set up a value that may be used by a lexer for some optional feature.
2435 void wxStyledTextCtrl::SetProperty(const wxString& key, const wxString& value) {
2436 SendMsg(4004, (long)(const char*)wx2stc(key), (long)(const char*)wx2stc(value));
2437 }
2438
2439 // Set up the key words used by the lexer.
2440 void wxStyledTextCtrl::SetKeyWords(int keywordSet, const wxString& keyWords) {
2441 SendMsg(4005, keywordSet, (long)(const char*)wx2stc(keyWords));
2442 }
2443
2444 // Set the lexing language of the document based on string name.
2445 void wxStyledTextCtrl::SetLexerLanguage(const wxString& language) {
2446 SendMsg(4006, 0, (long)(const char*)wx2stc(language));
2447 }
2448
2449 // END of generated section
2450 //----------------------------------------------------------------------
2451
2452
2453 // Returns the line number of the line with the caret.
2454 int wxStyledTextCtrl::GetCurrentLine() {
2455 int line = LineFromPosition(GetCurrentPos());
2456 return line;
2457 }
2458
2459
2460 // Extract style settings from a spec-string which is composed of one or
2461 // more of the following comma separated elements:
2462 //
2463 // bold turns on bold
2464 // italic turns on italics
2465 // fore:[name or #RRGGBB] sets the foreground colour
2466 // back:[name or #RRGGBB] sets the background colour
2467 // face:[facename] sets the font face name to use
2468 // size:[num] sets the font size in points
2469 // eol turns on eol filling
2470 // underline turns on underlining
2471 //
2472 void wxStyledTextCtrl::StyleSetSpec(int styleNum, const wxString& spec) {
2473
2474 wxStringTokenizer tkz(spec, wxT(","));
2475 while (tkz.HasMoreTokens()) {
2476 wxString token = tkz.GetNextToken();
2477
2478 wxString option = token.BeforeFirst(':');
2479 wxString val = token.AfterFirst(':');
2480
2481 if (option == wxT("bold"))
2482 StyleSetBold(styleNum, true);
2483
2484 else if (option == wxT("italic"))
2485 StyleSetItalic(styleNum, true);
2486
2487 else if (option == wxT("underline"))
2488 StyleSetUnderline(styleNum, true);
2489
2490 else if (option == wxT("eol"))
2491 StyleSetEOLFilled(styleNum, true);
2492
2493 else if (option == wxT("size")) {
2494 long points;
2495 if (val.ToLong(&points))
2496 StyleSetSize(styleNum, points);
2497 }
2498
2499 else if (option == wxT("face"))
2500 StyleSetFaceName(styleNum, val);
2501
2502 else if (option == wxT("fore"))
2503 StyleSetForeground(styleNum, wxColourFromSpec(val));
2504
2505 else if (option == wxT("back"))
2506 StyleSetBackground(styleNum, wxColourFromSpec(val));
2507 }
2508 }
2509
2510
2511 // Set style size, face, bold, italic, and underline attributes from
2512 // a wxFont's attributes.
2513 void wxStyledTextCtrl::StyleSetFont(int styleNum, wxFont& font) {
2514 #ifdef __WXGTK__
2515 // Ensure that the native font is initialized
2516 int x, y;
2517 GetTextExtent(wxT("X"), &x, &y, NULL, NULL, &font);
2518 #endif
2519 int size = font.GetPointSize();
2520 wxString faceName = font.GetFaceName();
2521 bool bold = font.GetWeight() == wxBOLD;
2522 bool italic = font.GetStyle() != wxNORMAL;
2523 bool under = font.GetUnderlined();
2524
2525 // TODO: add encoding/charset mapping
2526 StyleSetFontAttr(styleNum, size, faceName, bold, italic, under);
2527 }
2528
2529 // Set all font style attributes at once.
2530 void wxStyledTextCtrl::StyleSetFontAttr(int styleNum, int size,
2531 const wxString& faceName,
2532 bool bold, bool italic,
2533 bool underline) {
2534 StyleSetSize(styleNum, size);
2535 StyleSetFaceName(styleNum, faceName);
2536 StyleSetBold(styleNum, bold);
2537 StyleSetItalic(styleNum, italic);
2538 StyleSetUnderline(styleNum, underline);
2539
2540 // TODO: add encoding/charset mapping
2541 }
2542
2543
2544 // Perform one of the operations defined by the wxSTC_CMD_* constants.
2545 void wxStyledTextCtrl::CmdKeyExecute(int cmd) {
2546 SendMsg(cmd);
2547 }
2548
2549
2550 // Set the left and right margin in the edit area, measured in pixels.
2551 void wxStyledTextCtrl::SetMargins(int left, int right) {
2552 SetMarginLeft(left);
2553 SetMarginRight(right);
2554 }
2555
2556
2557 // Retrieve the start and end positions of the current selection.
2558 void wxStyledTextCtrl::GetSelection(int* startPos, int* endPos) {
2559 if (startPos != NULL)
2560 *startPos = SendMsg(SCI_GETSELECTIONSTART);
2561 if (endPos != NULL)
2562 *endPos = SendMsg(SCI_GETSELECTIONEND);
2563 }
2564
2565
2566 // Retrieve the point in the window where a position is displayed.
2567 wxPoint wxStyledTextCtrl::PointFromPosition(int pos) {
2568 int x = SendMsg(SCI_POINTXFROMPOSITION, 0, pos);
2569 int y = SendMsg(SCI_POINTYFROMPOSITION, 0, pos);
2570 return wxPoint(x, y);
2571 }
2572
2573 // Scroll enough to make the given line visible
2574 void wxStyledTextCtrl::ScrollToLine(int line) {
2575 m_swx->DoScrollToLine(line);
2576 }
2577
2578
2579 // Scroll enough to make the given column visible
2580 void wxStyledTextCtrl::ScrollToColumn(int column) {
2581 m_swx->DoScrollToColumn(column);
2582 }
2583
2584
2585 bool wxStyledTextCtrl::SaveFile(const wxString& filename)
2586 {
2587 wxFile file(filename, wxFile::write);
2588
2589 if (!file.IsOpened())
2590 return false;
2591
2592 bool success = file.Write(GetText(), *wxConvCurrent);
2593
2594 if (success)
2595 SetSavePoint();
2596
2597 return success;
2598 }
2599
2600 bool wxStyledTextCtrl::LoadFile(const wxString& filename)
2601 {
2602 bool success = false;
2603 wxFile file(filename, wxFile::read);
2604
2605 if (file.IsOpened())
2606 {
2607 wxString contents;
2608 // get the file size (assume it is not huge file...)
2609 ssize_t len = (ssize_t)file.Length();
2610
2611 if (len > 0)
2612 {
2613 #if wxUSE_UNICODE
2614 wxMemoryBuffer buffer(len+1);
2615 success = (file.Read(buffer.GetData(), len) == len);
2616 if (success) {
2617 ((char*)buffer.GetData())[len] = 0;
2618 contents = wxString(buffer, *wxConvCurrent, len);
2619 }
2620 #else
2621 wxString buffer;
2622 success = (file.Read(wxStringBuffer(buffer, len), len) == len);
2623 contents = buffer;
2624 #endif
2625 }
2626 else
2627 {
2628 if (len == 0)
2629 success = true; // empty file is ok
2630 else
2631 success = false; // len == wxInvalidOffset
2632 }
2633
2634 if (success)
2635 {
2636 SetText(contents);
2637 EmptyUndoBuffer();
2638 SetSavePoint();
2639 }
2640 }
2641
2642 return success;
2643 }
2644
2645
2646 #if wxUSE_DRAG_AND_DROP
2647 wxDragResult wxStyledTextCtrl::DoDragOver(wxCoord x, wxCoord y, wxDragResult def) {
2648 return m_swx->DoDragOver(x, y, def);
2649 }
2650
2651
2652 bool wxStyledTextCtrl::DoDropText(long x, long y, const wxString& data) {
2653 return m_swx->DoDropText(x, y, data);
2654 }
2655 #endif
2656
2657
2658 void wxStyledTextCtrl::SetUseAntiAliasing(bool useAA) {
2659 m_swx->SetUseAntiAliasing(useAA);
2660 }
2661
2662 bool wxStyledTextCtrl::GetUseAntiAliasing() {
2663 return m_swx->GetUseAntiAliasing();
2664 }
2665
2666 //----------------------------------------------------------------------
2667 // Event handlers
2668
2669 void wxStyledTextCtrl::OnPaint(wxPaintEvent& WXUNUSED(evt)) {
2670 wxPaintDC dc(this);
2671 m_swx->DoPaint(&dc, GetUpdateRegion().GetBox());
2672 }
2673
2674 void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent& evt) {
2675 if (evt.GetOrientation() == wxHORIZONTAL)
2676 m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
2677 else
2678 m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
2679 }
2680
2681 void wxStyledTextCtrl::OnScroll(wxScrollEvent& evt) {
2682 wxScrollBar* sb = wxDynamicCast(evt.GetEventObject(), wxScrollBar);
2683 if (sb) {
2684 if (sb->IsVertical())
2685 m_swx->DoVScroll(evt.GetEventType(), evt.GetPosition());
2686 else
2687 m_swx->DoHScroll(evt.GetEventType(), evt.GetPosition());
2688 }
2689 }
2690
2691 void wxStyledTextCtrl::OnSize(wxSizeEvent& WXUNUSED(evt)) {
2692 if (m_swx) {
2693 wxSize sz = GetClientSize();
2694 m_swx->DoSize(sz.x, sz.y);
2695 }
2696 }
2697
2698 void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
2699 SetFocus();
2700 wxPoint pt = evt.GetPosition();
2701 m_swx->DoLeftButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
2702 evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
2703 }
2704
2705 void wxStyledTextCtrl::OnMouseMove(wxMouseEvent& evt) {
2706 wxPoint pt = evt.GetPosition();
2707 m_swx->DoLeftButtonMove(Point(pt.x, pt.y));
2708 }
2709
2710 void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent& evt) {
2711 wxPoint pt = evt.GetPosition();
2712 m_swx->DoLeftButtonUp(Point(pt.x, pt.y), m_stopWatch.Time(),
2713 evt.ControlDown());
2714 }
2715
2716
2717 void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent& evt) {
2718 wxPoint pt = evt.GetPosition();
2719 m_swx->DoContextMenu(Point(pt.x, pt.y));
2720 }
2721
2722
2723 void wxStyledTextCtrl::OnMouseMiddleUp(wxMouseEvent& evt) {
2724 wxPoint pt = evt.GetPosition();
2725 m_swx->DoMiddleButtonUp(Point(pt.x, pt.y));
2726 }
2727
2728 void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent& evt) {
2729 wxPoint pt = evt.GetPosition();
2730 ScreenToClient(&pt.x, &pt.y);
2731 /*
2732 Show context menu at event point if it's within the window,
2733 or at caret location if not
2734 */
2735 wxHitTest ht = this->HitTest(pt);
2736 if (ht != wxHT_WINDOW_INSIDE) {
2737 pt = this->PointFromPosition(this->GetCurrentPos());
2738 }
2739 m_swx->DoContextMenu(Point(pt.x, pt.y));
2740 }
2741
2742
2743 void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent& evt) {
2744 m_swx->DoMouseWheel(evt.GetWheelRotation(),
2745 evt.GetWheelDelta(),
2746 evt.GetLinesPerAction(),
2747 evt.ControlDown(),
2748 evt.IsPageScroll());
2749 }
2750
2751
2752 void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
2753 // On (some?) non-US keyboards the AltGr key is required to enter some
2754 // common characters. It comes to us as both Alt and Ctrl down so we need
2755 // to let the char through in that case, otherwise if only ctrl or only
2756 // alt let's skip it.
2757 bool ctrl = evt.ControlDown();
2758 #ifdef __WXMAC__
2759 // On the Mac the Alt key is just a modifier key (like Shift) so we need
2760 // to allow the char events to be processed when Alt is pressed.
2761 // TODO: Should we check MetaDown instead in this case?
2762 bool alt = false;
2763 #else
2764 bool alt = evt.AltDown();
2765 #endif
2766 bool skip = ((ctrl || alt) && ! (ctrl && alt));
2767
2768 int key = evt.GetKeyCode();
2769
2770 // printf("OnChar key:%d consumed:%d ctrl:%d alt:%d skip:%d\n",
2771 // key, m_lastKeyDownConsumed, ctrl, alt, skip);
2772
2773 if ( (key <= WXK_START || key > WXK_COMMAND) &&
2774 !m_lastKeyDownConsumed && !skip) {
2775 m_swx->DoAddChar(key);
2776 return;
2777 }
2778 evt.Skip();
2779 }
2780
2781
2782 void wxStyledTextCtrl::OnKeyDown(wxKeyEvent& evt) {
2783 int key = evt.GetKeyCode();
2784 bool shift = evt.ShiftDown(),
2785 ctrl = evt.ControlDown(),
2786 alt = evt.AltDown(),
2787 meta = evt.MetaDown();
2788
2789 int processed = m_swx->DoKeyDown(key, shift, ctrl, alt, meta, &m_lastKeyDownConsumed);
2790
2791 // printf("KeyDn key:%d shift:%d ctrl:%d alt:%d processed:%d consumed:%d\n",
2792 // key, shift, ctrl, alt, processed, m_lastKeyDownConsumed);
2793
2794 if (!processed && !m_lastKeyDownConsumed)
2795 evt.Skip();
2796 }
2797
2798
2799 void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent& evt) {
2800 m_swx->DoLoseFocus();
2801 evt.Skip();
2802 }
2803
2804
2805 void wxStyledTextCtrl::OnGainFocus(wxFocusEvent& evt) {
2806 m_swx->DoGainFocus();
2807 evt.Skip();
2808 }
2809
2810
2811 void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(evt)) {
2812 m_swx->DoSysColourChange();
2813 }
2814
2815
2816 void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent& WXUNUSED(evt)) {
2817 // do nothing to help avoid flashing
2818 }
2819
2820
2821
2822 void wxStyledTextCtrl::OnMenu(wxCommandEvent& evt) {
2823 m_swx->DoCommand(evt.GetId());
2824 }
2825
2826
2827 void wxStyledTextCtrl::OnListBox(wxCommandEvent& WXUNUSED(evt)) {
2828 m_swx->DoOnListBox();
2829 }
2830
2831
2832 void wxStyledTextCtrl::OnIdle(wxIdleEvent& evt) {
2833 m_swx->DoOnIdle(evt);
2834 }
2835
2836
2837 wxSize wxStyledTextCtrl::DoGetBestSize() const
2838 {
2839 // What would be the best size for a wxSTC?
2840 // Just give a reasonable minimum until something else can be figured out.
2841 return wxSize(200,100);
2842 }
2843
2844
2845 //----------------------------------------------------------------------
2846 // Turn notifications from Scintilla into events
2847
2848
2849 void wxStyledTextCtrl::NotifyChange() {
2850 wxStyledTextEvent evt(wxEVT_STC_CHANGE, GetId());
2851 evt.SetEventObject(this);
2852 GetEventHandler()->ProcessEvent(evt);
2853 }
2854
2855
2856 static void SetEventText(wxStyledTextEvent& evt, const char* text,
2857 size_t length) {
2858 if(!text) return;
2859
2860 // The unicode conversion MUST have a null byte to terminate the
2861 // string so move it into a buffer first and give it one.
2862 wxMemoryBuffer buf(length+1);
2863 buf.AppendData((void*)text, length);
2864 buf.AppendByte(0);
2865 evt.SetText(stc2wx(buf));
2866 }
2867
2868
2869 void wxStyledTextCtrl::NotifyParent(SCNotification* _scn) {
2870 SCNotification& scn = *_scn;
2871 wxStyledTextEvent evt(0, GetId());
2872
2873 evt.SetEventObject(this);
2874 evt.SetPosition(scn.position);
2875 evt.SetKey(scn.ch);
2876 evt.SetModifiers(scn.modifiers);
2877
2878 switch (scn.nmhdr.code) {
2879 case SCN_STYLENEEDED:
2880 evt.SetEventType(wxEVT_STC_STYLENEEDED);
2881 break;
2882
2883 case SCN_CHARADDED:
2884 evt.SetEventType(wxEVT_STC_CHARADDED);
2885 break;
2886
2887 case SCN_SAVEPOINTREACHED:
2888 evt.SetEventType(wxEVT_STC_SAVEPOINTREACHED);
2889 break;
2890
2891 case SCN_SAVEPOINTLEFT:
2892 evt.SetEventType(wxEVT_STC_SAVEPOINTLEFT);
2893 break;
2894
2895 case SCN_MODIFYATTEMPTRO:
2896 evt.SetEventType(wxEVT_STC_ROMODIFYATTEMPT);
2897 break;
2898
2899 case SCN_KEY:
2900 evt.SetEventType(wxEVT_STC_KEY);
2901 break;
2902
2903 case SCN_DOUBLECLICK:
2904 evt.SetEventType(wxEVT_STC_DOUBLECLICK);
2905 break;
2906
2907 case SCN_UPDATEUI:
2908 evt.SetEventType(wxEVT_STC_UPDATEUI);
2909 break;
2910
2911 case SCN_MODIFIED:
2912 evt.SetEventType(wxEVT_STC_MODIFIED);
2913 evt.SetModificationType(scn.modificationType);
2914 SetEventText(evt, scn.text, scn.length);
2915 evt.SetLength(scn.length);
2916 evt.SetLinesAdded(scn.linesAdded);
2917 evt.SetLine(scn.line);
2918 evt.SetFoldLevelNow(scn.foldLevelNow);
2919 evt.SetFoldLevelPrev(scn.foldLevelPrev);
2920 break;
2921
2922 case SCN_MACRORECORD:
2923 evt.SetEventType(wxEVT_STC_MACRORECORD);
2924 evt.SetMessage(scn.message);
2925 evt.SetWParam(scn.wParam);
2926 evt.SetLParam(scn.lParam);
2927 break;
2928
2929 case SCN_MARGINCLICK:
2930 evt.SetEventType(wxEVT_STC_MARGINCLICK);
2931 evt.SetMargin(scn.margin);
2932 break;
2933
2934 case SCN_NEEDSHOWN:
2935 evt.SetEventType(wxEVT_STC_NEEDSHOWN);
2936 evt.SetLength(scn.length);
2937 break;
2938
2939 case SCN_PAINTED:
2940 evt.SetEventType(wxEVT_STC_PAINTED);
2941 break;
2942
2943 case SCN_USERLISTSELECTION:
2944 evt.SetEventType(wxEVT_STC_USERLISTSELECTION);
2945 evt.SetListType(scn.listType);
2946 SetEventText(evt, scn.text, strlen(scn.text));
2947 break;
2948
2949 case SCN_URIDROPPED:
2950 evt.SetEventType(wxEVT_STC_URIDROPPED);
2951 SetEventText(evt, scn.text, strlen(scn.text));
2952 break;
2953
2954 case SCN_DWELLSTART:
2955 evt.SetEventType(wxEVT_STC_DWELLSTART);
2956 evt.SetX(scn.x);
2957 evt.SetY(scn.y);
2958 break;
2959
2960 case SCN_DWELLEND:
2961 evt.SetEventType(wxEVT_STC_DWELLEND);
2962 evt.SetX(scn.x);
2963 evt.SetY(scn.y);
2964 break;
2965
2966 case SCN_ZOOM:
2967 evt.SetEventType(wxEVT_STC_ZOOM);
2968 break;
2969
2970 case SCN_HOTSPOTCLICK:
2971 evt.SetEventType(wxEVT_STC_HOTSPOT_CLICK);
2972 break;
2973
2974 case SCN_HOTSPOTDOUBLECLICK:
2975 evt.SetEventType(wxEVT_STC_HOTSPOT_DCLICK);
2976 break;
2977
2978 case SCN_CALLTIPCLICK:
2979 evt.SetEventType(wxEVT_STC_CALLTIP_CLICK);
2980 break;
2981
2982 default:
2983 return;
2984 }
2985
2986 GetEventHandler()->ProcessEvent(evt);
2987 }
2988
2989
2990 //----------------------------------------------------------------------
2991 //----------------------------------------------------------------------
2992 //----------------------------------------------------------------------
2993
2994 wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType, int id)
2995 : wxCommandEvent(commandType, id)
2996 {
2997 m_position = 0;
2998 m_key = 0;
2999 m_modifiers = 0;
3000 m_modificationType = 0;
3001 m_length = 0;
3002 m_linesAdded = 0;
3003 m_line = 0;
3004 m_foldLevelNow = 0;
3005 m_foldLevelPrev = 0;
3006 m_margin = 0;
3007 m_message = 0;
3008 m_wParam = 0;
3009 m_lParam = 0;
3010 m_listType = 0;
3011 m_x = 0;
3012 m_y = 0;
3013 m_dragAllowMove = false;
3014 #if wxUSE_DRAG_AND_DROP
3015 m_dragResult = wxDragNone;
3016 #endif
3017 }
3018
3019 bool wxStyledTextEvent::GetShift() const { return (m_modifiers & SCI_SHIFT) != 0; }
3020 bool wxStyledTextEvent::GetControl() const { return (m_modifiers & SCI_CTRL) != 0; }
3021 bool wxStyledTextEvent::GetAlt() const { return (m_modifiers & SCI_ALT) != 0; }
3022
3023
3024 wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent& event):
3025 wxCommandEvent(event)
3026 {
3027 m_position = event.m_position;
3028 m_key = event.m_key;
3029 m_modifiers = event.m_modifiers;
3030 m_modificationType = event.m_modificationType;
3031 m_text = event.m_text;
3032 m_length = event.m_length;
3033 m_linesAdded = event.m_linesAdded;
3034 m_line = event.m_line;
3035 m_foldLevelNow = event.m_foldLevelNow;
3036 m_foldLevelPrev = event.m_foldLevelPrev;
3037
3038 m_margin = event.m_margin;
3039
3040 m_message = event.m_message;
3041 m_wParam = event.m_wParam;
3042 m_lParam = event.m_lParam;
3043
3044 m_listType = event.m_listType;
3045 m_x = event.m_x;
3046 m_y = event.m_y;
3047
3048 m_dragText = event.m_dragText;
3049 m_dragAllowMove =event.m_dragAllowMove;
3050 #if wxUSE_DRAG_AND_DROP
3051 m_dragResult = event.m_dragResult;
3052 #endif
3053 }
3054
3055 //----------------------------------------------------------------------
3056 //----------------------------------------------------------------------
3057
3058
3059
3060
3061
3062
3063
3064
3065