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