1 ////////////////////////////////////////////////////////////////////////////
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
8 // namespace with all the classes and identifiers from Scintilla.
12 // Created: 13-Jan-2000
14 // Copyright: (c) 2000 by Total Control Software
15 // Licence: wxWindows license
16 /////////////////////////////////////////////////////////////////////////////
20 #include "wx/stc/stc.h"
21 #include "ScintillaWX.h"
23 #include <wx/tokenzr.h>
26 //----------------------------------------------------------------------
28 const wxChar
* wxSTCNameStr
= wxT("stcwindow");
30 DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE
)
31 DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED
)
32 DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED
)
33 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED
)
34 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT
)
35 DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT
)
36 DEFINE_EVENT_TYPE( wxEVT_STC_KEY
)
37 DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK
)
38 DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI
)
39 DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED
)
40 DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD
)
41 DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK
)
42 DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN
)
43 DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED
)
44 DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED
)
45 DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION
)
46 DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED
)
47 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART
)
48 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND
)
49 DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG
)
50 DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER
)
51 DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP
)
54 BEGIN_EVENT_TABLE(wxStyledTextCtrl
, wxControl
)
55 EVT_PAINT (wxStyledTextCtrl::OnPaint
)
56 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin
)
57 EVT_SCROLL (wxStyledTextCtrl::OnScroll
)
58 EVT_SIZE (wxStyledTextCtrl::OnSize
)
59 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown
)
61 // Let Scintilla see the double click as a second click
62 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown
)
64 EVT_MOTION (wxStyledTextCtrl::OnMouseMove
)
65 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp
)
67 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp
)
69 EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu
)
71 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel
)
72 EVT_CHAR (wxStyledTextCtrl::OnChar
)
73 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown
)
74 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus
)
75 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus
)
76 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged
)
77 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground
)
78 EVT_MENU_RANGE (-1, -1, wxStyledTextCtrl::OnMenu
)
79 EVT_LISTBOX_DCLICK (-1, wxStyledTextCtrl::OnListBox
)
83 IMPLEMENT_CLASS(wxStyledTextCtrl
, wxControl
)
84 IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent
, wxCommandEvent
)
86 // forces the linking of the lexer modules
87 int Scintilla_LinkLexers();
89 //----------------------------------------------------------------------
90 // Constructor and Destructor
92 wxStyledTextCtrl::wxStyledTextCtrl(wxWindow
*parent
,
97 const wxString
& name
) :
98 wxControl(parent
, id
, pos
, size
,
99 style
| wxVSCROLL
| wxHSCROLL
| wxWANTS_CHARS
| wxCLIP_CHILDREN
,
100 wxDefaultValidator
, name
)
102 Scintilla_LinkLexers();
103 m_swx
= new ScintillaWX(this);
105 m_lastKeyDownConsumed
= FALSE
;
109 // Put Scintilla into unicode (UTF-8) mode
110 SetCodePage(wxSTC_CP_UTF8
);
115 wxStyledTextCtrl::~wxStyledTextCtrl() {
120 //----------------------------------------------------------------------
122 long wxStyledTextCtrl::SendMsg(int msg
, long wp
, long lp
) {
124 return m_swx
->WndProc(msg
, wp
, lp
);
132 #define MAKELONG(a, b) ((a) | ((b) << 16))
135 static long wxColourAsLong(const wxColour
& co
) {
136 return (((long)co
.Blue() << 16) |
137 ((long)co
.Green() << 8) |
141 static wxColour
wxColourFromLong(long c
) {
143 clr
.Set(c
& 0xff, (c
>> 8) & 0xff, (c
>> 16) & 0xff);
148 static wxColour
wxColourFromSpec(const wxString
& spec
) {
149 // spec should be "#RRGGBB"
150 long red
, green
, blue
;
151 red
= green
= blue
= 0;
152 spec
.Mid(1,2).ToLong(&red
, 16);
153 spec
.Mid(3,2).ToLong(&green
, 16);
154 spec
.Mid(5,2).ToLong(&blue
, 16);
155 return wxColour(red
, green
, blue
);
159 //----------------------------------------------------------------------
160 // BEGIN generated section. The following code is automatically generated
161 // by gen_iface.py from the contents of Scintilla.iface. Do not edit
162 // this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
165 // Add text to the document
166 void wxStyledTextCtrl::AddText(const wxString
& text
) {
167 wxWX2MBbuf buf
= (wxWX2MBbuf
)text
.mb_str(wxConvUTF8
);
168 SendMsg(2001, strlen(buf
), (long)(const char*)buf
);
171 // Add array of cells to document
172 void wxStyledTextCtrl::AddStyledText(const wxMemoryBuffer
& data
) {
173 SendMsg(2002, data
.GetDataLen(), (long)data
.GetData());
176 // Insert string at a position
177 void wxStyledTextCtrl::InsertText(int pos
, const wxString
& text
) {
178 SendMsg(2003, pos
, (long)(const char*)text
.mb_str(wxConvUTF8
));
181 // Delete all text in the document
182 void wxStyledTextCtrl::ClearAll() {
186 // Set all style bytes to 0, remove all folding information
187 void wxStyledTextCtrl::ClearDocumentStyle() {
191 // The number of characters in the document
192 int wxStyledTextCtrl::GetLength() {
193 return SendMsg(2006, 0, 0);
196 // Returns the character byte at the position
197 int wxStyledTextCtrl::GetCharAt(int pos
) {
198 return SendMsg(2007, pos
, 0);
201 // Returns the position of the caret
202 int wxStyledTextCtrl::GetCurrentPos() {
203 return SendMsg(2008, 0, 0);
206 // Returns the position of the opposite end of the selection to the caret
207 int wxStyledTextCtrl::GetAnchor() {
208 return SendMsg(2009, 0, 0);
211 // Returns the style byte at the position
212 int wxStyledTextCtrl::GetStyleAt(int pos
) {
213 return SendMsg(2010, pos
, 0);
216 // Redoes the next action on the undo history
217 void wxStyledTextCtrl::Redo() {
221 // Choose between collecting actions into the undo
222 // history and discarding them.
223 void wxStyledTextCtrl::SetUndoCollection(bool collectUndo
) {
224 SendMsg(2012, collectUndo
, 0);
227 // Select all the text in the document.
228 void wxStyledTextCtrl::SelectAll() {
232 // Remember the current position in the undo history as the position
233 // at which the document was saved.
234 void wxStyledTextCtrl::SetSavePoint() {
238 // Retrieve a buffer of cells.
239 wxMemoryBuffer
wxStyledTextCtrl::GetStyledText(int startPos
, int endPos
) {
241 if (endPos
< startPos
) {
246 int len
= endPos
- startPos
;
247 if (!len
) return buf
;
249 tr
.lpstrText
= (char*)buf
.GetWriteBuf(len
*2+1);
250 tr
.chrg
.cpMin
= startPos
;
251 tr
.chrg
.cpMax
= endPos
;
252 len
= SendMsg(2015, 0, (long)&tr
);
253 buf
.UngetWriteBuf(len
);
257 // Are there any redoable actions in the undo history.
258 bool wxStyledTextCtrl::CanRedo() {
259 return SendMsg(2016, 0, 0) != 0;
262 // Retrieve the line number at which a particular marker is located
263 int wxStyledTextCtrl::MarkerLineFromHandle(int handle
) {
264 return SendMsg(2017, handle
, 0);
268 void wxStyledTextCtrl::MarkerDeleteHandle(int handle
) {
269 SendMsg(2018, handle
, 0);
272 // Is undo history being collected?
273 bool wxStyledTextCtrl::GetUndoCollection() {
274 return SendMsg(2019, 0, 0) != 0;
277 // Are white space characters currently visible?
278 // Returns one of SCWS_* constants.
279 int wxStyledTextCtrl::GetViewWhiteSpace() {
280 return SendMsg(2020, 0, 0);
283 // Make white space characters invisible, always visible or visible outside indentation.
284 void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS
) {
285 SendMsg(2021, viewWS
, 0);
288 // Find the position from a point within the window.
289 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt
) {
290 return SendMsg(2022, pt
.x
, pt
.y
);
293 // Find the position from a point within the window but return
294 // INVALID_POSITION if not close to text.
295 int wxStyledTextCtrl::PositionFromPointClose(int x
, int y
) {
296 return SendMsg(2023, x
, y
);
299 // Set caret to start of a line and ensure it is visible.
300 void wxStyledTextCtrl::GotoLine(int line
) {
301 SendMsg(2024, line
, 0);
304 // Set caret to a position and ensure it is visible.
305 void wxStyledTextCtrl::GotoPos(int pos
) {
306 SendMsg(2025, pos
, 0);
309 // Set the selection anchor to a position. The anchor is the opposite
310 // end of the selection from the caret.
311 void wxStyledTextCtrl::SetAnchor(int posAnchor
) {
312 SendMsg(2026, posAnchor
, 0);
315 // Retrieve the text of the line containing the caret.
316 // Returns the index of the caret on the line.
317 wxString
wxStyledTextCtrl::GetCurLine(int* linePos
) {
318 int len
= LineLength(GetCurrentLine());
320 if (linePos
) *linePos
= 0;
321 return wxEmptyString
;
324 wxMemoryBuffer
mbuf(len
+1);
325 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
327 int pos
= SendMsg(2027, len
+1, (long)buf
);
328 mbuf
.UngetWriteBuf(len
);
330 if (linePos
) *linePos
= pos
;
331 return wxString(buf
, wxConvUTF8
);
334 // Retrieve the position of the last correctly styled character.
335 int wxStyledTextCtrl::GetEndStyled() {
336 return SendMsg(2028, 0, 0);
339 // Convert all line endings in the document to one mode.
340 void wxStyledTextCtrl::ConvertEOLs(int eolMode
) {
341 SendMsg(2029, eolMode
, 0);
344 // Retrieve the current end of line mode - one of CRLF, CR, or LF.
345 int wxStyledTextCtrl::GetEOLMode() {
346 return SendMsg(2030, 0, 0);
349 // Set the current end of line mode.
350 void wxStyledTextCtrl::SetEOLMode(int eolMode
) {
351 SendMsg(2031, eolMode
, 0);
354 // Set the current styling position to pos and the styling mask to mask.
355 // The styling mask can be used to protect some bits in each styling byte from
357 void wxStyledTextCtrl::StartStyling(int pos
, int mask
) {
358 SendMsg(2032, pos
, mask
);
361 // Change style from current styling position for length characters to a style
362 // and move the current styling position to after this newly styled segment.
363 void wxStyledTextCtrl::SetStyling(int length
, int style
) {
364 SendMsg(2033, length
, style
);
367 // Is drawing done first into a buffer or direct to the screen.
368 bool wxStyledTextCtrl::GetBufferedDraw() {
369 return SendMsg(2034, 0, 0) != 0;
372 // If drawing is buffered then each line of text is drawn into a bitmap buffer
373 // before drawing it to the screen to avoid flicker.
374 void wxStyledTextCtrl::SetBufferedDraw(bool buffered
) {
375 SendMsg(2035, buffered
, 0);
378 // Change the visible size of a tab to be a multiple of the width of a space
380 void wxStyledTextCtrl::SetTabWidth(int tabWidth
) {
381 SendMsg(2036, tabWidth
, 0);
384 // Retrieve the visible size of a tab.
385 int wxStyledTextCtrl::GetTabWidth() {
386 return SendMsg(2121, 0, 0);
389 // Set the code page used to interpret the bytes of the document as characters.
390 void wxStyledTextCtrl::SetCodePage(int codePage
) {
392 wxASSERT_MSG(codePage
== wxSTC_CP_UTF8
,
393 wxT("Only wxSTC_CP_UTF8 may be used when wxUSE_UNICODE is on."));
395 wxASSERT_MSG(codePage
!= wxSTC_CP_UTF8
,
396 wxT("wxSTC_CP_UTF8 may not be used when wxUSE_UNICODE is off."));
398 SendMsg(2037, codePage
);
401 // Set the symbol used for a particular marker number,
402 // and optionally the fore and background colours.
403 void wxStyledTextCtrl::MarkerDefine(int markerNumber
, int markerSymbol
,
404 const wxColour
& foreground
,
405 const wxColour
& background
) {
407 SendMsg(2040, markerNumber
, markerSymbol
);
409 MarkerSetForeground(markerNumber
, foreground
);
411 MarkerSetBackground(markerNumber
, background
);
414 // Set the foreground colour used for a particular marker number.
415 void wxStyledTextCtrl::MarkerSetForeground(int markerNumber
, const wxColour
& fore
) {
416 SendMsg(2041, markerNumber
, wxColourAsLong(fore
));
419 // Set the background colour used for a particular marker number.
420 void wxStyledTextCtrl::MarkerSetBackground(int markerNumber
, const wxColour
& back
) {
421 SendMsg(2042, markerNumber
, wxColourAsLong(back
));
424 // Add a marker to a line, returning an ID which can be used to find or delete the marker.
425 int wxStyledTextCtrl::MarkerAdd(int line
, int markerNumber
) {
426 return SendMsg(2043, line
, markerNumber
);
429 // Delete a marker from a line
430 void wxStyledTextCtrl::MarkerDelete(int line
, int markerNumber
) {
431 SendMsg(2044, line
, markerNumber
);
434 // Delete all markers with a particular number from all lines
435 void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber
) {
436 SendMsg(2045, markerNumber
, 0);
439 // Get a bit mask of all the markers set on a line.
440 int wxStyledTextCtrl::MarkerGet(int line
) {
441 return SendMsg(2046, line
, 0);
444 // Find the next line after lineStart that includes a marker in mask.
445 int wxStyledTextCtrl::MarkerNext(int lineStart
, int markerMask
) {
446 return SendMsg(2047, lineStart
, markerMask
);
449 // Find the previous line before lineStart that includes a marker in mask.
450 int wxStyledTextCtrl::MarkerPrevious(int lineStart
, int markerMask
) {
451 return SendMsg(2048, lineStart
, markerMask
);
454 // Set a margin to be either numeric or symbolic.
455 void wxStyledTextCtrl::SetMarginType(int margin
, int marginType
) {
456 SendMsg(2240, margin
, marginType
);
459 // Retrieve the type of a margin.
460 int wxStyledTextCtrl::GetMarginType(int margin
) {
461 return SendMsg(2241, margin
, 0);
464 // Set the width of a margin to a width expressed in pixels.
465 void wxStyledTextCtrl::SetMarginWidth(int margin
, int pixelWidth
) {
466 SendMsg(2242, margin
, pixelWidth
);
469 // Retrieve the width of a margin in pixels.
470 int wxStyledTextCtrl::GetMarginWidth(int margin
) {
471 return SendMsg(2243, margin
, 0);
474 // Set a mask that determines which markers are displayed in a margin.
475 void wxStyledTextCtrl::SetMarginMask(int margin
, int mask
) {
476 SendMsg(2244, margin
, mask
);
479 // Retrieve the marker mask of a margin.
480 int wxStyledTextCtrl::GetMarginMask(int margin
) {
481 return SendMsg(2245, margin
, 0);
484 // Make a margin sensitive or insensitive to mouse clicks.
485 void wxStyledTextCtrl::SetMarginSensitive(int margin
, bool sensitive
) {
486 SendMsg(2246, margin
, sensitive
);
489 // Retrieve the mouse click sensitivity of a margin.
490 bool wxStyledTextCtrl::GetMarginSensitive(int margin
) {
491 return SendMsg(2247, margin
, 0) != 0;
494 // Clear all the styles and make equivalent to the global default style.
495 void wxStyledTextCtrl::StyleClearAll() {
499 // Set the foreground colour of a style.
500 void wxStyledTextCtrl::StyleSetForeground(int style
, const wxColour
& fore
) {
501 SendMsg(2051, style
, wxColourAsLong(fore
));
504 // Set the background colour of a style.
505 void wxStyledTextCtrl::StyleSetBackground(int style
, const wxColour
& back
) {
506 SendMsg(2052, style
, wxColourAsLong(back
));
509 // Set a style to be bold or not.
510 void wxStyledTextCtrl::StyleSetBold(int style
, bool bold
) {
511 SendMsg(2053, style
, bold
);
514 // Set a style to be italic or not.
515 void wxStyledTextCtrl::StyleSetItalic(int style
, bool italic
) {
516 SendMsg(2054, style
, italic
);
519 // Set the size of characters of a style.
520 void wxStyledTextCtrl::StyleSetSize(int style
, int sizePoints
) {
521 SendMsg(2055, style
, sizePoints
);
524 // Set the font of a style.
525 void wxStyledTextCtrl::StyleSetFaceName(int style
, const wxString
& fontName
) {
526 SendMsg(2056, style
, (long)(const char*)fontName
.mb_str(wxConvUTF8
));
529 // Set a style to have its end of line filled or not.
530 void wxStyledTextCtrl::StyleSetEOLFilled(int style
, bool filled
) {
531 SendMsg(2057, style
, filled
);
534 // Reset the default style to its state at startup
535 void wxStyledTextCtrl::StyleResetDefault() {
539 // Set a style to be underlined or not.
540 void wxStyledTextCtrl::StyleSetUnderline(int style
, bool underline
) {
541 SendMsg(2059, style
, underline
);
544 // Set a style to be mixed case, or to force upper or lower case.
545 void wxStyledTextCtrl::StyleSetCase(int style
, int caseForce
) {
546 SendMsg(2060, style
, caseForce
);
549 // Set the character set of the font in a style.
550 void wxStyledTextCtrl::StyleSetCharacterSet(int style
, int characterSet
) {
551 SendMsg(2066, style
, characterSet
);
554 // Set the foreground colour of the selection and whether to use this setting.
555 void wxStyledTextCtrl::SetSelForeground(bool useSetting
, const wxColour
& fore
) {
556 SendMsg(2067, useSetting
, wxColourAsLong(fore
));
559 // Set the background colour of the selection and whether to use this setting.
560 void wxStyledTextCtrl::SetSelBackground(bool useSetting
, const wxColour
& back
) {
561 SendMsg(2068, useSetting
, wxColourAsLong(back
));
564 // Set the foreground colour of the caret.
565 void wxStyledTextCtrl::SetCaretForeground(const wxColour
& fore
) {
566 SendMsg(2069, wxColourAsLong(fore
), 0);
569 // When key+modifier combination km is pressed perform msg.
570 void wxStyledTextCtrl::CmdKeyAssign(int key
, int modifiers
, int cmd
) {
571 SendMsg(2070, MAKELONG(key
, modifiers
), cmd
);
574 // When key+modifier combination km do nothing.
575 void wxStyledTextCtrl::CmdKeyClear(int key
, int modifiers
) {
576 SendMsg(2071, MAKELONG(key
, modifiers
));
579 // Drop all key mappings.
580 void wxStyledTextCtrl::CmdKeyClearAll() {
584 // Set the styles for a segment of the document.
585 void wxStyledTextCtrl::SetStyleBytes(int length
, char* styleBytes
) {
586 SendMsg(2073, length
, (long)styleBytes
);
589 // Set a style to be visible or not.
590 void wxStyledTextCtrl::StyleSetVisible(int style
, bool visible
) {
591 SendMsg(2074, style
, visible
);
594 // Get the time in milliseconds that the caret is on and off.
595 int wxStyledTextCtrl::GetCaretPeriod() {
596 return SendMsg(2075, 0, 0);
599 // Get the time in milliseconds that the caret is on and off. 0 = steady on.
600 void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds
) {
601 SendMsg(2076, periodMilliseconds
, 0);
604 // Set the set of characters making up words for when moving or selecting
606 void wxStyledTextCtrl::SetWordChars(const wxString
& characters
) {
607 SendMsg(2077, 0, (long)(const char*)characters
.mb_str(wxConvUTF8
));
610 // Start a sequence of actions that is undone and redone as a unit.
612 void wxStyledTextCtrl::BeginUndoAction() {
616 // End a sequence of actions that is undone and redone as a unit.
617 void wxStyledTextCtrl::EndUndoAction() {
621 // Set an indicator to plain, squiggle or TT.
622 void wxStyledTextCtrl::IndicatorSetStyle(int indic
, int style
) {
623 SendMsg(2080, indic
, style
);
626 // Retrieve the style of an indicator.
627 int wxStyledTextCtrl::IndicatorGetStyle(int indic
) {
628 return SendMsg(2081, indic
, 0);
631 // Set the foreground colour of an indicator.
632 void wxStyledTextCtrl::IndicatorSetForeground(int indic
, const wxColour
& fore
) {
633 SendMsg(2082, indic
, wxColourAsLong(fore
));
636 // Retrieve the foreground colour of an indicator.
637 wxColour
wxStyledTextCtrl::IndicatorGetForeground(int indic
) {
638 long c
= SendMsg(2083, indic
, 0);
639 return wxColourFromLong(c
);
642 // Divide each styling byte into lexical class bits (default:5) and indicator
643 // bits (default:3). If a lexer requires more than 32 lexical states, then this
644 // is used to expand the possible states.
645 void wxStyledTextCtrl::SetStyleBits(int bits
) {
646 SendMsg(2090, bits
, 0);
649 // Retrieve number of bits in style bytes used to hold the lexical state.
650 int wxStyledTextCtrl::GetStyleBits() {
651 return SendMsg(2091, 0, 0);
654 // Used to hold extra styling information for each line.
655 void wxStyledTextCtrl::SetLineState(int line
, int state
) {
656 SendMsg(2092, line
, state
);
659 // Retrieve the extra styling information for a line.
660 int wxStyledTextCtrl::GetLineState(int line
) {
661 return SendMsg(2093, line
, 0);
664 // Retrieve the last line number that has line state.
665 int wxStyledTextCtrl::GetMaxLineState() {
666 return SendMsg(2094, 0, 0);
669 // Is the background of the line containing the caret in a different colour?
670 bool wxStyledTextCtrl::GetCaretLineVisible() {
671 return SendMsg(2095, 0, 0) != 0;
674 // Dsplay the background of the line containing the caret in a different colour.
675 void wxStyledTextCtrl::SetCaretLineVisible(bool show
) {
676 SendMsg(2096, show
, 0);
679 // Get the colour of the background of the line containing the caret.
680 wxColour
wxStyledTextCtrl::GetCaretLineBack() {
681 long c
= SendMsg(2097, 0, 0);
682 return wxColourFromLong(c
);
685 // Set the colour of the background of the line containing the caret.
686 void wxStyledTextCtrl::SetCaretLineBack(const wxColour
& back
) {
687 SendMsg(2098, wxColourAsLong(back
), 0);
690 // Set a style to be changeable or not (read only).
691 // Experimental feature, currently buggy.
692 void wxStyledTextCtrl::StyleSetChangeable(int style
, bool changeable
) {
693 SendMsg(2099, style
, changeable
);
696 // Display a auto-completion list.
697 // The lenEntered parameter indicates how many characters before
698 // the caret should be used to provide context.
699 void wxStyledTextCtrl::AutoCompShow(int lenEntered
, const wxString
& itemList
) {
700 SendMsg(2100, lenEntered
, (long)(const char*)itemList
.mb_str(wxConvUTF8
));
703 // Remove the auto-completion list from the screen.
704 void wxStyledTextCtrl::AutoCompCancel() {
708 // Is there an auto-completion list visible?
709 bool wxStyledTextCtrl::AutoCompActive() {
710 return SendMsg(2102, 0, 0) != 0;
713 // Retrieve the position of the caret when the auto-completion list was
715 int wxStyledTextCtrl::AutoCompPosStart() {
716 return SendMsg(2103, 0, 0);
719 // User has selected an item so remove the list and insert the selection.
720 void wxStyledTextCtrl::AutoCompComplete() {
724 // Define a set of character that when typed cancel the auto-completion list.
725 void wxStyledTextCtrl::AutoCompStops(const wxString
& characterSet
) {
726 SendMsg(2105, 0, (long)(const char*)characterSet
.mb_str(wxConvUTF8
));
729 // Change the separator character in the string setting up an auto-completion
730 // list. Default is space but can be changed if items contain space.
731 void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter
) {
732 SendMsg(2106, separatorCharacter
, 0);
735 // Retrieve the auto-completion list separator character.
736 int wxStyledTextCtrl::AutoCompGetSeparator() {
737 return SendMsg(2107, 0, 0);
740 // Select the item in the auto-completion list that starts with a string.
741 void wxStyledTextCtrl::AutoCompSelect(const wxString
& text
) {
742 SendMsg(2108, 0, (long)(const char*)text
.mb_str(wxConvUTF8
));
745 // Should the auto-completion list be cancelled if the user backspaces to a
746 // position before where the box was created.
747 void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel
) {
748 SendMsg(2110, cancel
, 0);
751 // Retrieve whether auto-completion cancelled by backspacing before start.
752 bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
753 return SendMsg(2111, 0, 0) != 0;
756 // Define a set of characters that when typed will cause the autocompletion to
757 // choose the selected item.
758 void wxStyledTextCtrl::AutoCompSetFillUps(const wxString
& characterSet
) {
759 SendMsg(2112, 0, (long)(const char*)characterSet
.mb_str(wxConvUTF8
));
762 // Should a single item auto-completion list automatically choose the item.
763 void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle
) {
764 SendMsg(2113, chooseSingle
, 0);
767 // Retrieve whether a single item auto-completion list automatically choose the item.
768 bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
769 return SendMsg(2114, 0, 0) != 0;
772 // Set whether case is significant when performing auto-completion searches.
773 void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase
) {
774 SendMsg(2115, ignoreCase
, 0);
777 // Retrieve state of ignore case flag.
778 bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
779 return SendMsg(2116, 0, 0) != 0;
782 // Display a list of strings and send notification when user chooses one.
783 void wxStyledTextCtrl::UserListShow(int listType
, const wxString
& itemList
) {
784 SendMsg(2117, listType
, (long)(const char*)itemList
.mb_str(wxConvUTF8
));
787 // Set whether or not autocompletion is hidden automatically when nothing matches
788 void wxStyledTextCtrl::AutoCompSetAutoHide(bool autoHide
) {
789 SendMsg(2118, autoHide
, 0);
792 // Retrieve whether or not autocompletion is hidden automatically when nothing matches
793 bool wxStyledTextCtrl::AutoCompGetAutoHide() {
794 return SendMsg(2119, 0, 0) != 0;
797 // Set whether or not autocompletion deletes any word characters after the inserted text upon completion
798 void wxStyledTextCtrl::AutoCompSetDropRestOfWord(bool dropRestOfWord
) {
799 SendMsg(2270, dropRestOfWord
, 0);
802 // Retrieve whether or not autocompletion deletes any word characters after the inserted text upon completion
803 bool wxStyledTextCtrl::AutoCompGetDropRestOfWord() {
804 return SendMsg(2271, 0, 0) != 0;
807 // Set the number of spaces used for one level of indentation.
808 void wxStyledTextCtrl::SetIndent(int indentSize
) {
809 SendMsg(2122, indentSize
, 0);
812 // Retrieve indentation size.
813 int wxStyledTextCtrl::GetIndent() {
814 return SendMsg(2123, 0, 0);
817 // Indentation will only use space characters if useTabs is false, otherwise
818 // it will use a combination of tabs and spaces.
819 void wxStyledTextCtrl::SetUseTabs(bool useTabs
) {
820 SendMsg(2124, useTabs
, 0);
823 // Retrieve whether tabs will be used in indentation.
824 bool wxStyledTextCtrl::GetUseTabs() {
825 return SendMsg(2125, 0, 0) != 0;
828 // Change the indentation of a line to a number of columns.
829 void wxStyledTextCtrl::SetLineIndentation(int line
, int indentSize
) {
830 SendMsg(2126, line
, indentSize
);
833 // Retrieve the number of columns that a line is indented.
834 int wxStyledTextCtrl::GetLineIndentation(int line
) {
835 return SendMsg(2127, line
, 0);
838 // Retrieve the position before the first non indentation character on a line.
839 int wxStyledTextCtrl::GetLineIndentPosition(int line
) {
840 return SendMsg(2128, line
, 0);
843 // Retrieve the column number of a position, taking tab width into account.
844 int wxStyledTextCtrl::GetColumn(int pos
) {
845 return SendMsg(2129, pos
, 0);
848 // Show or hide the horizontal scroll bar.
849 void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show
) {
850 SendMsg(2130, show
, 0);
853 // Is the horizontal scroll bar visible?
854 bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
855 return SendMsg(2131, 0, 0) != 0;
858 // Show or hide indentation guides.
859 void wxStyledTextCtrl::SetIndentationGuides(bool show
) {
860 SendMsg(2132, show
, 0);
863 // Are the indentation guides visible?
864 bool wxStyledTextCtrl::GetIndentationGuides() {
865 return SendMsg(2133, 0, 0) != 0;
868 // Set the highlighted indentation guide column.
869 // 0 = no highlighted guide.
870 void wxStyledTextCtrl::SetHighlightGuide(int column
) {
871 SendMsg(2134, column
, 0);
874 // Get the highlighted indentation guide column.
875 int wxStyledTextCtrl::GetHighlightGuide() {
876 return SendMsg(2135, 0, 0);
879 // Get the position after the last visible characters on a line.
880 int wxStyledTextCtrl::GetLineEndPosition(int line
) {
881 return SendMsg(2136, line
, 0);
884 // Get the code page used to interpret the bytes of the document as characters.
885 int wxStyledTextCtrl::GetCodePage() {
886 return SendMsg(2137, 0, 0);
889 // Get the foreground colour of the caret.
890 wxColour
wxStyledTextCtrl::GetCaretForeground() {
891 long c
= SendMsg(2138, 0, 0);
892 return wxColourFromLong(c
);
895 // In read-only mode?
896 bool wxStyledTextCtrl::GetReadOnly() {
897 return SendMsg(2140, 0, 0) != 0;
900 // Sets the position of the caret.
901 void wxStyledTextCtrl::SetCurrentPos(int pos
) {
902 SendMsg(2141, pos
, 0);
905 // Sets the position that starts the selection - this becomes the anchor.
906 void wxStyledTextCtrl::SetSelectionStart(int pos
) {
907 SendMsg(2142, pos
, 0);
910 // Returns the position at the start of the selection.
911 int wxStyledTextCtrl::GetSelectionStart() {
912 return SendMsg(2143, 0, 0);
915 // Sets the position that ends the selection - this becomes the currentPosition.
916 void wxStyledTextCtrl::SetSelectionEnd(int pos
) {
917 SendMsg(2144, pos
, 0);
920 // Returns the position at the end of the selection.
921 int wxStyledTextCtrl::GetSelectionEnd() {
922 return SendMsg(2145, 0, 0);
925 // Sets the print magnification added to the point size of each style for printing.
926 void wxStyledTextCtrl::SetPrintMagnification(int magnification
) {
927 SendMsg(2146, magnification
, 0);
930 // Returns the print magnification.
931 int wxStyledTextCtrl::GetPrintMagnification() {
932 return SendMsg(2147, 0, 0);
935 // Modify colours when printing for clearer printed text.
936 void wxStyledTextCtrl::SetPrintColourMode(int mode
) {
937 SendMsg(2148, mode
, 0);
940 // Returns the print colour mode.
941 int wxStyledTextCtrl::GetPrintColourMode() {
942 return SendMsg(2149, 0, 0);
945 // Find some text in the document.
946 int wxStyledTextCtrl::FindText(int minPos
, int maxPos
,
947 const wxString
& text
,
948 bool caseSensitive
, bool wholeWord
) {
952 flags
|= caseSensitive
? SCFIND_MATCHCASE
: 0;
953 flags
|= wholeWord
? SCFIND_WHOLEWORD
: 0;
954 ft
.chrg
.cpMin
= minPos
;
955 ft
.chrg
.cpMax
= maxPos
;
956 ft
.lpstrText
= (char*)(const char*)text
.mb_str(wxConvUTF8
);
958 return SendMsg(2150, flags
, (long)&ft
);
961 // On Windows will draw the document into a display context such as a printer.
962 int wxStyledTextCtrl::FormatRange(bool doDraw
,
966 wxDC
* target
, // Why does it use two? Can they be the same?
971 if (endPos
< startPos
) {
977 fr
.hdcTarget
= target
;
978 fr
.rc
.top
= renderRect
.GetTop();
979 fr
.rc
.left
= renderRect
.GetLeft();
980 fr
.rc
.right
= renderRect
.GetRight();
981 fr
.rc
.bottom
= renderRect
.GetBottom();
982 fr
.rcPage
.top
= pageRect
.GetTop();
983 fr
.rcPage
.left
= pageRect
.GetLeft();
984 fr
.rcPage
.right
= pageRect
.GetRight();
985 fr
.rcPage
.bottom
= pageRect
.GetBottom();
986 fr
.chrg
.cpMin
= startPos
;
987 fr
.chrg
.cpMax
= endPos
;
989 return SendMsg(2151, doDraw
, (long)&fr
);
992 // Retrieve the line at the top of the display.
993 int wxStyledTextCtrl::GetFirstVisibleLine() {
994 return SendMsg(2152, 0, 0);
997 // Retrieve the contents of a line.
998 wxString
wxStyledTextCtrl::GetLine(int line
) {
999 int len
= LineLength(line
);
1000 if (!len
) return wxEmptyString
;
1002 wxMemoryBuffer
mbuf(len
+1);
1003 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1004 SendMsg(2153, line
, (long)buf
);
1005 mbuf
.UngetWriteBuf(len
);
1007 return wxString(buf
, wxConvUTF8
);
1010 // Returns the number of lines in the document. There is always at least one.
1011 int wxStyledTextCtrl::GetLineCount() {
1012 return SendMsg(2154, 0, 0);
1015 // Sets the size in pixels of the left margin.
1016 void wxStyledTextCtrl::SetMarginLeft(int pixelWidth
) {
1017 SendMsg(2155, 0, pixelWidth
);
1020 // Returns the size in pixels of the left margin.
1021 int wxStyledTextCtrl::GetMarginLeft() {
1022 return SendMsg(2156, 0, 0);
1025 // Sets the size in pixels of the right margin.
1026 void wxStyledTextCtrl::SetMarginRight(int pixelWidth
) {
1027 SendMsg(2157, 0, pixelWidth
);
1030 // Returns the size in pixels of the right margin.
1031 int wxStyledTextCtrl::GetMarginRight() {
1032 return SendMsg(2158, 0, 0);
1035 // Is the document different from when it was last saved?
1036 bool wxStyledTextCtrl::GetModify() {
1037 return SendMsg(2159, 0, 0) != 0;
1040 // Select a range of text.
1041 void wxStyledTextCtrl::SetSelection(int start
, int end
) {
1042 SendMsg(2160, start
, end
);
1045 // Retrieve the selected text.
1046 wxString
wxStyledTextCtrl::GetSelectedText() {
1050 GetSelection(&start
, &end
);
1051 int len
= end
- start
;
1052 if (!len
) return wxEmptyString
;
1054 wxMemoryBuffer
mbuf(len
+1);
1055 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1056 SendMsg(2161, 0, (long)buf
);
1057 mbuf
.UngetWriteBuf(len
);
1059 return wxString(buf
, wxConvUTF8
);
1062 // Retrieve a range of text.
1063 wxString
wxStyledTextCtrl::GetTextRange(int startPos
, int endPos
) {
1064 if (endPos
< startPos
) {
1065 int temp
= startPos
;
1069 int len
= endPos
- startPos
;
1070 if (!len
) return wxEmptyString
;
1071 wxMemoryBuffer
mbuf(len
+1);
1072 char* buf
= (char*)mbuf
.GetWriteBuf(len
);
1075 tr
.chrg
.cpMin
= startPos
;
1076 tr
.chrg
.cpMax
= endPos
;
1077 SendMsg(2162, 0, (long)&tr
);
1078 mbuf
.UngetWriteBuf(len
);
1080 return wxString(buf
, wxConvUTF8
);
1083 // Draw the selection in normal style or with selection highlighted.
1084 void wxStyledTextCtrl::HideSelection(bool normal
) {
1085 SendMsg(2163, normal
, 0);
1088 // Retrieve the line containing a position.
1089 int wxStyledTextCtrl::LineFromPosition(int pos
) {
1090 return SendMsg(2166, pos
, 0);
1093 // Retrieve the position at the start of a line.
1094 int wxStyledTextCtrl::PositionFromLine(int line
) {
1095 return SendMsg(2167, line
, 0);
1098 // Scroll horizontally and vertically.
1099 void wxStyledTextCtrl::LineScroll(int columns
, int lines
) {
1100 SendMsg(2168, columns
, lines
);
1103 // Ensure the caret is visible.
1104 void wxStyledTextCtrl::EnsureCaretVisible() {
1105 SendMsg(2169, 0, 0);
1108 // Replace the selected text with the argument text.
1109 void wxStyledTextCtrl::ReplaceSelection(const wxString
& text
) {
1110 SendMsg(2170, 0, (long)(const char*)text
.mb_str(wxConvUTF8
));
1113 // Set to read only or read write.
1114 void wxStyledTextCtrl::SetReadOnly(bool readOnly
) {
1115 SendMsg(2171, readOnly
, 0);
1118 // Will a paste succeed?
1119 bool wxStyledTextCtrl::CanPaste() {
1120 return SendMsg(2173, 0, 0) != 0;
1123 // Are there any undoable actions in the undo history.
1124 bool wxStyledTextCtrl::CanUndo() {
1125 return SendMsg(2174, 0, 0) != 0;
1128 // Delete the undo history.
1129 void wxStyledTextCtrl::EmptyUndoBuffer() {
1130 SendMsg(2175, 0, 0);
1133 // Undo one action in the undo history.
1134 void wxStyledTextCtrl::Undo() {
1135 SendMsg(2176, 0, 0);
1138 // Cut the selection to the clipboard.
1139 void wxStyledTextCtrl::Cut() {
1140 SendMsg(2177, 0, 0);
1143 // Copy the selection to the clipboard.
1144 void wxStyledTextCtrl::Copy() {
1145 SendMsg(2178, 0, 0);
1148 // Paste the contents of the clipboard into the document replacing the selection.
1149 void wxStyledTextCtrl::Paste() {
1150 SendMsg(2179, 0, 0);
1153 // Clear the selection.
1154 void wxStyledTextCtrl::Clear() {
1155 SendMsg(2180, 0, 0);
1158 // Replace the contents of the document with the argument text.
1159 void wxStyledTextCtrl::SetText(const wxString
& text
) {
1160 SendMsg(2181, 0, (long)(const char*)text
.mb_str(wxConvUTF8
));
1163 // Retrieve all the text in the document.
1164 wxString
wxStyledTextCtrl::GetText() {
1165 int len
= GetTextLength();
1166 wxMemoryBuffer
mbuf(len
+1); // leave room for the null...
1167 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1168 SendMsg(2182, len
+1, (long)buf
);
1169 mbuf
.UngetWriteBuf(len
);
1171 return wxString(buf
, wxConvUTF8
);
1174 // Retrieve the number of characters in the document.
1175 int wxStyledTextCtrl::GetTextLength() {
1176 return SendMsg(2183, 0, 0);
1179 // Set to overtype (true) or insert mode
1180 void wxStyledTextCtrl::SetOvertype(bool overtype
) {
1181 SendMsg(2186, overtype
, 0);
1184 // Returns true if overtype mode is active otherwise false is returned.
1185 bool wxStyledTextCtrl::GetOvertype() {
1186 return SendMsg(2187, 0, 0) != 0;
1189 // Set the width of the insert mode caret
1190 void wxStyledTextCtrl::SetCaretWidth(int pixelWidth
) {
1191 SendMsg(2188, pixelWidth
, 0);
1194 // Returns the width of the insert mode caret
1195 int wxStyledTextCtrl::GetCaretWidth() {
1196 return SendMsg(2189, 0, 0);
1199 // Sets the position that starts the target which is used for updating the
1200 // document without affecting the scroll position.
1201 void wxStyledTextCtrl::SetTargetStart(int pos
) {
1202 SendMsg(2190, pos
, 0);
1205 // Get the position that starts the target.
1206 int wxStyledTextCtrl::GetTargetStart() {
1207 return SendMsg(2191, 0, 0);
1210 // Sets the position that ends the target which is used for updating the
1211 // document without affecting the scroll position.
1212 void wxStyledTextCtrl::SetTargetEnd(int pos
) {
1213 SendMsg(2192, pos
, 0);
1216 // Get the position that ends the target.
1217 int wxStyledTextCtrl::GetTargetEnd() {
1218 return SendMsg(2193, 0, 0);
1221 // Replace the target text with the argument text.
1222 // Text is counted so it can contain nulls.
1223 // Returns the length of the replacement text.
1225 int wxStyledTextCtrl::ReplaceTarget(const wxString
& text
) {
1226 wxWX2MBbuf buf
= (wxWX2MBbuf
)text
.mb_str(wxConvUTF8
);
1227 return SendMsg(2194, strlen(buf
), (long)(const char*)buf
);
1230 // Replace the target text with the argument text after \d processing.
1231 // Text is counted so it can contain nulls.
1232 // Looks for \d where d is between 1 and 9 and replaces these with the strings
1233 // matched in the last search operation which were surrounded by \( and \).
1234 // Returns the length of the replacement text including any change
1235 // caused by processing the \d patterns.
1237 int wxStyledTextCtrl::ReplaceTargetRE(const wxString
& text
) {
1238 wxWX2MBbuf buf
= (wxWX2MBbuf
)text
.mb_str(wxConvUTF8
);
1239 return SendMsg(2195, strlen(buf
), (long)(const char*)buf
);
1242 // Search for a counted string in the target and set the target to the found
1243 // range. Text is counted so it can contain nulls.
1244 // Returns length of range or -1 for failure in which case target is not moved.
1246 int wxStyledTextCtrl::SearchInTarget(const wxString
& text
) {
1247 wxWX2MBbuf buf
= (wxWX2MBbuf
)text
.mb_str(wxConvUTF8
);
1248 return SendMsg(2197, strlen(buf
), (long)(const char*)buf
);
1251 // Set the search flags used by SearchInTarget
1252 void wxStyledTextCtrl::SetSearchFlags(int flags
) {
1253 SendMsg(2198, flags
, 0);
1256 // Get the search flags used by SearchInTarget
1257 int wxStyledTextCtrl::GetSearchFlags() {
1258 return SendMsg(2199, 0, 0);
1261 // Show a call tip containing a definition near position pos.
1262 void wxStyledTextCtrl::CallTipShow(int pos
, const wxString
& definition
) {
1263 SendMsg(2200, pos
, (long)(const char*)definition
.mb_str(wxConvUTF8
));
1266 // Remove the call tip from the screen.
1267 void wxStyledTextCtrl::CallTipCancel() {
1268 SendMsg(2201, 0, 0);
1271 // Is there an active call tip?
1272 bool wxStyledTextCtrl::CallTipActive() {
1273 return SendMsg(2202, 0, 0) != 0;
1276 // Retrieve the position where the caret was before displaying the call tip.
1277 int wxStyledTextCtrl::CallTipPosAtStart() {
1278 return SendMsg(2203, 0, 0);
1281 // Highlight a segment of the definition.
1282 void wxStyledTextCtrl::CallTipSetHighlight(int start
, int end
) {
1283 SendMsg(2204, start
, end
);
1286 // Set the background colour for the call tip.
1287 void wxStyledTextCtrl::CallTipSetBackground(const wxColour
& back
) {
1288 SendMsg(2205, wxColourAsLong(back
), 0);
1291 // Find the display line of a document line taking hidden lines into account.
1292 int wxStyledTextCtrl::VisibleFromDocLine(int line
) {
1293 return SendMsg(2220, line
, 0);
1296 // Find the document line of a display line taking hidden lines into account.
1297 int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay
) {
1298 return SendMsg(2221, lineDisplay
, 0);
1301 // Set the fold level of a line.
1302 // This encodes an integer level along with flags indicating whether the
1303 // line is a header and whether it is effectively white space.
1304 void wxStyledTextCtrl::SetFoldLevel(int line
, int level
) {
1305 SendMsg(2222, line
, level
);
1308 // Retrieve the fold level of a line.
1309 int wxStyledTextCtrl::GetFoldLevel(int line
) {
1310 return SendMsg(2223, line
, 0);
1313 // Find the last child line of a header line.
1314 int wxStyledTextCtrl::GetLastChild(int line
, int level
) {
1315 return SendMsg(2224, line
, level
);
1318 // Find the parent line of a child line.
1319 int wxStyledTextCtrl::GetFoldParent(int line
) {
1320 return SendMsg(2225, line
, 0);
1323 // Make a range of lines visible.
1324 void wxStyledTextCtrl::ShowLines(int lineStart
, int lineEnd
) {
1325 SendMsg(2226, lineStart
, lineEnd
);
1328 // Make a range of lines invisible.
1329 void wxStyledTextCtrl::HideLines(int lineStart
, int lineEnd
) {
1330 SendMsg(2227, lineStart
, lineEnd
);
1333 // Is a line visible?
1334 bool wxStyledTextCtrl::GetLineVisible(int line
) {
1335 return SendMsg(2228, line
, 0) != 0;
1338 // Show the children of a header line.
1339 void wxStyledTextCtrl::SetFoldExpanded(int line
, bool expanded
) {
1340 SendMsg(2229, line
, expanded
);
1343 // Is a header line expanded?
1344 bool wxStyledTextCtrl::GetFoldExpanded(int line
) {
1345 return SendMsg(2230, line
, 0) != 0;
1348 // Switch a header line between expanded and contracted.
1349 void wxStyledTextCtrl::ToggleFold(int line
) {
1350 SendMsg(2231, line
, 0);
1353 // Ensure a particular line is visible by expanding any header line hiding it.
1354 void wxStyledTextCtrl::EnsureVisible(int line
) {
1355 SendMsg(2232, line
, 0);
1358 // Set some debugging options for folding
1359 void wxStyledTextCtrl::SetFoldFlags(int flags
) {
1360 SendMsg(2233, flags
, 0);
1363 // Ensure a particular line is visible by expanding any header line hiding it.
1364 // Use the currently set visibility policy to determine which range to display.
1365 void wxStyledTextCtrl::EnsureVisibleEnforcePolicy(int line
) {
1366 SendMsg(2234, line
, 0);
1369 // Sets whether a tab pressed when caret is within indentation indents
1370 void wxStyledTextCtrl::SetTabIndents(bool tabIndents
) {
1371 SendMsg(2260, tabIndents
, 0);
1374 // Does a tab pressed when caret is within indentation indent?
1375 bool wxStyledTextCtrl::GetTabIndents() {
1376 return SendMsg(2261, 0, 0) != 0;
1379 // Sets whether a backspace pressed when caret is within indentation unindents
1380 void wxStyledTextCtrl::SetBackSpaceUnIndents(bool bsUnIndents
) {
1381 SendMsg(2262, bsUnIndents
, 0);
1384 // Does a backspace pressed when caret is within indentation unindent?
1385 bool wxStyledTextCtrl::GetBackSpaceUnIndents() {
1386 return SendMsg(2263, 0, 0) != 0;
1389 // Sets the time the mouse must sit still to generate a mouse dwell event
1390 void wxStyledTextCtrl::SetMouseDwellTime(int periodMilliseconds
) {
1391 SendMsg(2264, periodMilliseconds
, 0);
1394 // Retrieve the time the mouse must sit still to generate a mouse dwell event
1395 int wxStyledTextCtrl::GetMouseDwellTime() {
1396 return SendMsg(2265, 0, 0);
1399 // Get position of start of word
1400 int wxStyledTextCtrl::WordStartPosition(int pos
, bool onlyWordCharacters
) {
1401 return SendMsg(2266, pos
, onlyWordCharacters
);
1404 // Get position of end of word
1405 int wxStyledTextCtrl::WordEndPosition(int pos
, bool onlyWordCharacters
) {
1406 return SendMsg(2267, pos
, onlyWordCharacters
);
1409 // Sets whether text is word wrapped
1410 void wxStyledTextCtrl::SetWrapMode(int mode
) {
1411 SendMsg(2268, mode
, 0);
1414 // Retrieve whether text is word wrapped
1415 int wxStyledTextCtrl::GetWrapMode() {
1416 return SendMsg(2269, 0, 0);
1419 // Sets the degree of caching of layout information
1420 void wxStyledTextCtrl::SetLayoutCache(int mode
) {
1421 SendMsg(2272, mode
, 0);
1424 // Retrieve the degree of caching of layout information
1425 int wxStyledTextCtrl::GetLayoutCache() {
1426 return SendMsg(2273, 0, 0);
1429 // Move the caret inside current view if it's not there already
1430 void wxStyledTextCtrl::MoveCaretInsideView() {
1431 SendMsg(2401, 0, 0);
1434 // How many characters are on a line, not including end of line characters.
1435 int wxStyledTextCtrl::LineLength(int line
) {
1436 return SendMsg(2350, line
, 0);
1439 // Highlight the characters at two positions.
1440 void wxStyledTextCtrl::BraceHighlight(int pos1
, int pos2
) {
1441 SendMsg(2351, pos1
, pos2
);
1444 // Highlight the character at a position indicating there is no matching brace.
1445 void wxStyledTextCtrl::BraceBadLight(int pos
) {
1446 SendMsg(2352, pos
, 0);
1449 // Find the position of a matching brace or INVALID_POSITION if no match.
1450 int wxStyledTextCtrl::BraceMatch(int pos
) {
1451 return SendMsg(2353, pos
, 0);
1454 // Are the end of line characters visible.
1455 bool wxStyledTextCtrl::GetViewEOL() {
1456 return SendMsg(2355, 0, 0) != 0;
1459 // Make the end of line characters visible or invisible
1460 void wxStyledTextCtrl::SetViewEOL(bool visible
) {
1461 SendMsg(2356, visible
, 0);
1464 // Retrieve a pointer to the document object.
1465 void* wxStyledTextCtrl::GetDocPointer() {
1466 return (void*)SendMsg(2357);
1469 // Change the document object used.
1470 void wxStyledTextCtrl::SetDocPointer(void* docPointer
) {
1471 SendMsg(2358, 0, (long)docPointer
);
1474 // Set which document modification events are sent to the container.
1475 void wxStyledTextCtrl::SetModEventMask(int mask
) {
1476 SendMsg(2359, mask
, 0);
1479 // Retrieve the column number which text should be kept within.
1480 int wxStyledTextCtrl::GetEdgeColumn() {
1481 return SendMsg(2360, 0, 0);
1484 // Set the column number of the edge.
1485 // If text goes past the edge then it is highlighted.
1486 void wxStyledTextCtrl::SetEdgeColumn(int column
) {
1487 SendMsg(2361, column
, 0);
1490 // Retrieve the edge highlight mode.
1491 int wxStyledTextCtrl::GetEdgeMode() {
1492 return SendMsg(2362, 0, 0);
1495 // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
1496 // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
1497 void wxStyledTextCtrl::SetEdgeMode(int mode
) {
1498 SendMsg(2363, mode
, 0);
1501 // Retrieve the colour used in edge indication.
1502 wxColour
wxStyledTextCtrl::GetEdgeColour() {
1503 long c
= SendMsg(2364, 0, 0);
1504 return wxColourFromLong(c
);
1507 // Change the colour used in edge indication.
1508 void wxStyledTextCtrl::SetEdgeColour(const wxColour
& edgeColour
) {
1509 SendMsg(2365, wxColourAsLong(edgeColour
), 0);
1512 // Sets the current caret position to be the search anchor.
1513 void wxStyledTextCtrl::SearchAnchor() {
1514 SendMsg(2366, 0, 0);
1517 // Find some text starting at the search anchor.
1518 // Does not ensure the selection is visible.
1519 int wxStyledTextCtrl::SearchNext(int flags
, const wxString
& text
) {
1520 return SendMsg(2367, flags
, (long)(const char*)text
.mb_str(wxConvUTF8
));
1523 // Find some text starting at the search anchor and moving backwards.
1524 // Does not ensure the selection is visible.
1525 int wxStyledTextCtrl::SearchPrev(int flags
, const wxString
& text
) {
1526 return SendMsg(2368, flags
, (long)(const char*)text
.mb_str(wxConvUTF8
));
1529 // Set the way the line the caret is on is kept visible.
1530 void wxStyledTextCtrl::SetCaretPolicy(int caretPolicy
, int caretSlop
) {
1531 SendMsg(2369, caretPolicy
, caretSlop
);
1534 // Retrieves the number of lines completely visible.
1535 int wxStyledTextCtrl::LinesOnScreen() {
1536 return SendMsg(2370, 0, 0);
1539 // Set whether a pop up menu is displayed automatically when the user presses
1540 // the wrong mouse button.
1541 void wxStyledTextCtrl::UsePopUp(bool allowPopUp
) {
1542 SendMsg(2371, allowPopUp
, 0);
1545 // Is the selection a rectangular. The alternative is the more common stream selection.
1546 bool wxStyledTextCtrl::SelectionIsRectangle() {
1547 return SendMsg(2372, 0, 0) != 0;
1550 // Set the zoom level. This number of points is added to the size of all fonts.
1551 // It may be positive to magnify or negative to reduce.
1552 void wxStyledTextCtrl::SetZoom(int zoom
) {
1553 SendMsg(2373, zoom
, 0);
1556 // Retrieve the zoom level.
1557 int wxStyledTextCtrl::GetZoom() {
1558 return SendMsg(2374, 0, 0);
1561 // Create a new document object.
1562 // Starts with reference count of 1 and not selected into editor.
1563 void* wxStyledTextCtrl::CreateDocument() {
1564 return (void*)SendMsg(2375);
1567 // Extend life of document.
1568 void wxStyledTextCtrl::AddRefDocument(void* docPointer
) {
1569 SendMsg(2376, (long)docPointer
);
1572 // Release a reference to the document, deleting document if it fades to black.
1573 void wxStyledTextCtrl::ReleaseDocument(void* docPointer
) {
1574 SendMsg(2377, (long)docPointer
);
1577 // Get which document modification events are sent to the container.
1578 int wxStyledTextCtrl::GetModEventMask() {
1579 return SendMsg(2378, 0, 0);
1582 // Change internal focus flag
1583 void wxStyledTextCtrl::SetSTCFocus(bool focus
) {
1584 SendMsg(2380, focus
, 0);
1587 // Get internal focus flag
1588 bool wxStyledTextCtrl::GetSTCFocus() {
1589 return SendMsg(2381, 0, 0) != 0;
1592 // Change error status - 0 = OK
1593 void wxStyledTextCtrl::SetStatus(int statusCode
) {
1594 SendMsg(2382, statusCode
, 0);
1598 int wxStyledTextCtrl::GetStatus() {
1599 return SendMsg(2383, 0, 0);
1602 // Set whether the mouse is captured when its button is pressed
1603 void wxStyledTextCtrl::SetMouseDownCaptures(bool captures
) {
1604 SendMsg(2384, captures
, 0);
1607 // Get whether mouse gets captured
1608 bool wxStyledTextCtrl::GetMouseDownCaptures() {
1609 return SendMsg(2385, 0, 0) != 0;
1612 // Sets the cursor to one of the SC_CURSOR* values
1613 void wxStyledTextCtrl::SetCursor(int cursorType
) {
1614 SendMsg(2386, cursorType
, 0);
1618 int wxStyledTextCtrl::GetCursor() {
1619 return SendMsg(2387, 0, 0);
1622 // Change the way control characters are displayed:
1623 // If symbol is < 32, keep the drawn way, else, use the given character
1624 void wxStyledTextCtrl::SetControlCharSymbol(int symbol
) {
1625 SendMsg(2388, symbol
, 0);
1628 // Get the way control characters are displayed
1629 int wxStyledTextCtrl::GetControlCharSymbol() {
1630 return SendMsg(2389, 0, 0);
1633 // Move to the previous change in capitalistion
1634 void wxStyledTextCtrl::WordPartLeft() {
1635 SendMsg(2390, 0, 0);
1638 // Move to the previous change in capitalistion extending selection to new caret position.
1639 void wxStyledTextCtrl::WordPartLeftExtend() {
1640 SendMsg(2391, 0, 0);
1643 // Move to the change next in capitalistion
1644 void wxStyledTextCtrl::WordPartRight() {
1645 SendMsg(2392, 0, 0);
1648 // Move to the next change in capitalistion extending selection to new caret position.
1649 void wxStyledTextCtrl::WordPartRightExtend() {
1650 SendMsg(2393, 0, 0);
1653 // Set the way the display area is determined when a particular line is to be moved to.
1654 void wxStyledTextCtrl::SetVisiblePolicy(int visiblePolicy
, int visibleSlop
) {
1655 SendMsg(2394, visiblePolicy
, visibleSlop
);
1658 // Delete back from the current position to the start of the line
1659 void wxStyledTextCtrl::DelLineLeft() {
1660 SendMsg(2395, 0, 0);
1663 // Delete forwards from the current position to the end of the line
1664 void wxStyledTextCtrl::DelLineRight() {
1665 SendMsg(2396, 0, 0);
1668 // Get and Set the xOffset (ie, horizonal scroll position)
1669 void wxStyledTextCtrl::SetXOffset(int newOffset
) {
1670 SendMsg(2397, newOffset
, 0);
1672 int wxStyledTextCtrl::GetXOffset() {
1673 return SendMsg(2398, 0, 0);
1676 // Start notifying the container of all key presses and commands.
1677 void wxStyledTextCtrl::StartRecord() {
1678 SendMsg(3001, 0, 0);
1681 // Stop notifying the container of all key presses and commands.
1682 void wxStyledTextCtrl::StopRecord() {
1683 SendMsg(3002, 0, 0);
1686 // Set the lexing language of the document.
1687 void wxStyledTextCtrl::SetLexer(int lexer
) {
1688 SendMsg(4001, lexer
, 0);
1691 // Retrieve the lexing language of the document.
1692 int wxStyledTextCtrl::GetLexer() {
1693 return SendMsg(4002, 0, 0);
1696 // Colourise a segment of the document using the current lexing language.
1697 void wxStyledTextCtrl::Colourise(int start
, int end
) {
1698 SendMsg(4003, start
, end
);
1701 // Set up a value that may be used by a lexer for some optional feature.
1702 void wxStyledTextCtrl::SetProperty(const wxString
& key
, const wxString
& value
) {
1703 SendMsg(4004, (long)(const char*)key
.mb_str(wxConvUTF8
), (long)(const char*)value
.mb_str(wxConvUTF8
));
1706 // Set up the key words used by the lexer.
1707 void wxStyledTextCtrl::SetKeyWords(int keywordSet
, const wxString
& keyWords
) {
1708 SendMsg(4005, keywordSet
, (long)(const char*)keyWords
.mb_str(wxConvUTF8
));
1711 // Set the lexing language of the document based on string name.
1712 void wxStyledTextCtrl::SetLexerLanguage(const wxString
& language
) {
1713 SendMsg(4006, 0, (long)(const char*)language
.mb_str(wxConvUTF8
));
1716 // END of generated section
1717 //----------------------------------------------------------------------
1720 // Returns the line number of the line with the caret.
1721 int wxStyledTextCtrl::GetCurrentLine() {
1722 int line
= LineFromPosition(GetCurrentPos());
1727 // Extract style settings from a spec-string which is composed of one or
1728 // more of the following comma separated elements:
1730 // bold turns on bold
1731 // italic turns on italics
1732 // fore:#RRGGBB sets the foreground colour
1733 // back:#RRGGBB sets the background colour
1734 // face:[facename] sets the font face name to use
1735 // size:[num] sets the font size in points
1736 // eol turns on eol filling
1737 // underline turns on underlining
1739 void wxStyledTextCtrl::StyleSetSpec(int styleNum
, const wxString
& spec
) {
1741 wxStringTokenizer
tkz(spec
, ",");
1742 while (tkz
.HasMoreTokens()) {
1743 wxString token
= tkz
.GetNextToken();
1745 wxString option
= token
.BeforeFirst(':');
1746 wxString val
= token
.AfterFirst(':');
1748 if (option
== "bold")
1749 StyleSetBold(styleNum
, true);
1751 else if (option
== "italic")
1752 StyleSetItalic(styleNum
, true);
1754 else if (option
== "underline")
1755 StyleSetUnderline(styleNum
, true);
1757 else if (option
== "eol")
1758 StyleSetEOLFilled(styleNum
, true);
1760 else if (option
== "size") {
1762 if (val
.ToLong(&points
))
1763 StyleSetSize(styleNum
, points
);
1766 else if (option
== "face")
1767 StyleSetFaceName(styleNum
, val
);
1769 else if (option
== "fore")
1770 StyleSetForeground(styleNum
, wxColourFromSpec(val
));
1772 else if (option
== "back")
1773 StyleSetBackground(styleNum
, wxColourFromSpec(val
));
1778 // Set style size, face, bold, italic, and underline attributes from
1779 // a wxFont's attributes.
1780 void wxStyledTextCtrl::StyleSetFont(int styleNum
, wxFont
& font
) {
1781 int size
= font
.GetPointSize();
1782 wxString faceName
= font
.GetFaceName();
1783 bool bold
= font
.GetWeight() == wxBOLD
;
1784 bool italic
= font
.GetStyle() != wxNORMAL
;
1785 bool under
= font
.GetUnderlined();
1787 // TODO: add encoding/charset mapping
1788 StyleSetFontAttr(styleNum
, size
, faceName
, bold
, italic
, under
);
1791 // Set all font style attributes at once.
1792 void wxStyledTextCtrl::StyleSetFontAttr(int styleNum
, int size
,
1793 const wxString
& faceName
,
1794 bool bold
, bool italic
,
1796 StyleSetSize(styleNum
, size
);
1797 StyleSetFaceName(styleNum
, faceName
);
1798 StyleSetBold(styleNum
, bold
);
1799 StyleSetItalic(styleNum
, italic
);
1800 StyleSetUnderline(styleNum
, underline
);
1802 // TODO: add encoding/charset mapping
1806 // Perform one of the operations defined by the wxSTC_CMD_* constants.
1807 void wxStyledTextCtrl::CmdKeyExecute(int cmd
) {
1812 // Set the left and right margin in the edit area, measured in pixels.
1813 void wxStyledTextCtrl::SetMargins(int left
, int right
) {
1814 SetMarginLeft(left
);
1815 SetMarginRight(right
);
1819 // Retrieve the start and end positions of the current selection.
1820 void wxStyledTextCtrl::GetSelection(int* startPos
, int* endPos
) {
1821 if (startPos
!= NULL
)
1822 *startPos
= SendMsg(SCI_GETSELECTIONSTART
);
1824 *endPos
= SendMsg(SCI_GETSELECTIONEND
);
1828 // Retrieve the point in the window where a position is displayed.
1829 wxPoint
wxStyledTextCtrl::PointFromPosition(int pos
) {
1830 int x
= SendMsg(SCI_POINTXFROMPOSITION
, 0, pos
);
1831 int y
= SendMsg(SCI_POINTYFROMPOSITION
, 0, pos
);
1832 return wxPoint(x
, y
);
1835 // Scroll enough to make the given line visible
1836 void wxStyledTextCtrl::ScrollToLine(int line
) {
1837 m_swx
->DoScrollToLine(line
);
1841 // Scroll enough to make the given column visible
1842 void wxStyledTextCtrl::ScrollToColumn(int column
) {
1843 m_swx
->DoScrollToColumn(column
);
1848 //----------------------------------------------------------------------
1851 void wxStyledTextCtrl::OnPaint(wxPaintEvent
& evt
) {
1853 wxRegion region
= GetUpdateRegion();
1855 m_swx
->DoPaint(&dc
, region
.GetBox());
1858 void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent
& evt
) {
1859 if (evt
.GetOrientation() == wxHORIZONTAL
)
1860 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
1862 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
1865 void wxStyledTextCtrl::OnScroll(wxScrollEvent
& evt
) {
1866 wxScrollBar
* sb
= wxDynamicCast(evt
.GetEventObject(), wxScrollBar
);
1868 if (sb
->IsVertical())
1869 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
1871 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
1875 void wxStyledTextCtrl::OnSize(wxSizeEvent
& evt
) {
1876 wxSize sz
= GetClientSize();
1877 m_swx
->DoSize(sz
.x
, sz
.y
);
1881 void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent
& evt
) {
1882 wxPoint pt
= evt
.GetPosition();
1883 m_swx
->DoButtonDown(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
1884 evt
.ShiftDown(), evt
.ControlDown(), evt
.AltDown());
1887 void wxStyledTextCtrl::OnMouseMove(wxMouseEvent
& evt
) {
1888 wxPoint pt
= evt
.GetPosition();
1889 m_swx
->DoButtonMove(Point(pt
.x
, pt
.y
));
1892 void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent
& evt
) {
1893 wxPoint pt
= evt
.GetPosition();
1894 m_swx
->DoButtonUp(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
1899 void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent
& evt
) {
1900 wxPoint pt
= evt
.GetPosition();
1901 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
1905 void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent
& evt
) {
1906 wxPoint pt
= evt
.GetPosition();
1907 ScreenToClient(&pt
.x
, &pt
.y
);
1908 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
1912 void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent
& evt
) {
1913 m_swx
->DoMouseWheel(evt
.GetWheelRotation(),
1914 evt
.GetWheelDelta(),
1915 evt
.GetLinesPerAction(),
1920 void wxStyledTextCtrl::OnChar(wxKeyEvent
& evt
) {
1921 int key
= evt
.GetKeyCode();
1923 // On (some?) non-US keyboards the AltGr key is required to enter some
1924 // common characters. It comes to us as both Alt and Ctrl down so we need
1925 // to let the char through in that case, otherwise if only ctrl or only
1926 // alt let's skip it.
1927 bool ctrl
= evt
.ControlDown();
1928 bool alt
= evt
.AltDown();
1929 bool skip
= ((ctrl
|| alt
) && ! (ctrl
&& alt
));
1931 //printf("OnChar key:%d consumed:%d ctrl:%d alt:%d skip:%d\n",
1932 // key, m_lastKeyDownConsumed, ctrl, alt, skip);
1934 if (key
<= WXK_START
&& /*key >= 32 &&*/ !m_lastKeyDownConsumed
&& !skip
) {
1935 m_swx
->DoAddChar(key
);
1942 void wxStyledTextCtrl::OnKeyDown(wxKeyEvent
& evt
) {
1943 int key
= evt
.GetKeyCode();
1944 bool shift
= evt
.ShiftDown(),
1945 ctrl
= evt
.ControlDown(),
1946 alt
= evt
.AltDown();
1948 int processed
= m_swx
->DoKeyDown(key
, shift
, ctrl
, alt
, &m_lastKeyDownConsumed
);
1950 // printf("key: %d shift: %d ctrl: %d alt: %d processed: %d consumed: %d\n",
1951 // key, shift, ctrl, alt, processed, m_lastKeyDownConsumed);
1953 if (!processed
&& !m_lastKeyDownConsumed
)
1958 void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent
& evt
) {
1959 m_swx
->DoLoseFocus();
1963 void wxStyledTextCtrl::OnGainFocus(wxFocusEvent
& evt
) {
1964 m_swx
->DoGainFocus();
1968 void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& evt
) {
1969 m_swx
->DoSysColourChange();
1973 void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent
& evt
) {
1974 // do nothing to help avoid flashing
1979 void wxStyledTextCtrl::OnMenu(wxCommandEvent
& evt
) {
1980 m_swx
->DoCommand(evt
.GetId());
1984 void wxStyledTextCtrl::OnListBox(wxCommandEvent
& evt
) {
1985 m_swx
->DoOnListBox();
1989 //----------------------------------------------------------------------
1990 // Turn notifications from Scintilla into events
1993 void wxStyledTextCtrl::NotifyChange() {
1994 wxStyledTextEvent
evt(wxEVT_STC_CHANGE
, GetId());
1995 evt
.SetEventObject(this);
1996 GetEventHandler()->ProcessEvent(evt
);
1999 void wxStyledTextCtrl::NotifyParent(SCNotification
* _scn
) {
2000 SCNotification
& scn
= *_scn
;
2001 wxStyledTextEvent
evt(0, GetId());
2003 evt
.SetEventObject(this);
2004 evt
.SetPosition(scn
.position
);
2006 evt
.SetModifiers(scn
.modifiers
);
2008 switch (scn
.nmhdr
.code
) {
2009 case SCN_STYLENEEDED
:
2010 evt
.SetEventType(wxEVT_STC_STYLENEEDED
);
2014 evt
.SetEventType(wxEVT_STC_CHARADDED
);
2017 case SCN_SAVEPOINTREACHED
:
2018 evt
.SetEventType(wxEVT_STC_SAVEPOINTREACHED
);
2021 case SCN_SAVEPOINTLEFT
:
2022 evt
.SetEventType(wxEVT_STC_SAVEPOINTLEFT
);
2025 case SCN_MODIFYATTEMPTRO
:
2026 evt
.SetEventType(wxEVT_STC_ROMODIFYATTEMPT
);
2030 evt
.SetEventType(wxEVT_STC_KEY
);
2033 case SCN_DOUBLECLICK
:
2034 evt
.SetEventType(wxEVT_STC_DOUBLECLICK
);
2038 evt
.SetEventType(wxEVT_STC_UPDATEUI
);
2042 evt
.SetEventType(wxEVT_STC_MODIFIED
);
2043 evt
.SetModificationType(scn
.modificationType
);
2045 // The unicode conversion MUST have a null byte to terminate the
2046 // string so move it into a buffer first and give it one.
2047 wxMemoryBuffer
buf(scn
.length
+1);
2048 buf
.AppendData((void*)scn
.text
, scn
.length
);
2050 evt
.SetText(wxString(buf
, wxConvUTF8
));
2052 evt
.SetLength(scn
.length
);
2053 evt
.SetLinesAdded(scn
.linesAdded
);
2054 evt
.SetLine(scn
.line
);
2055 evt
.SetFoldLevelNow(scn
.foldLevelNow
);
2056 evt
.SetFoldLevelPrev(scn
.foldLevelPrev
);
2059 case SCN_MACRORECORD
:
2060 evt
.SetEventType(wxEVT_STC_MACRORECORD
);
2061 evt
.SetMessage(scn
.message
);
2062 evt
.SetWParam(scn
.wParam
);
2063 evt
.SetLParam(scn
.lParam
);
2066 case SCN_MARGINCLICK
:
2067 evt
.SetEventType(wxEVT_STC_MARGINCLICK
);
2068 evt
.SetMargin(scn
.margin
);
2072 evt
.SetEventType(wxEVT_STC_NEEDSHOWN
);
2073 evt
.SetLength(scn
.length
);
2077 evt
.SetEventType(wxEVT_STC_PAINTED
);
2080 case SCN_USERLISTSELECTION
:
2081 evt
.SetEventType(wxEVT_STC_USERLISTSELECTION
);
2082 evt
.SetListType(scn
.listType
);
2083 evt
.SetText(scn
.text
);
2086 case SCN_URIDROPPED
:
2087 evt
.SetEventType(wxEVT_STC_URIDROPPED
);
2088 evt
.SetText(scn
.text
);
2091 case SCN_DWELLSTART
:
2092 evt
.SetEventType(wxEVT_STC_DWELLSTART
);
2098 evt
.SetEventType(wxEVT_STC_DWELLEND
);
2107 GetEventHandler()->ProcessEvent(evt
);
2111 //----------------------------------------------------------------------
2112 //----------------------------------------------------------------------
2113 //----------------------------------------------------------------------
2115 wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType
, int id
)
2116 : wxCommandEvent(commandType
, id
)
2121 m_modificationType
= 0;
2126 m_foldLevelPrev
= 0;
2134 m_dragAllowMove
= FALSE
;
2135 m_dragResult
= wxDragNone
;
2138 bool wxStyledTextEvent::GetShift() const { return (m_modifiers
& SCI_SHIFT
) != 0; }
2139 bool wxStyledTextEvent::GetControl() const { return (m_modifiers
& SCI_CTRL
) != 0; }
2140 bool wxStyledTextEvent::GetAlt() const { return (m_modifiers
& SCI_ALT
) != 0; }
2143 wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent
& event
):
2144 wxCommandEvent(event
)
2146 m_position
= event
.m_position
;
2147 m_key
= event
.m_key
;
2148 m_modifiers
= event
.m_modifiers
;
2149 m_modificationType
= event
.m_modificationType
;
2150 m_text
= event
.m_text
;
2151 m_length
= event
.m_length
;
2152 m_linesAdded
= event
.m_linesAdded
;
2153 m_line
= event
.m_line
;
2154 m_foldLevelNow
= event
.m_foldLevelNow
;
2155 m_foldLevelPrev
= event
.m_foldLevelPrev
;
2157 m_margin
= event
.m_margin
;
2159 m_message
= event
.m_message
;
2160 m_wParam
= event
.m_wParam
;
2161 m_lParam
= event
.m_lParam
;
2163 m_listType
= event
.m_listType
;
2167 m_dragText
= event
.m_dragText
;
2168 m_dragAllowMove
=event
.m_dragAllowMove
;
2169 m_dragResult
= event
.m_dragResult
;
2172 //----------------------------------------------------------------------
2173 //----------------------------------------------------------------------