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