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