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