1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: A wxWidgets implementation of Scintilla. This class is the
4 // one meant to be used directly by wx applications. It does not
5 // derive directly from the Scintilla classes, but instead
6 // delegates most things to the real Scintilla class.
7 // This allows the use of Scintilla without polluting the
8 // namespace with all the classes and identifiers from Scintilla.
12 // Created: 13-Jan-2000
14 // Copyright: (c) 2000 by Total Control Software
15 // Licence: wxWindows license
16 /////////////////////////////////////////////////////////////////////////////
20 #define Point macPoint // These names are also defined by some mac headers so
21 #define Style macStyle // change their names, and then undef before we need them
24 #include <wx/tokenzr.h>
25 #include <wx/mstream.h>
32 #include "wx/stc/stc.h"
33 #include "ScintillaWX.h"
35 //----------------------------------------------------------------------
37 const wxChar
* wxSTCNameStr
= wxT("stcwindow");
43 #define MAKELONG(a, b) ((a) | ((b) << 16))
46 static long wxColourAsLong(const wxColour
& co
) {
47 return (((long)co
.Blue() << 16) |
48 ((long)co
.Green() << 8) |
52 static wxColour
wxColourFromLong(long c
) {
54 clr
.Set((unsigned char)(c
& 0xff),
55 (unsigned char)((c
>> 8) & 0xff),
56 (unsigned char)((c
>> 16) & 0xff));
61 static wxColour
wxColourFromSpec(const wxString
& spec
) {
62 // spec should be a colour name or "#RRGGBB"
63 if (spec
.GetChar(0) == wxT('#')) {
65 long red
, green
, blue
;
66 red
= green
= blue
= 0;
67 spec
.Mid(1,2).ToLong(&red
, 16);
68 spec
.Mid(3,2).ToLong(&green
, 16);
69 spec
.Mid(5,2).ToLong(&blue
, 16);
70 return wxColour((unsigned char)red
,
75 return wxColour(spec
);
78 //----------------------------------------------------------------------
80 DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE
)
81 DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED
)
82 DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED
)
83 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED
)
84 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT
)
85 DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT
)
86 DEFINE_EVENT_TYPE( wxEVT_STC_KEY
)
87 DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK
)
88 DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI
)
89 DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED
)
90 DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD
)
91 DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK
)
92 DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN
)
93 DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED
)
94 DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION
)
95 DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED
)
96 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART
)
97 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND
)
98 DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG
)
99 DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER
)
100 DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP
)
101 DEFINE_EVENT_TYPE( wxEVT_STC_ZOOM
)
102 DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_CLICK
)
103 DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_DCLICK
)
104 DEFINE_EVENT_TYPE( wxEVT_STC_CALLTIP_CLICK
)
108 BEGIN_EVENT_TABLE(wxStyledTextCtrl
, wxControl
)
109 EVT_PAINT (wxStyledTextCtrl::OnPaint
)
110 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin
)
111 EVT_SCROLL (wxStyledTextCtrl::OnScroll
)
112 EVT_SIZE (wxStyledTextCtrl::OnSize
)
113 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown
)
114 // Let Scintilla see the double click as a second click
115 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown
)
116 EVT_MOTION (wxStyledTextCtrl::OnMouseMove
)
117 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp
)
118 #if defined(__WXGTK__) || defined(__WXMAC__)
119 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp
)
121 EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu
)
123 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel
)
124 EVT_MIDDLE_UP (wxStyledTextCtrl::OnMouseMiddleUp
)
125 EVT_CHAR (wxStyledTextCtrl::OnChar
)
126 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown
)
127 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus
)
128 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus
)
129 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged
)
130 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground
)
131 EVT_MENU_RANGE (10, 16, wxStyledTextCtrl::OnMenu
)
132 EVT_LISTBOX_DCLICK (wxID_ANY
, wxStyledTextCtrl::OnListBox
)
136 IMPLEMENT_CLASS(wxStyledTextCtrl
, wxControl
)
137 IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent
, wxCommandEvent
)
140 // forces the linking of the lexer modules
141 int Scintilla_LinkLexers();
144 //----------------------------------------------------------------------
145 // Constructor and Destructor
147 wxStyledTextCtrl::wxStyledTextCtrl(wxWindow
*parent
,
152 const wxString
& name
)
155 Create(parent
, id
, pos
, size
, style
, name
);
159 void wxStyledTextCtrl::Create(wxWindow
*parent
,
164 const wxString
& name
)
167 style
|= wxVSCROLL
| wxHSCROLL
;
169 wxControl::Create(parent
, id
, pos
, size
,
170 style
| wxWANTS_CHARS
| wxCLIP_CHILDREN
,
171 wxDefaultValidator
, name
);
174 Scintilla_LinkLexers();
176 m_swx
= new ScintillaWX(this);
178 m_lastKeyDownConsumed
= false;
182 // Put Scintilla into unicode (UTF-8) mode
183 SetCodePage(wxSTC_CP_UTF8
);
186 SetBestFittingSize(size
);
188 // Reduces flicker on GTK+/X11
189 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
193 wxStyledTextCtrl::~wxStyledTextCtrl() {
198 //----------------------------------------------------------------------
200 long wxStyledTextCtrl::SendMsg(int msg
, long wp
, long lp
) {
202 return m_swx
->WndProc(msg
, wp
, lp
);
205 //----------------------------------------------------------------------
207 // Set the vertical scrollbar to use instead of the ont that's built-in.
208 void wxStyledTextCtrl::SetVScrollBar(wxScrollBar
* bar
) {
211 // ensure that the built-in scrollbar is not visible
212 SetScrollbar(wxVERTICAL
, 0, 0, 0);
217 // Set the horizontal scrollbar to use instead of the ont that's built-in.
218 void wxStyledTextCtrl::SetHScrollBar(wxScrollBar
* bar
) {
221 // ensure that the built-in scrollbar is not visible
222 SetScrollbar(wxHORIZONTAL
, 0, 0, 0);
226 //----------------------------------------------------------------------
227 // BEGIN generated section. The following code is automatically generated
228 // by gen_iface.py from the contents of Scintilla.iface. Do not edit
229 // this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
232 // Add text to the document at current position.
233 void wxStyledTextCtrl::AddText(const wxString
& text
) {
234 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
235 SendMsg(2001, strlen(buf
), (long)(const char*)buf
);
238 // Add array of cells to document.
239 void wxStyledTextCtrl::AddStyledText(const wxMemoryBuffer
& data
) {
240 SendMsg(2002, data
.GetDataLen(), (long)data
.GetData());
243 // Insert string at a position.
244 void wxStyledTextCtrl::InsertText(int pos
, const wxString
& text
) {
245 SendMsg(2003, pos
, (long)(const char*)wx2stc(text
));
248 // Delete all text in the document.
249 void wxStyledTextCtrl::ClearAll() {
253 // Set all style bytes to 0, remove all folding information.
254 void wxStyledTextCtrl::ClearDocumentStyle() {
258 // Returns the number of characters in the document.
259 int wxStyledTextCtrl::GetLength() {
260 return SendMsg(2006, 0, 0);
263 // Returns the character byte at the position.
264 int wxStyledTextCtrl::GetCharAt(int pos
) {
265 return (unsigned char)SendMsg(2007, pos
, 0);
268 // Returns the position of the caret.
269 int wxStyledTextCtrl::GetCurrentPos() {
270 return SendMsg(2008, 0, 0);
273 // Returns the position of the opposite end of the selection to the caret.
274 int wxStyledTextCtrl::GetAnchor() {
275 return SendMsg(2009, 0, 0);
278 // Returns the style byte at the position.
279 int wxStyledTextCtrl::GetStyleAt(int pos
) {
280 return (unsigned char)SendMsg(2010, pos
, 0);
283 // Redoes the next action on the undo history.
284 void wxStyledTextCtrl::Redo() {
288 // Choose between collecting actions into the undo
289 // history and discarding them.
290 void wxStyledTextCtrl::SetUndoCollection(bool collectUndo
) {
291 SendMsg(2012, collectUndo
, 0);
294 // Select all the text in the document.
295 void wxStyledTextCtrl::SelectAll() {
299 // Remember the current position in the undo history as the position
300 // at which the document was saved.
301 void wxStyledTextCtrl::SetSavePoint() {
305 // Retrieve a buffer of cells.
306 wxMemoryBuffer
wxStyledTextCtrl::GetStyledText(int startPos
, int endPos
) {
308 if (endPos
< startPos
) {
313 int len
= endPos
- startPos
;
314 if (!len
) return buf
;
316 tr
.lpstrText
= (char*)buf
.GetWriteBuf(len
*2+1);
317 tr
.chrg
.cpMin
= startPos
;
318 tr
.chrg
.cpMax
= endPos
;
319 len
= SendMsg(2015, 0, (long)&tr
);
320 buf
.UngetWriteBuf(len
);
324 // Are there any redoable actions in the undo history?
325 bool wxStyledTextCtrl::CanRedo() {
326 return SendMsg(2016, 0, 0) != 0;
329 // Retrieve the line number at which a particular marker is located.
330 int wxStyledTextCtrl::MarkerLineFromHandle(int handle
) {
331 return SendMsg(2017, handle
, 0);
335 void wxStyledTextCtrl::MarkerDeleteHandle(int handle
) {
336 SendMsg(2018, handle
, 0);
339 // Is undo history being collected?
340 bool wxStyledTextCtrl::GetUndoCollection() {
341 return SendMsg(2019, 0, 0) != 0;
344 // Are white space characters currently visible?
345 // Returns one of SCWS_* constants.
346 int wxStyledTextCtrl::GetViewWhiteSpace() {
347 return SendMsg(2020, 0, 0);
350 // Make white space characters invisible, always visible or visible outside indentation.
351 void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS
) {
352 SendMsg(2021, viewWS
, 0);
355 // Find the position from a point within the window.
356 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt
) {
357 return SendMsg(2022, pt
.x
, pt
.y
);
360 // Find the position from a point within the window but return
361 // INVALID_POSITION if not close to text.
362 int wxStyledTextCtrl::PositionFromPointClose(int x
, int y
) {
363 return SendMsg(2023, x
, y
);
366 // Set caret to start of a line and ensure it is visible.
367 void wxStyledTextCtrl::GotoLine(int line
) {
368 SendMsg(2024, line
, 0);
371 // Set caret to a position and ensure it is visible.
372 void wxStyledTextCtrl::GotoPos(int pos
) {
373 SendMsg(2025, pos
, 0);
376 // Set the selection anchor to a position. The anchor is the opposite
377 // end of the selection from the caret.
378 void wxStyledTextCtrl::SetAnchor(int posAnchor
) {
379 SendMsg(2026, posAnchor
, 0);
382 // Retrieve the text of the line containing the caret.
383 // Returns the index of the caret on the line.
384 wxString
wxStyledTextCtrl::GetCurLine(int* linePos
) {
385 int len
= LineLength(GetCurrentLine());
387 if (linePos
) *linePos
= 0;
388 return wxEmptyString
;
391 wxMemoryBuffer
mbuf(len
+1);
392 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
394 int pos
= SendMsg(2027, len
+1, (long)buf
);
395 mbuf
.UngetWriteBuf(len
);
397 if (linePos
) *linePos
= pos
;
401 // Retrieve the position of the last correctly styled character.
402 int wxStyledTextCtrl::GetEndStyled() {
403 return SendMsg(2028, 0, 0);
406 // Convert all line endings in the document to one mode.
407 void wxStyledTextCtrl::ConvertEOLs(int eolMode
) {
408 SendMsg(2029, eolMode
, 0);
411 // Retrieve the current end of line mode - one of CRLF, CR, or LF.
412 int wxStyledTextCtrl::GetEOLMode() {
413 return SendMsg(2030, 0, 0);
416 // Set the current end of line mode.
417 void wxStyledTextCtrl::SetEOLMode(int eolMode
) {
418 SendMsg(2031, eolMode
, 0);
421 // Set the current styling position to pos and the styling mask to mask.
422 // The styling mask can be used to protect some bits in each styling byte from modification.
423 void wxStyledTextCtrl::StartStyling(int pos
, int mask
) {
424 SendMsg(2032, pos
, mask
);
427 // Change style from current styling position for length characters to a style
428 // and move the current styling position to after this newly styled segment.
429 void wxStyledTextCtrl::SetStyling(int length
, int style
) {
430 SendMsg(2033, length
, style
);
433 // Is drawing done first into a buffer or direct to the screen?
434 bool wxStyledTextCtrl::GetBufferedDraw() {
435 return SendMsg(2034, 0, 0) != 0;
438 // If drawing is buffered then each line of text is drawn into a bitmap buffer
439 // before drawing it to the screen to avoid flicker.
440 void wxStyledTextCtrl::SetBufferedDraw(bool buffered
) {
441 SendMsg(2035, buffered
, 0);
444 // Change the visible size of a tab to be a multiple of the width of a space character.
445 void wxStyledTextCtrl::SetTabWidth(int tabWidth
) {
446 SendMsg(2036, tabWidth
, 0);
449 // Retrieve the visible size of a tab.
450 int wxStyledTextCtrl::GetTabWidth() {
451 return SendMsg(2121, 0, 0);
454 // Set the code page used to interpret the bytes of the document as characters.
455 void wxStyledTextCtrl::SetCodePage(int codePage
) {
457 wxASSERT_MSG(codePage
== wxSTC_CP_UTF8
,
458 wxT("Only wxSTC_CP_UTF8 may be used when wxUSE_UNICODE is on."));
460 wxASSERT_MSG(codePage
!= wxSTC_CP_UTF8
,
461 wxT("wxSTC_CP_UTF8 may not be used when wxUSE_UNICODE is off."));
463 SendMsg(2037, codePage
);
466 // Set the symbol used for a particular marker number,
467 // and optionally the fore and background colours.
468 void wxStyledTextCtrl::MarkerDefine(int markerNumber
, int markerSymbol
,
469 const wxColour
& foreground
,
470 const wxColour
& background
) {
472 SendMsg(2040, markerNumber
, markerSymbol
);
474 MarkerSetForeground(markerNumber
, foreground
);
476 MarkerSetBackground(markerNumber
, background
);
479 // Set the foreground colour used for a particular marker number.
480 void wxStyledTextCtrl::MarkerSetForeground(int markerNumber
, const wxColour
& fore
) {
481 SendMsg(2041, markerNumber
, wxColourAsLong(fore
));
484 // Set the background colour used for a particular marker number.
485 void wxStyledTextCtrl::MarkerSetBackground(int markerNumber
, const wxColour
& back
) {
486 SendMsg(2042, markerNumber
, wxColourAsLong(back
));
489 // Add a marker to a line, returning an ID which can be used to find or delete the marker.
490 int wxStyledTextCtrl::MarkerAdd(int line
, int markerNumber
) {
491 return SendMsg(2043, line
, markerNumber
);
494 // Delete a marker from a line.
495 void wxStyledTextCtrl::MarkerDelete(int line
, int markerNumber
) {
496 SendMsg(2044, line
, markerNumber
);
499 // Delete all markers with a particular number from all lines.
500 void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber
) {
501 SendMsg(2045, markerNumber
, 0);
504 // Get a bit mask of all the markers set on a line.
505 int wxStyledTextCtrl::MarkerGet(int line
) {
506 return SendMsg(2046, line
, 0);
509 // Find the next line after lineStart that includes a marker in mask.
510 int wxStyledTextCtrl::MarkerNext(int lineStart
, int markerMask
) {
511 return SendMsg(2047, lineStart
, markerMask
);
514 // Find the previous line before lineStart that includes a marker in mask.
515 int wxStyledTextCtrl::MarkerPrevious(int lineStart
, int markerMask
) {
516 return SendMsg(2048, lineStart
, markerMask
);
519 // Define a marker from a bitmap
520 void wxStyledTextCtrl::MarkerDefineBitmap(int markerNumber
, const wxBitmap
& bmp
) {
521 // convert bmp to a xpm in a string
522 wxMemoryOutputStream strm
;
523 wxImage img
= bmp
.ConvertToImage();
524 img
.SaveFile(strm
, wxBITMAP_TYPE_XPM
);
525 size_t len
= strm
.GetSize();
526 char* buff
= new char[len
+1];
527 strm
.CopyTo(buff
, len
);
529 SendMsg(2049, markerNumber
, (long)buff
);
534 // Set a margin to be either numeric or symbolic.
535 void wxStyledTextCtrl::SetMarginType(int margin
, int marginType
) {
536 SendMsg(2240, margin
, marginType
);
539 // Retrieve the type of a margin.
540 int wxStyledTextCtrl::GetMarginType(int margin
) {
541 return SendMsg(2241, margin
, 0);
544 // Set the width of a margin to a width expressed in pixels.
545 void wxStyledTextCtrl::SetMarginWidth(int margin
, int pixelWidth
) {
546 SendMsg(2242, margin
, pixelWidth
);
549 // Retrieve the width of a margin in pixels.
550 int wxStyledTextCtrl::GetMarginWidth(int margin
) {
551 return SendMsg(2243, margin
, 0);
554 // Set a mask that determines which markers are displayed in a margin.
555 void wxStyledTextCtrl::SetMarginMask(int margin
, int mask
) {
556 SendMsg(2244, margin
, mask
);
559 // Retrieve the marker mask of a margin.
560 int wxStyledTextCtrl::GetMarginMask(int margin
) {
561 return SendMsg(2245, margin
, 0);
564 // Make a margin sensitive or insensitive to mouse clicks.
565 void wxStyledTextCtrl::SetMarginSensitive(int margin
, bool sensitive
) {
566 SendMsg(2246, margin
, sensitive
);
569 // Retrieve the mouse click sensitivity of a margin.
570 bool wxStyledTextCtrl::GetMarginSensitive(int margin
) {
571 return SendMsg(2247, margin
, 0) != 0;
574 // Clear all the styles and make equivalent to the global default style.
575 void wxStyledTextCtrl::StyleClearAll() {
579 // Set the foreground colour of a style.
580 void wxStyledTextCtrl::StyleSetForeground(int style
, const wxColour
& fore
) {
581 SendMsg(2051, style
, wxColourAsLong(fore
));
584 // Set the background colour of a style.
585 void wxStyledTextCtrl::StyleSetBackground(int style
, const wxColour
& back
) {
586 SendMsg(2052, style
, wxColourAsLong(back
));
589 // Set a style to be bold or not.
590 void wxStyledTextCtrl::StyleSetBold(int style
, bool bold
) {
591 SendMsg(2053, style
, bold
);
594 // Set a style to be italic or not.
595 void wxStyledTextCtrl::StyleSetItalic(int style
, bool italic
) {
596 SendMsg(2054, style
, italic
);
599 // Set the size of characters of a style.
600 void wxStyledTextCtrl::StyleSetSize(int style
, int sizePoints
) {
601 SendMsg(2055, style
, sizePoints
);
604 // Set the font of a style.
605 void wxStyledTextCtrl::StyleSetFaceName(int style
, const wxString
& fontName
) {
606 SendMsg(2056, style
, (long)(const char*)wx2stc(fontName
));
609 // Set a style to have its end of line filled or not.
610 void wxStyledTextCtrl::StyleSetEOLFilled(int style
, bool filled
) {
611 SendMsg(2057, style
, filled
);
614 // Reset the default style to its state at startup
615 void wxStyledTextCtrl::StyleResetDefault() {
619 // Set a style to be underlined or not.
620 void wxStyledTextCtrl::StyleSetUnderline(int style
, bool underline
) {
621 SendMsg(2059, style
, underline
);
624 // Set a style to be mixed case, or to force upper or lower case.
625 void wxStyledTextCtrl::StyleSetCase(int style
, int caseForce
) {
626 SendMsg(2060, style
, caseForce
);
629 // Set the character set of the font in a style.
630 void wxStyledTextCtrl::StyleSetCharacterSet(int style
, int characterSet
) {
631 SendMsg(2066, style
, characterSet
);
634 // Set a style to be a hotspot or not.
635 void wxStyledTextCtrl::StyleSetHotSpot(int style
, bool hotspot
) {
636 SendMsg(2409, style
, hotspot
);
639 // Set the foreground colour of the selection and whether to use this setting.
640 void wxStyledTextCtrl::SetSelForeground(bool useSetting
, const wxColour
& fore
) {
641 SendMsg(2067, useSetting
, wxColourAsLong(fore
));
644 // Set the background colour of the selection and whether to use this setting.
645 void wxStyledTextCtrl::SetSelBackground(bool useSetting
, const wxColour
& back
) {
646 SendMsg(2068, useSetting
, wxColourAsLong(back
));
649 // Set the foreground colour of the caret.
650 void wxStyledTextCtrl::SetCaretForeground(const wxColour
& fore
) {
651 SendMsg(2069, wxColourAsLong(fore
), 0);
654 // When key+modifier combination km is pressed perform msg.
655 void wxStyledTextCtrl::CmdKeyAssign(int key
, int modifiers
, int cmd
) {
656 SendMsg(2070, MAKELONG(key
, modifiers
), cmd
);
659 // When key+modifier combination km is pressed do nothing.
660 void wxStyledTextCtrl::CmdKeyClear(int key
, int modifiers
) {
661 SendMsg(2071, MAKELONG(key
, modifiers
));
664 // Drop all key mappings.
665 void wxStyledTextCtrl::CmdKeyClearAll() {
669 // Set the styles for a segment of the document.
670 void wxStyledTextCtrl::SetStyleBytes(int length
, char* styleBytes
) {
671 SendMsg(2073, length
, (long)styleBytes
);
674 // Set a style to be visible or not.
675 void wxStyledTextCtrl::StyleSetVisible(int style
, bool visible
) {
676 SendMsg(2074, style
, visible
);
679 // Get the time in milliseconds that the caret is on and off.
680 int wxStyledTextCtrl::GetCaretPeriod() {
681 return SendMsg(2075, 0, 0);
684 // Get the time in milliseconds that the caret is on and off. 0 = steady on.
685 void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds
) {
686 SendMsg(2076, periodMilliseconds
, 0);
689 // Set the set of characters making up words for when moving or selecting by word.
690 // First sets deaults like SetCharsDefault.
691 void wxStyledTextCtrl::SetWordChars(const wxString
& characters
) {
692 SendMsg(2077, 0, (long)(const char*)wx2stc(characters
));
695 // Start a sequence of actions that is undone and redone as a unit.
697 void wxStyledTextCtrl::BeginUndoAction() {
701 // End a sequence of actions that is undone and redone as a unit.
702 void wxStyledTextCtrl::EndUndoAction() {
706 // Set an indicator to plain, squiggle or TT.
707 void wxStyledTextCtrl::IndicatorSetStyle(int indic
, int style
) {
708 SendMsg(2080, indic
, style
);
711 // Retrieve the style of an indicator.
712 int wxStyledTextCtrl::IndicatorGetStyle(int indic
) {
713 return SendMsg(2081, indic
, 0);
716 // Set the foreground colour of an indicator.
717 void wxStyledTextCtrl::IndicatorSetForeground(int indic
, const wxColour
& fore
) {
718 SendMsg(2082, indic
, wxColourAsLong(fore
));
721 // Retrieve the foreground colour of an indicator.
722 wxColour
wxStyledTextCtrl::IndicatorGetForeground(int indic
) {
723 long c
= SendMsg(2083, indic
, 0);
724 return wxColourFromLong(c
);
727 // Set the foreground colour of all whitespace and whether to use this setting.
728 void wxStyledTextCtrl::SetWhitespaceForeground(bool useSetting
, const wxColour
& fore
) {
729 SendMsg(2084, useSetting
, wxColourAsLong(fore
));
732 // Set the background colour of all whitespace and whether to use this setting.
733 void wxStyledTextCtrl::SetWhitespaceBackground(bool useSetting
, const wxColour
& back
) {
734 SendMsg(2085, useSetting
, wxColourAsLong(back
));
737 // Divide each styling byte into lexical class bits (default: 5) and indicator
738 // bits (default: 3). If a lexer requires more than 32 lexical states, then this
739 // is used to expand the possible states.
740 void wxStyledTextCtrl::SetStyleBits(int bits
) {
741 SendMsg(2090, bits
, 0);
744 // Retrieve number of bits in style bytes used to hold the lexical state.
745 int wxStyledTextCtrl::GetStyleBits() {
746 return SendMsg(2091, 0, 0);
749 // Used to hold extra styling information for each line.
750 void wxStyledTextCtrl::SetLineState(int line
, int state
) {
751 SendMsg(2092, line
, state
);
754 // Retrieve the extra styling information for a line.
755 int wxStyledTextCtrl::GetLineState(int line
) {
756 return SendMsg(2093, line
, 0);
759 // Retrieve the last line number that has line state.
760 int wxStyledTextCtrl::GetMaxLineState() {
761 return SendMsg(2094, 0, 0);
764 // Is the background of the line containing the caret in a different colour?
765 bool wxStyledTextCtrl::GetCaretLineVisible() {
766 return SendMsg(2095, 0, 0) != 0;
769 // Display the background of the line containing the caret in a different colour.
770 void wxStyledTextCtrl::SetCaretLineVisible(bool show
) {
771 SendMsg(2096, show
, 0);
774 // Get the colour of the background of the line containing the caret.
775 wxColour
wxStyledTextCtrl::GetCaretLineBack() {
776 long c
= SendMsg(2097, 0, 0);
777 return wxColourFromLong(c
);
780 // Set the colour of the background of the line containing the caret.
781 void wxStyledTextCtrl::SetCaretLineBack(const wxColour
& back
) {
782 SendMsg(2098, wxColourAsLong(back
), 0);
785 // Set a style to be changeable or not (read only).
786 // Experimental feature, currently buggy.
787 void wxStyledTextCtrl::StyleSetChangeable(int style
, bool changeable
) {
788 SendMsg(2099, style
, changeable
);
791 // Display a auto-completion list.
792 // The lenEntered parameter indicates how many characters before
793 // the caret should be used to provide context.
794 void wxStyledTextCtrl::AutoCompShow(int lenEntered
, const wxString
& itemList
) {
795 SendMsg(2100, lenEntered
, (long)(const char*)wx2stc(itemList
));
798 // Remove the auto-completion list from the screen.
799 void wxStyledTextCtrl::AutoCompCancel() {
803 // Is there an auto-completion list visible?
804 bool wxStyledTextCtrl::AutoCompActive() {
805 return SendMsg(2102, 0, 0) != 0;
808 // Retrieve the position of the caret when the auto-completion list was displayed.
809 int wxStyledTextCtrl::AutoCompPosStart() {
810 return SendMsg(2103, 0, 0);
813 // User has selected an item so remove the list and insert the selection.
814 void wxStyledTextCtrl::AutoCompComplete() {
818 // Define a set of character that when typed cancel the auto-completion list.
819 void wxStyledTextCtrl::AutoCompStops(const wxString
& characterSet
) {
820 SendMsg(2105, 0, (long)(const char*)wx2stc(characterSet
));
823 // Change the separator character in the string setting up an auto-completion list.
824 // Default is space but can be changed if items contain space.
825 void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter
) {
826 SendMsg(2106, separatorCharacter
, 0);
829 // Retrieve the auto-completion list separator character.
830 int wxStyledTextCtrl::AutoCompGetSeparator() {
831 return SendMsg(2107, 0, 0);
834 // Select the item in the auto-completion list that starts with a string.
835 void wxStyledTextCtrl::AutoCompSelect(const wxString
& text
) {
836 SendMsg(2108, 0, (long)(const char*)wx2stc(text
));
839 // Should the auto-completion list be cancelled if the user backspaces to a
840 // position before where the box was created.
841 void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel
) {
842 SendMsg(2110, cancel
, 0);
845 // Retrieve whether auto-completion cancelled by backspacing before start.
846 bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
847 return SendMsg(2111, 0, 0) != 0;
850 // Define a set of characters that when typed will cause the autocompletion to
851 // choose the selected item.
852 void wxStyledTextCtrl::AutoCompSetFillUps(const wxString
& characterSet
) {
853 SendMsg(2112, 0, (long)(const char*)wx2stc(characterSet
));
856 // Should a single item auto-completion list automatically choose the item.
857 void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle
) {
858 SendMsg(2113, chooseSingle
, 0);
861 // Retrieve whether a single item auto-completion list automatically choose the item.
862 bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
863 return SendMsg(2114, 0, 0) != 0;
866 // Set whether case is significant when performing auto-completion searches.
867 void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase
) {
868 SendMsg(2115, ignoreCase
, 0);
871 // Retrieve state of ignore case flag.
872 bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
873 return SendMsg(2116, 0, 0) != 0;
876 // Display a list of strings and send notification when user chooses one.
877 void wxStyledTextCtrl::UserListShow(int listType
, const wxString
& itemList
) {
878 SendMsg(2117, listType
, (long)(const char*)wx2stc(itemList
));
881 // Set whether or not autocompletion is hidden automatically when nothing matches.
882 void wxStyledTextCtrl::AutoCompSetAutoHide(bool autoHide
) {
883 SendMsg(2118, autoHide
, 0);
886 // Retrieve whether or not autocompletion is hidden automatically when nothing matches.
887 bool wxStyledTextCtrl::AutoCompGetAutoHide() {
888 return SendMsg(2119, 0, 0) != 0;
891 // Set whether or not autocompletion deletes any word characters
892 // after the inserted text upon completion.
893 void wxStyledTextCtrl::AutoCompSetDropRestOfWord(bool dropRestOfWord
) {
894 SendMsg(2270, dropRestOfWord
, 0);
897 // Retrieve whether or not autocompletion deletes any word characters
898 // after the inserted text upon completion.
899 bool wxStyledTextCtrl::AutoCompGetDropRestOfWord() {
900 return SendMsg(2271, 0, 0) != 0;
903 // Register an image for use in autocompletion lists.
904 void wxStyledTextCtrl::RegisterImage(int type
, const wxBitmap
& bmp
) {
905 // convert bmp to a xpm in a string
906 wxMemoryOutputStream strm
;
907 wxImage img
= bmp
.ConvertToImage();
908 img
.SaveFile(strm
, wxBITMAP_TYPE_XPM
);
909 size_t len
= strm
.GetSize();
910 char* buff
= new char[len
+1];
911 strm
.CopyTo(buff
, len
);
913 SendMsg(2405, type
, (long)buff
);
918 // Clear all the registered images.
919 void wxStyledTextCtrl::ClearRegisteredImages() {
923 // Retrieve the auto-completion list type-separator character.
924 int wxStyledTextCtrl::AutoCompGetTypeSeparator() {
925 return SendMsg(2285, 0, 0);
928 // Change the type-separator character in the string setting up an auto-completion list.
929 // Default is '?' but can be changed if items contain '?'.
930 void wxStyledTextCtrl::AutoCompSetTypeSeparator(int separatorCharacter
) {
931 SendMsg(2286, separatorCharacter
, 0);
934 // Set the number of spaces used for one level of indentation.
935 void wxStyledTextCtrl::SetIndent(int indentSize
) {
936 SendMsg(2122, indentSize
, 0);
939 // Retrieve indentation size.
940 int wxStyledTextCtrl::GetIndent() {
941 return SendMsg(2123, 0, 0);
944 // Indentation will only use space characters if useTabs is false, otherwise
945 // it will use a combination of tabs and spaces.
946 void wxStyledTextCtrl::SetUseTabs(bool useTabs
) {
947 SendMsg(2124, useTabs
, 0);
950 // Retrieve whether tabs will be used in indentation.
951 bool wxStyledTextCtrl::GetUseTabs() {
952 return SendMsg(2125, 0, 0) != 0;
955 // Change the indentation of a line to a number of columns.
956 void wxStyledTextCtrl::SetLineIndentation(int line
, int indentSize
) {
957 SendMsg(2126, line
, indentSize
);
960 // Retrieve the number of columns that a line is indented.
961 int wxStyledTextCtrl::GetLineIndentation(int line
) {
962 return SendMsg(2127, line
, 0);
965 // Retrieve the position before the first non indentation character on a line.
966 int wxStyledTextCtrl::GetLineIndentPosition(int line
) {
967 return SendMsg(2128, line
, 0);
970 // Retrieve the column number of a position, taking tab width into account.
971 int wxStyledTextCtrl::GetColumn(int pos
) {
972 return SendMsg(2129, pos
, 0);
975 // Show or hide the horizontal scroll bar.
976 void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show
) {
977 SendMsg(2130, show
, 0);
980 // Is the horizontal scroll bar visible?
981 bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
982 return SendMsg(2131, 0, 0) != 0;
985 // Show or hide indentation guides.
986 void wxStyledTextCtrl::SetIndentationGuides(bool show
) {
987 SendMsg(2132, show
, 0);
990 // Are the indentation guides visible?
991 bool wxStyledTextCtrl::GetIndentationGuides() {
992 return SendMsg(2133, 0, 0) != 0;
995 // Set the highlighted indentation guide column.
996 // 0 = no highlighted guide.
997 void wxStyledTextCtrl::SetHighlightGuide(int column
) {
998 SendMsg(2134, column
, 0);
1001 // Get the highlighted indentation guide column.
1002 int wxStyledTextCtrl::GetHighlightGuide() {
1003 return SendMsg(2135, 0, 0);
1006 // Get the position after the last visible characters on a line.
1007 int wxStyledTextCtrl::GetLineEndPosition(int line
) {
1008 return SendMsg(2136, line
, 0);
1011 // Get the code page used to interpret the bytes of the document as characters.
1012 int wxStyledTextCtrl::GetCodePage() {
1013 return SendMsg(2137, 0, 0);
1016 // Get the foreground colour of the caret.
1017 wxColour
wxStyledTextCtrl::GetCaretForeground() {
1018 long c
= SendMsg(2138, 0, 0);
1019 return wxColourFromLong(c
);
1022 // In read-only mode?
1023 bool wxStyledTextCtrl::GetReadOnly() {
1024 return SendMsg(2140, 0, 0) != 0;
1027 // Sets the position of the caret.
1028 void wxStyledTextCtrl::SetCurrentPos(int pos
) {
1029 SendMsg(2141, pos
, 0);
1032 // Sets the position that starts the selection - this becomes the anchor.
1033 void wxStyledTextCtrl::SetSelectionStart(int pos
) {
1034 SendMsg(2142, pos
, 0);
1037 // Returns the position at the start of the selection.
1038 int wxStyledTextCtrl::GetSelectionStart() {
1039 return SendMsg(2143, 0, 0);
1042 // Sets the position that ends the selection - this becomes the currentPosition.
1043 void wxStyledTextCtrl::SetSelectionEnd(int pos
) {
1044 SendMsg(2144, pos
, 0);
1047 // Returns the position at the end of the selection.
1048 int wxStyledTextCtrl::GetSelectionEnd() {
1049 return SendMsg(2145, 0, 0);
1052 // Sets the print magnification added to the point size of each style for printing.
1053 void wxStyledTextCtrl::SetPrintMagnification(int magnification
) {
1054 SendMsg(2146, magnification
, 0);
1057 // Returns the print magnification.
1058 int wxStyledTextCtrl::GetPrintMagnification() {
1059 return SendMsg(2147, 0, 0);
1062 // Modify colours when printing for clearer printed text.
1063 void wxStyledTextCtrl::SetPrintColourMode(int mode
) {
1064 SendMsg(2148, mode
, 0);
1067 // Returns the print colour mode.
1068 int wxStyledTextCtrl::GetPrintColourMode() {
1069 return SendMsg(2149, 0, 0);
1072 // Find some text in the document.
1073 int wxStyledTextCtrl::FindText(int minPos
, int maxPos
,
1074 const wxString
& text
,
1077 ft
.chrg
.cpMin
= minPos
;
1078 ft
.chrg
.cpMax
= maxPos
;
1079 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1080 ft
.lpstrText
= (char*)(const char*)buf
;
1082 return SendMsg(2150, flags
, (long)&ft
);
1085 // On Windows, will draw the document into a display context such as a printer.
1086 int wxStyledTextCtrl::FormatRange(bool doDraw
,
1095 if (endPos
< startPos
) {
1096 int temp
= startPos
;
1101 fr
.hdcTarget
= target
;
1102 fr
.rc
.top
= renderRect
.GetTop();
1103 fr
.rc
.left
= renderRect
.GetLeft();
1104 fr
.rc
.right
= renderRect
.GetRight();
1105 fr
.rc
.bottom
= renderRect
.GetBottom();
1106 fr
.rcPage
.top
= pageRect
.GetTop();
1107 fr
.rcPage
.left
= pageRect
.GetLeft();
1108 fr
.rcPage
.right
= pageRect
.GetRight();
1109 fr
.rcPage
.bottom
= pageRect
.GetBottom();
1110 fr
.chrg
.cpMin
= startPos
;
1111 fr
.chrg
.cpMax
= endPos
;
1113 return SendMsg(2151, doDraw
, (long)&fr
);
1116 // Retrieve the display line at the top of the display.
1117 int wxStyledTextCtrl::GetFirstVisibleLine() {
1118 return SendMsg(2152, 0, 0);
1121 // Retrieve the contents of a line.
1122 wxString
wxStyledTextCtrl::GetLine(int line
) {
1123 int len
= LineLength(line
);
1124 if (!len
) return wxEmptyString
;
1126 wxMemoryBuffer
mbuf(len
+1);
1127 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1128 SendMsg(2153, line
, (long)buf
);
1129 mbuf
.UngetWriteBuf(len
);
1134 // Returns the number of lines in the document. There is always at least one.
1135 int wxStyledTextCtrl::GetLineCount() {
1136 return SendMsg(2154, 0, 0);
1139 // Sets the size in pixels of the left margin.
1140 void wxStyledTextCtrl::SetMarginLeft(int pixelWidth
) {
1141 SendMsg(2155, 0, pixelWidth
);
1144 // Returns the size in pixels of the left margin.
1145 int wxStyledTextCtrl::GetMarginLeft() {
1146 return SendMsg(2156, 0, 0);
1149 // Sets the size in pixels of the right margin.
1150 void wxStyledTextCtrl::SetMarginRight(int pixelWidth
) {
1151 SendMsg(2157, 0, pixelWidth
);
1154 // Returns the size in pixels of the right margin.
1155 int wxStyledTextCtrl::GetMarginRight() {
1156 return SendMsg(2158, 0, 0);
1159 // Is the document different from when it was last saved?
1160 bool wxStyledTextCtrl::GetModify() {
1161 return SendMsg(2159, 0, 0) != 0;
1164 // Select a range of text.
1165 void wxStyledTextCtrl::SetSelection(int start
, int end
) {
1166 SendMsg(2160, start
, end
);
1169 // Retrieve the selected text.
1170 wxString
wxStyledTextCtrl::GetSelectedText() {
1174 GetSelection(&start
, &end
);
1175 int len
= end
- start
;
1176 if (!len
) return wxEmptyString
;
1178 wxMemoryBuffer
mbuf(len
+2);
1179 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1180 SendMsg(2161, 0, (long)buf
);
1181 mbuf
.UngetWriteBuf(len
);
1186 // Retrieve a range of text.
1187 wxString
wxStyledTextCtrl::GetTextRange(int startPos
, int endPos
) {
1188 if (endPos
< startPos
) {
1189 int temp
= startPos
;
1193 int len
= endPos
- startPos
;
1194 if (!len
) return wxEmptyString
;
1195 wxMemoryBuffer
mbuf(len
+1);
1196 char* buf
= (char*)mbuf
.GetWriteBuf(len
);
1199 tr
.chrg
.cpMin
= startPos
;
1200 tr
.chrg
.cpMax
= endPos
;
1201 SendMsg(2162, 0, (long)&tr
);
1202 mbuf
.UngetWriteBuf(len
);
1207 // Draw the selection in normal style or with selection highlighted.
1208 void wxStyledTextCtrl::HideSelection(bool normal
) {
1209 SendMsg(2163, normal
, 0);
1212 // Retrieve the line containing a position.
1213 int wxStyledTextCtrl::LineFromPosition(int pos
) {
1214 return SendMsg(2166, pos
, 0);
1217 // Retrieve the position at the start of a line.
1218 int wxStyledTextCtrl::PositionFromLine(int line
) {
1219 return SendMsg(2167, line
, 0);
1222 // Scroll horizontally and vertically.
1223 void wxStyledTextCtrl::LineScroll(int columns
, int lines
) {
1224 SendMsg(2168, columns
, lines
);
1227 // Ensure the caret is visible.
1228 void wxStyledTextCtrl::EnsureCaretVisible() {
1229 SendMsg(2169, 0, 0);
1232 // Replace the selected text with the argument text.
1233 void wxStyledTextCtrl::ReplaceSelection(const wxString
& text
) {
1234 SendMsg(2170, 0, (long)(const char*)wx2stc(text
));
1237 // Set to read only or read write.
1238 void wxStyledTextCtrl::SetReadOnly(bool readOnly
) {
1239 SendMsg(2171, readOnly
, 0);
1242 // Will a paste succeed?
1243 bool wxStyledTextCtrl::CanPaste() {
1244 return SendMsg(2173, 0, 0) != 0;
1247 // Are there any undoable actions in the undo history?
1248 bool wxStyledTextCtrl::CanUndo() {
1249 return SendMsg(2174, 0, 0) != 0;
1252 // Delete the undo history.
1253 void wxStyledTextCtrl::EmptyUndoBuffer() {
1254 SendMsg(2175, 0, 0);
1257 // Undo one action in the undo history.
1258 void wxStyledTextCtrl::Undo() {
1259 SendMsg(2176, 0, 0);
1262 // Cut the selection to the clipboard.
1263 void wxStyledTextCtrl::Cut() {
1264 SendMsg(2177, 0, 0);
1267 // Copy the selection to the clipboard.
1268 void wxStyledTextCtrl::Copy() {
1269 SendMsg(2178, 0, 0);
1272 // Paste the contents of the clipboard into the document replacing the selection.
1273 void wxStyledTextCtrl::Paste() {
1274 SendMsg(2179, 0, 0);
1277 // Clear the selection.
1278 void wxStyledTextCtrl::Clear() {
1279 SendMsg(2180, 0, 0);
1282 // Replace the contents of the document with the argument text.
1283 void wxStyledTextCtrl::SetText(const wxString
& text
) {
1284 SendMsg(2181, 0, (long)(const char*)wx2stc(text
));
1287 // Retrieve all the text in the document.
1288 wxString
wxStyledTextCtrl::GetText() {
1289 int len
= GetTextLength();
1290 wxMemoryBuffer
mbuf(len
+1); // leave room for the null...
1291 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1292 SendMsg(2182, len
+1, (long)buf
);
1293 mbuf
.UngetWriteBuf(len
);
1298 // Retrieve the number of characters in the document.
1299 int wxStyledTextCtrl::GetTextLength() {
1300 return SendMsg(2183, 0, 0);
1303 // Set to overtype (true) or insert mode.
1304 void wxStyledTextCtrl::SetOvertype(bool overtype
) {
1305 SendMsg(2186, overtype
, 0);
1308 // Returns true if overtype mode is active otherwise false is returned.
1309 bool wxStyledTextCtrl::GetOvertype() {
1310 return SendMsg(2187, 0, 0) != 0;
1313 // Set the width of the insert mode caret.
1314 void wxStyledTextCtrl::SetCaretWidth(int pixelWidth
) {
1315 SendMsg(2188, pixelWidth
, 0);
1318 // Returns the width of the insert mode caret.
1319 int wxStyledTextCtrl::GetCaretWidth() {
1320 return SendMsg(2189, 0, 0);
1323 // Sets the position that starts the target which is used for updating the
1324 // document without affecting the scroll position.
1325 void wxStyledTextCtrl::SetTargetStart(int pos
) {
1326 SendMsg(2190, pos
, 0);
1329 // Get the position that starts the target.
1330 int wxStyledTextCtrl::GetTargetStart() {
1331 return SendMsg(2191, 0, 0);
1334 // Sets the position that ends the target which is used for updating the
1335 // document without affecting the scroll position.
1336 void wxStyledTextCtrl::SetTargetEnd(int pos
) {
1337 SendMsg(2192, pos
, 0);
1340 // Get the position that ends the target.
1341 int wxStyledTextCtrl::GetTargetEnd() {
1342 return SendMsg(2193, 0, 0);
1345 // Replace the target text with the argument text.
1346 // Text is counted so it can contain NULs.
1347 // Returns the length of the replacement text.
1349 int wxStyledTextCtrl::ReplaceTarget(const wxString
& text
) {
1350 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1351 return SendMsg(2194, strlen(buf
), (long)(const char*)buf
);
1354 // Replace the target text with the argument text after \d processing.
1355 // Text is counted so it can contain NULs.
1356 // Looks for \d where d is between 1 and 9 and replaces these with the strings
1357 // matched in the last search operation which were surrounded by \( and \).
1358 // Returns the length of the replacement text including any change
1359 // caused by processing the \d patterns.
1361 int wxStyledTextCtrl::ReplaceTargetRE(const wxString
& text
) {
1362 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1363 return SendMsg(2195, strlen(buf
), (long)(const char*)buf
);
1366 // Search for a counted string in the target and set the target to the found
1367 // range. Text is counted so it can contain NULs.
1368 // Returns length of range or -1 for failure in which case target is not moved.
1370 int wxStyledTextCtrl::SearchInTarget(const wxString
& text
) {
1371 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1372 return SendMsg(2197, strlen(buf
), (long)(const char*)buf
);
1375 // Set the search flags used by SearchInTarget.
1376 void wxStyledTextCtrl::SetSearchFlags(int flags
) {
1377 SendMsg(2198, flags
, 0);
1380 // Get the search flags used by SearchInTarget.
1381 int wxStyledTextCtrl::GetSearchFlags() {
1382 return SendMsg(2199, 0, 0);
1385 // Show a call tip containing a definition near position pos.
1386 void wxStyledTextCtrl::CallTipShow(int pos
, const wxString
& definition
) {
1387 SendMsg(2200, pos
, (long)(const char*)wx2stc(definition
));
1390 // Remove the call tip from the screen.
1391 void wxStyledTextCtrl::CallTipCancel() {
1392 SendMsg(2201, 0, 0);
1395 // Is there an active call tip?
1396 bool wxStyledTextCtrl::CallTipActive() {
1397 return SendMsg(2202, 0, 0) != 0;
1400 // Retrieve the position where the caret was before displaying the call tip.
1401 int wxStyledTextCtrl::CallTipPosAtStart() {
1402 return SendMsg(2203, 0, 0);
1405 // Highlight a segment of the definition.
1406 void wxStyledTextCtrl::CallTipSetHighlight(int start
, int end
) {
1407 SendMsg(2204, start
, end
);
1410 // Set the background colour for the call tip.
1411 void wxStyledTextCtrl::CallTipSetBackground(const wxColour
& back
) {
1412 SendMsg(2205, wxColourAsLong(back
), 0);
1415 // Set the foreground colour for the call tip.
1416 void wxStyledTextCtrl::CallTipSetForeground(const wxColour
& fore
) {
1417 SendMsg(2206, wxColourAsLong(fore
), 0);
1420 // Set the foreground colour for the highlighted part of the call tip.
1421 void wxStyledTextCtrl::CallTipSetForegroundHighlight(const wxColour
& fore
) {
1422 SendMsg(2207, wxColourAsLong(fore
), 0);
1425 // Find the display line of a document line taking hidden lines into account.
1426 int wxStyledTextCtrl::VisibleFromDocLine(int line
) {
1427 return SendMsg(2220, line
, 0);
1430 // Find the document line of a display line taking hidden lines into account.
1431 int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay
) {
1432 return SendMsg(2221, lineDisplay
, 0);
1435 // Set the fold level of a line.
1436 // This encodes an integer level along with flags indicating whether the
1437 // line is a header and whether it is effectively white space.
1438 void wxStyledTextCtrl::SetFoldLevel(int line
, int level
) {
1439 SendMsg(2222, line
, level
);
1442 // Retrieve the fold level of a line.
1443 int wxStyledTextCtrl::GetFoldLevel(int line
) {
1444 return SendMsg(2223, line
, 0);
1447 // Find the last child line of a header line.
1448 int wxStyledTextCtrl::GetLastChild(int line
, int level
) {
1449 return SendMsg(2224, line
, level
);
1452 // Find the parent line of a child line.
1453 int wxStyledTextCtrl::GetFoldParent(int line
) {
1454 return SendMsg(2225, line
, 0);
1457 // Make a range of lines visible.
1458 void wxStyledTextCtrl::ShowLines(int lineStart
, int lineEnd
) {
1459 SendMsg(2226, lineStart
, lineEnd
);
1462 // Make a range of lines invisible.
1463 void wxStyledTextCtrl::HideLines(int lineStart
, int lineEnd
) {
1464 SendMsg(2227, lineStart
, lineEnd
);
1467 // Is a line visible?
1468 bool wxStyledTextCtrl::GetLineVisible(int line
) {
1469 return SendMsg(2228, line
, 0) != 0;
1472 // Show the children of a header line.
1473 void wxStyledTextCtrl::SetFoldExpanded(int line
, bool expanded
) {
1474 SendMsg(2229, line
, expanded
);
1477 // Is a header line expanded?
1478 bool wxStyledTextCtrl::GetFoldExpanded(int line
) {
1479 return SendMsg(2230, line
, 0) != 0;
1482 // Switch a header line between expanded and contracted.
1483 void wxStyledTextCtrl::ToggleFold(int line
) {
1484 SendMsg(2231, line
, 0);
1487 // Ensure a particular line is visible by expanding any header line hiding it.
1488 void wxStyledTextCtrl::EnsureVisible(int line
) {
1489 SendMsg(2232, line
, 0);
1492 // Set some style options for folding.
1493 void wxStyledTextCtrl::SetFoldFlags(int flags
) {
1494 SendMsg(2233, flags
, 0);
1497 // Ensure a particular line is visible by expanding any header line hiding it.
1498 // Use the currently set visibility policy to determine which range to display.
1499 void wxStyledTextCtrl::EnsureVisibleEnforcePolicy(int line
) {
1500 SendMsg(2234, line
, 0);
1503 // Sets whether a tab pressed when caret is within indentation indents.
1504 void wxStyledTextCtrl::SetTabIndents(bool tabIndents
) {
1505 SendMsg(2260, tabIndents
, 0);
1508 // Does a tab pressed when caret is within indentation indent?
1509 bool wxStyledTextCtrl::GetTabIndents() {
1510 return SendMsg(2261, 0, 0) != 0;
1513 // Sets whether a backspace pressed when caret is within indentation unindents.
1514 void wxStyledTextCtrl::SetBackSpaceUnIndents(bool bsUnIndents
) {
1515 SendMsg(2262, bsUnIndents
, 0);
1518 // Does a backspace pressed when caret is within indentation unindent?
1519 bool wxStyledTextCtrl::GetBackSpaceUnIndents() {
1520 return SendMsg(2263, 0, 0) != 0;
1523 // Sets the time the mouse must sit still to generate a mouse dwell event.
1524 void wxStyledTextCtrl::SetMouseDwellTime(int periodMilliseconds
) {
1525 SendMsg(2264, periodMilliseconds
, 0);
1528 // Retrieve the time the mouse must sit still to generate a mouse dwell event.
1529 int wxStyledTextCtrl::GetMouseDwellTime() {
1530 return SendMsg(2265, 0, 0);
1533 // Get position of start of word.
1534 int wxStyledTextCtrl::WordStartPosition(int pos
, bool onlyWordCharacters
) {
1535 return SendMsg(2266, pos
, onlyWordCharacters
);
1538 // Get position of end of word.
1539 int wxStyledTextCtrl::WordEndPosition(int pos
, bool onlyWordCharacters
) {
1540 return SendMsg(2267, pos
, onlyWordCharacters
);
1543 // Sets whether text is word wrapped.
1544 void wxStyledTextCtrl::SetWrapMode(int mode
) {
1545 SendMsg(2268, mode
, 0);
1548 // Retrieve whether text is word wrapped.
1549 int wxStyledTextCtrl::GetWrapMode() {
1550 return SendMsg(2269, 0, 0);
1553 // Set the display mode of visual flags for wrapped lines.
1554 void wxStyledTextCtrl::SetWrapVisualFlags(int wrapVisualFlags
) {
1555 SendMsg(2460, wrapVisualFlags
, 0);
1558 // Retrive the display mode of visual flags for wrapped lines.
1559 int wxStyledTextCtrl::GetWrapVisualFlags() {
1560 return SendMsg(2461, 0, 0);
1563 // Set the location of visual flags for wrapped lines.
1564 void wxStyledTextCtrl::SetWrapVisualFlagsLocation(int wrapVisualFlagsLocation
) {
1565 SendMsg(2462, wrapVisualFlagsLocation
, 0);
1568 // Retrive the location of visual flags for wrapped lines.
1569 int wxStyledTextCtrl::GetWrapVisualFlagsLocation() {
1570 return SendMsg(2463, 0, 0);
1573 // Set the start indent for wrapped lines.
1574 void wxStyledTextCtrl::SetWrapStartIndent(int indent
) {
1575 SendMsg(2464, indent
, 0);
1578 // Retrive the start indent for wrapped lines.
1579 int wxStyledTextCtrl::GetWrapStartIndent() {
1580 return SendMsg(2465, 0, 0);
1583 // Sets the degree of caching of layout information.
1584 void wxStyledTextCtrl::SetLayoutCache(int mode
) {
1585 SendMsg(2272, mode
, 0);
1588 // Retrieve the degree of caching of layout information.
1589 int wxStyledTextCtrl::GetLayoutCache() {
1590 return SendMsg(2273, 0, 0);
1593 // Sets the document width assumed for scrolling.
1594 void wxStyledTextCtrl::SetScrollWidth(int pixelWidth
) {
1595 SendMsg(2274, pixelWidth
, 0);
1598 // Retrieve the document width assumed for scrolling.
1599 int wxStyledTextCtrl::GetScrollWidth() {
1600 return SendMsg(2275, 0, 0);
1603 // Measure the pixel width of some text in a particular style.
1604 // NUL terminated text argument.
1605 // Does not handle tab or control characters.
1606 int wxStyledTextCtrl::TextWidth(int style
, const wxString
& text
) {
1607 return SendMsg(2276, style
, (long)(const char*)wx2stc(text
));
1610 // Sets the scroll range so that maximum scroll position has
1611 // the last line at the bottom of the view (default).
1612 // Setting this to false allows scrolling one page below the last line.
1613 void wxStyledTextCtrl::SetEndAtLastLine(bool endAtLastLine
) {
1614 SendMsg(2277, endAtLastLine
, 0);
1617 // Retrieve whether the maximum scroll position has the last
1618 // line at the bottom of the view.
1619 int wxStyledTextCtrl::GetEndAtLastLine() {
1620 return SendMsg(2278, 0, 0);
1623 // Retrieve the height of a particular line of text in pixels.
1624 int wxStyledTextCtrl::TextHeight(int line
) {
1625 return SendMsg(2279, line
, 0);
1628 // Show or hide the vertical scroll bar.
1629 void wxStyledTextCtrl::SetUseVerticalScrollBar(bool show
) {
1630 SendMsg(2280, show
, 0);
1633 // Is the vertical scroll bar visible?
1634 bool wxStyledTextCtrl::GetUseVerticalScrollBar() {
1635 return SendMsg(2281, 0, 0) != 0;
1638 // Append a string to the end of the document without changing the selection.
1639 void wxStyledTextCtrl::AppendText(int length
, const wxString
& text
) {
1640 SendMsg(2282, length
, (long)(const char*)wx2stc(text
));
1643 // Is drawing done in two phases with backgrounds drawn before foregrounds?
1644 bool wxStyledTextCtrl::GetTwoPhaseDraw() {
1645 return SendMsg(2283, 0, 0) != 0;
1648 // In twoPhaseDraw mode, drawing is performed in two phases, first the background
1649 // and then the foreground. This avoids chopping off characters that overlap the next run.
1650 void wxStyledTextCtrl::SetTwoPhaseDraw(bool twoPhase
) {
1651 SendMsg(2284, twoPhase
, 0);
1654 // Make the target range start and end be the same as the selection range start and end.
1655 void wxStyledTextCtrl::TargetFromSelection() {
1656 SendMsg(2287, 0, 0);
1659 // Join the lines in the target.
1660 void wxStyledTextCtrl::LinesJoin() {
1661 SendMsg(2288, 0, 0);
1664 // Split the lines in the target into lines that are less wide than pixelWidth
1666 void wxStyledTextCtrl::LinesSplit(int pixelWidth
) {
1667 SendMsg(2289, pixelWidth
, 0);
1670 // Set the colours used as a chequerboard pattern in the fold margin
1671 void wxStyledTextCtrl::SetFoldMarginColour(bool useSetting
, const wxColour
& back
) {
1672 SendMsg(2290, useSetting
, wxColourAsLong(back
));
1674 void wxStyledTextCtrl::SetFoldMarginHiColour(bool useSetting
, const wxColour
& fore
) {
1675 SendMsg(2291, useSetting
, wxColourAsLong(fore
));
1678 // Move caret down one line.
1679 void wxStyledTextCtrl::LineDown() {
1680 SendMsg(2300, 0, 0);
1683 // Move caret down one line extending selection to new caret position.
1684 void wxStyledTextCtrl::LineDownExtend() {
1685 SendMsg(2301, 0, 0);
1688 // Move caret up one line.
1689 void wxStyledTextCtrl::LineUp() {
1690 SendMsg(2302, 0, 0);
1693 // Move caret up one line extending selection to new caret position.
1694 void wxStyledTextCtrl::LineUpExtend() {
1695 SendMsg(2303, 0, 0);
1698 // Move caret left one character.
1699 void wxStyledTextCtrl::CharLeft() {
1700 SendMsg(2304, 0, 0);
1703 // Move caret left one character extending selection to new caret position.
1704 void wxStyledTextCtrl::CharLeftExtend() {
1705 SendMsg(2305, 0, 0);
1708 // Move caret right one character.
1709 void wxStyledTextCtrl::CharRight() {
1710 SendMsg(2306, 0, 0);
1713 // Move caret right one character extending selection to new caret position.
1714 void wxStyledTextCtrl::CharRightExtend() {
1715 SendMsg(2307, 0, 0);
1718 // Move caret left one word.
1719 void wxStyledTextCtrl::WordLeft() {
1720 SendMsg(2308, 0, 0);
1723 // Move caret left one word extending selection to new caret position.
1724 void wxStyledTextCtrl::WordLeftExtend() {
1725 SendMsg(2309, 0, 0);
1728 // Move caret right one word.
1729 void wxStyledTextCtrl::WordRight() {
1730 SendMsg(2310, 0, 0);
1733 // Move caret right one word extending selection to new caret position.
1734 void wxStyledTextCtrl::WordRightExtend() {
1735 SendMsg(2311, 0, 0);
1738 // Move caret to first position on line.
1739 void wxStyledTextCtrl::Home() {
1740 SendMsg(2312, 0, 0);
1743 // Move caret to first position on line extending selection to new caret position.
1744 void wxStyledTextCtrl::HomeExtend() {
1745 SendMsg(2313, 0, 0);
1748 // Move caret to last position on line.
1749 void wxStyledTextCtrl::LineEnd() {
1750 SendMsg(2314, 0, 0);
1753 // Move caret to last position on line extending selection to new caret position.
1754 void wxStyledTextCtrl::LineEndExtend() {
1755 SendMsg(2315, 0, 0);
1758 // Move caret to first position in document.
1759 void wxStyledTextCtrl::DocumentStart() {
1760 SendMsg(2316, 0, 0);
1763 // Move caret to first position in document extending selection to new caret position.
1764 void wxStyledTextCtrl::DocumentStartExtend() {
1765 SendMsg(2317, 0, 0);
1768 // Move caret to last position in document.
1769 void wxStyledTextCtrl::DocumentEnd() {
1770 SendMsg(2318, 0, 0);
1773 // Move caret to last position in document extending selection to new caret position.
1774 void wxStyledTextCtrl::DocumentEndExtend() {
1775 SendMsg(2319, 0, 0);
1778 // Move caret one page up.
1779 void wxStyledTextCtrl::PageUp() {
1780 SendMsg(2320, 0, 0);
1783 // Move caret one page up extending selection to new caret position.
1784 void wxStyledTextCtrl::PageUpExtend() {
1785 SendMsg(2321, 0, 0);
1788 // Move caret one page down.
1789 void wxStyledTextCtrl::PageDown() {
1790 SendMsg(2322, 0, 0);
1793 // Move caret one page down extending selection to new caret position.
1794 void wxStyledTextCtrl::PageDownExtend() {
1795 SendMsg(2323, 0, 0);
1798 // Switch from insert to overtype mode or the reverse.
1799 void wxStyledTextCtrl::EditToggleOvertype() {
1800 SendMsg(2324, 0, 0);
1803 // Cancel any modes such as call tip or auto-completion list display.
1804 void wxStyledTextCtrl::Cancel() {
1805 SendMsg(2325, 0, 0);
1808 // Delete the selection or if no selection, the character before the caret.
1809 void wxStyledTextCtrl::DeleteBack() {
1810 SendMsg(2326, 0, 0);
1813 // If selection is empty or all on one line replace the selection with a tab character.
1814 // If more than one line selected, indent the lines.
1815 void wxStyledTextCtrl::Tab() {
1816 SendMsg(2327, 0, 0);
1819 // Dedent the selected lines.
1820 void wxStyledTextCtrl::BackTab() {
1821 SendMsg(2328, 0, 0);
1824 // Insert a new line, may use a CRLF, CR or LF depending on EOL mode.
1825 void wxStyledTextCtrl::NewLine() {
1826 SendMsg(2329, 0, 0);
1829 // Insert a Form Feed character.
1830 void wxStyledTextCtrl::FormFeed() {
1831 SendMsg(2330, 0, 0);
1834 // Move caret to before first visible character on line.
1835 // If already there move to first character on line.
1836 void wxStyledTextCtrl::VCHome() {
1837 SendMsg(2331, 0, 0);
1840 // Like VCHome but extending selection to new caret position.
1841 void wxStyledTextCtrl::VCHomeExtend() {
1842 SendMsg(2332, 0, 0);
1845 // Magnify the displayed text by increasing the sizes by 1 point.
1846 void wxStyledTextCtrl::ZoomIn() {
1847 SendMsg(2333, 0, 0);
1850 // Make the displayed text smaller by decreasing the sizes by 1 point.
1851 void wxStyledTextCtrl::ZoomOut() {
1852 SendMsg(2334, 0, 0);
1855 // Delete the word to the left of the caret.
1856 void wxStyledTextCtrl::DelWordLeft() {
1857 SendMsg(2335, 0, 0);
1860 // Delete the word to the right of the caret.
1861 void wxStyledTextCtrl::DelWordRight() {
1862 SendMsg(2336, 0, 0);
1865 // Cut the line containing the caret.
1866 void wxStyledTextCtrl::LineCut() {
1867 SendMsg(2337, 0, 0);
1870 // Delete the line containing the caret.
1871 void wxStyledTextCtrl::LineDelete() {
1872 SendMsg(2338, 0, 0);
1875 // Switch the current line with the previous.
1876 void wxStyledTextCtrl::LineTranspose() {
1877 SendMsg(2339, 0, 0);
1880 // Duplicate the current line.
1881 void wxStyledTextCtrl::LineDuplicate() {
1882 SendMsg(2404, 0, 0);
1885 // Transform the selection to lower case.
1886 void wxStyledTextCtrl::LowerCase() {
1887 SendMsg(2340, 0, 0);
1890 // Transform the selection to upper case.
1891 void wxStyledTextCtrl::UpperCase() {
1892 SendMsg(2341, 0, 0);
1895 // Scroll the document down, keeping the caret visible.
1896 void wxStyledTextCtrl::LineScrollDown() {
1897 SendMsg(2342, 0, 0);
1900 // Scroll the document up, keeping the caret visible.
1901 void wxStyledTextCtrl::LineScrollUp() {
1902 SendMsg(2343, 0, 0);
1905 // Delete the selection or if no selection, the character before the caret.
1906 // Will not delete the character before at the start of a line.
1907 void wxStyledTextCtrl::DeleteBackNotLine() {
1908 SendMsg(2344, 0, 0);
1911 // Move caret to first position on display line.
1912 void wxStyledTextCtrl::HomeDisplay() {
1913 SendMsg(2345, 0, 0);
1916 // Move caret to first position on display line extending selection to
1917 // new caret position.
1918 void wxStyledTextCtrl::HomeDisplayExtend() {
1919 SendMsg(2346, 0, 0);
1922 // Move caret to last position on display line.
1923 void wxStyledTextCtrl::LineEndDisplay() {
1924 SendMsg(2347, 0, 0);
1927 // Move caret to last position on display line extending selection to new
1929 void wxStyledTextCtrl::LineEndDisplayExtend() {
1930 SendMsg(2348, 0, 0);
1933 // These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)?
1934 // except they behave differently when word-wrap is enabled:
1935 // They go first to the start / end of the display line, like (Home|LineEnd)Display
1936 // The difference is that, the cursor is already at the point, it goes on to the start
1937 // or end of the document line, as appropriate for (Home|LineEnd|VCHome)(Extend)?.
1938 void wxStyledTextCtrl::HomeWrap() {
1939 SendMsg(2349, 0, 0);
1941 void wxStyledTextCtrl::HomeWrapExtend() {
1942 SendMsg(2450, 0, 0);
1944 void wxStyledTextCtrl::LineEndWrap() {
1945 SendMsg(2451, 0, 0);
1947 void wxStyledTextCtrl::LineEndWrapExtend() {
1948 SendMsg(2452, 0, 0);
1950 void wxStyledTextCtrl::VCHomeWrap() {
1951 SendMsg(2453, 0, 0);
1953 void wxStyledTextCtrl::VCHomeWrapExtend() {
1954 SendMsg(2454, 0, 0);
1957 // Copy the line containing the caret.
1958 void wxStyledTextCtrl::LineCopy() {
1959 SendMsg(2455, 0, 0);
1962 // Move the caret inside current view if it's not there already.
1963 void wxStyledTextCtrl::MoveCaretInsideView() {
1964 SendMsg(2401, 0, 0);
1967 // How many characters are on a line, not including end of line characters?
1968 int wxStyledTextCtrl::LineLength(int line
) {
1969 return SendMsg(2350, line
, 0);
1972 // Highlight the characters at two positions.
1973 void wxStyledTextCtrl::BraceHighlight(int pos1
, int pos2
) {
1974 SendMsg(2351, pos1
, pos2
);
1977 // Highlight the character at a position indicating there is no matching brace.
1978 void wxStyledTextCtrl::BraceBadLight(int pos
) {
1979 SendMsg(2352, pos
, 0);
1982 // Find the position of a matching brace or INVALID_POSITION if no match.
1983 int wxStyledTextCtrl::BraceMatch(int pos
) {
1984 return SendMsg(2353, pos
, 0);
1987 // Are the end of line characters visible?
1988 bool wxStyledTextCtrl::GetViewEOL() {
1989 return SendMsg(2355, 0, 0) != 0;
1992 // Make the end of line characters visible or invisible.
1993 void wxStyledTextCtrl::SetViewEOL(bool visible
) {
1994 SendMsg(2356, visible
, 0);
1997 // Retrieve a pointer to the document object.
1998 void* wxStyledTextCtrl::GetDocPointer() {
1999 return (void*)SendMsg(2357);
2002 // Change the document object used.
2003 void wxStyledTextCtrl::SetDocPointer(void* docPointer
) {
2004 SendMsg(2358, 0, (long)docPointer
);
2007 // Set which document modification events are sent to the container.
2008 void wxStyledTextCtrl::SetModEventMask(int mask
) {
2009 SendMsg(2359, mask
, 0);
2012 // Retrieve the column number which text should be kept within.
2013 int wxStyledTextCtrl::GetEdgeColumn() {
2014 return SendMsg(2360, 0, 0);
2017 // Set the column number of the edge.
2018 // If text goes past the edge then it is highlighted.
2019 void wxStyledTextCtrl::SetEdgeColumn(int column
) {
2020 SendMsg(2361, column
, 0);
2023 // Retrieve the edge highlight mode.
2024 int wxStyledTextCtrl::GetEdgeMode() {
2025 return SendMsg(2362, 0, 0);
2028 // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
2029 // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
2030 void wxStyledTextCtrl::SetEdgeMode(int mode
) {
2031 SendMsg(2363, mode
, 0);
2034 // Retrieve the colour used in edge indication.
2035 wxColour
wxStyledTextCtrl::GetEdgeColour() {
2036 long c
= SendMsg(2364, 0, 0);
2037 return wxColourFromLong(c
);
2040 // Change the colour used in edge indication.
2041 void wxStyledTextCtrl::SetEdgeColour(const wxColour
& edgeColour
) {
2042 SendMsg(2365, wxColourAsLong(edgeColour
), 0);
2045 // Sets the current caret position to be the search anchor.
2046 void wxStyledTextCtrl::SearchAnchor() {
2047 SendMsg(2366, 0, 0);
2050 // Find some text starting at the search anchor.
2051 // Does not ensure the selection is visible.
2052 int wxStyledTextCtrl::SearchNext(int flags
, const wxString
& text
) {
2053 return SendMsg(2367, flags
, (long)(const char*)wx2stc(text
));
2056 // Find some text starting at the search anchor and moving backwards.
2057 // Does not ensure the selection is visible.
2058 int wxStyledTextCtrl::SearchPrev(int flags
, const wxString
& text
) {
2059 return SendMsg(2368, flags
, (long)(const char*)wx2stc(text
));
2062 // Retrieves the number of lines completely visible.
2063 int wxStyledTextCtrl::LinesOnScreen() {
2064 return SendMsg(2370, 0, 0);
2067 // Set whether a pop up menu is displayed automatically when the user presses
2068 // the wrong mouse button.
2069 void wxStyledTextCtrl::UsePopUp(bool allowPopUp
) {
2070 SendMsg(2371, allowPopUp
, 0);
2073 // Is the selection rectangular? The alternative is the more common stream selection.
2074 bool wxStyledTextCtrl::SelectionIsRectangle() {
2075 return SendMsg(2372, 0, 0) != 0;
2078 // Set the zoom level. This number of points is added to the size of all fonts.
2079 // It may be positive to magnify or negative to reduce.
2080 void wxStyledTextCtrl::SetZoom(int zoom
) {
2081 SendMsg(2373, zoom
, 0);
2084 // Retrieve the zoom level.
2085 int wxStyledTextCtrl::GetZoom() {
2086 return SendMsg(2374, 0, 0);
2089 // Create a new document object.
2090 // Starts with reference count of 1 and not selected into editor.
2091 void* wxStyledTextCtrl::CreateDocument() {
2092 return (void*)SendMsg(2375);
2095 // Extend life of document.
2096 void wxStyledTextCtrl::AddRefDocument(void* docPointer
) {
2097 SendMsg(2376, 0, (long)docPointer
);
2100 // Release a reference to the document, deleting document if it fades to black.
2101 void wxStyledTextCtrl::ReleaseDocument(void* docPointer
) {
2102 SendMsg(2377, 0, (long)docPointer
);
2105 // Get which document modification events are sent to the container.
2106 int wxStyledTextCtrl::GetModEventMask() {
2107 return SendMsg(2378, 0, 0);
2110 // Change internal focus flag.
2111 void wxStyledTextCtrl::SetSTCFocus(bool focus
) {
2112 SendMsg(2380, focus
, 0);
2115 // Get internal focus flag.
2116 bool wxStyledTextCtrl::GetSTCFocus() {
2117 return SendMsg(2381, 0, 0) != 0;
2120 // Change error status - 0 = OK.
2121 void wxStyledTextCtrl::SetStatus(int statusCode
) {
2122 SendMsg(2382, statusCode
, 0);
2125 // Get error status.
2126 int wxStyledTextCtrl::GetStatus() {
2127 return SendMsg(2383, 0, 0);
2130 // Set whether the mouse is captured when its button is pressed.
2131 void wxStyledTextCtrl::SetMouseDownCaptures(bool captures
) {
2132 SendMsg(2384, captures
, 0);
2135 // Get whether mouse gets captured.
2136 bool wxStyledTextCtrl::GetMouseDownCaptures() {
2137 return SendMsg(2385, 0, 0) != 0;
2140 // Sets the cursor to one of the SC_CURSOR* values.
2141 void wxStyledTextCtrl::SetSTCCursor(int cursorType
) {
2142 SendMsg(2386, cursorType
, 0);
2146 int wxStyledTextCtrl::GetSTCCursor() {
2147 return SendMsg(2387, 0, 0);
2150 // Change the way control characters are displayed:
2151 // If symbol is < 32, keep the drawn way, else, use the given character.
2152 void wxStyledTextCtrl::SetControlCharSymbol(int symbol
) {
2153 SendMsg(2388, symbol
, 0);
2156 // Get the way control characters are displayed.
2157 int wxStyledTextCtrl::GetControlCharSymbol() {
2158 return SendMsg(2389, 0, 0);
2161 // Move to the previous change in capitalisation.
2162 void wxStyledTextCtrl::WordPartLeft() {
2163 SendMsg(2390, 0, 0);
2166 // Move to the previous change in capitalisation extending selection
2167 // to new caret position.
2168 void wxStyledTextCtrl::WordPartLeftExtend() {
2169 SendMsg(2391, 0, 0);
2172 // Move to the change next in capitalisation.
2173 void wxStyledTextCtrl::WordPartRight() {
2174 SendMsg(2392, 0, 0);
2177 // Move to the next change in capitalisation extending selection
2178 // to new caret position.
2179 void wxStyledTextCtrl::WordPartRightExtend() {
2180 SendMsg(2393, 0, 0);
2183 // Set the way the display area is determined when a particular line
2184 // is to be moved to by Find, FindNext, GotoLine, etc.
2185 void wxStyledTextCtrl::SetVisiblePolicy(int visiblePolicy
, int visibleSlop
) {
2186 SendMsg(2394, visiblePolicy
, visibleSlop
);
2189 // Delete back from the current position to the start of the line.
2190 void wxStyledTextCtrl::DelLineLeft() {
2191 SendMsg(2395, 0, 0);
2194 // Delete forwards from the current position to the end of the line.
2195 void wxStyledTextCtrl::DelLineRight() {
2196 SendMsg(2396, 0, 0);
2199 // Get and Set the xOffset (ie, horizonal scroll position).
2200 void wxStyledTextCtrl::SetXOffset(int newOffset
) {
2201 SendMsg(2397, newOffset
, 0);
2203 int wxStyledTextCtrl::GetXOffset() {
2204 return SendMsg(2398, 0, 0);
2207 // Set the last x chosen value to be the caret x position.
2208 void wxStyledTextCtrl::ChooseCaretX() {
2209 SendMsg(2399, 0, 0);
2212 // Set the way the caret is kept visible when going sideway.
2213 // The exclusion zone is given in pixels.
2214 void wxStyledTextCtrl::SetXCaretPolicy(int caretPolicy
, int caretSlop
) {
2215 SendMsg(2402, caretPolicy
, caretSlop
);
2218 // Set the way the line the caret is on is kept visible.
2219 // The exclusion zone is given in lines.
2220 void wxStyledTextCtrl::SetYCaretPolicy(int caretPolicy
, int caretSlop
) {
2221 SendMsg(2403, caretPolicy
, caretSlop
);
2224 // Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
2225 void wxStyledTextCtrl::SetPrintWrapMode(int mode
) {
2226 SendMsg(2406, mode
, 0);
2229 // Is printing line wrapped?
2230 int wxStyledTextCtrl::GetPrintWrapMode() {
2231 return SendMsg(2407, 0, 0);
2234 // Set a fore colour for active hotspots.
2235 void wxStyledTextCtrl::SetHotspotActiveForeground(bool useSetting
, const wxColour
& fore
) {
2236 SendMsg(2410, useSetting
, wxColourAsLong(fore
));
2239 // Set a back colour for active hotspots.
2240 void wxStyledTextCtrl::SetHotspotActiveBackground(bool useSetting
, const wxColour
& back
) {
2241 SendMsg(2411, useSetting
, wxColourAsLong(back
));
2244 // Enable / Disable underlining active hotspots.
2245 void wxStyledTextCtrl::SetHotspotActiveUnderline(bool underline
) {
2246 SendMsg(2412, underline
, 0);
2249 // Limit hotspots to single line so hotspots on two lines don't merge.
2250 void wxStyledTextCtrl::SetHotspotSingleLine(bool singleLine
) {
2251 SendMsg(2421, singleLine
, 0);
2254 // Move caret between paragraphs (delimited by empty lines).
2255 void wxStyledTextCtrl::ParaDown() {
2256 SendMsg(2413, 0, 0);
2258 void wxStyledTextCtrl::ParaDownExtend() {
2259 SendMsg(2414, 0, 0);
2261 void wxStyledTextCtrl::ParaUp() {
2262 SendMsg(2415, 0, 0);
2264 void wxStyledTextCtrl::ParaUpExtend() {
2265 SendMsg(2416, 0, 0);
2268 // Given a valid document position, return the previous position taking code
2269 // page into account. Returns 0 if passed 0.
2270 int wxStyledTextCtrl::PositionBefore(int pos
) {
2271 return SendMsg(2417, pos
, 0);
2274 // Given a valid document position, return the next position taking code
2275 // page into account. Maximum value returned is the last position in the document.
2276 int wxStyledTextCtrl::PositionAfter(int pos
) {
2277 return SendMsg(2418, pos
, 0);
2280 // Copy a range of text to the clipboard. Positions are clipped into the document.
2281 void wxStyledTextCtrl::CopyRange(int start
, int end
) {
2282 SendMsg(2419, start
, end
);
2285 // Copy argument text to the clipboard.
2286 void wxStyledTextCtrl::CopyText(int length
, const wxString
& text
) {
2287 SendMsg(2420, length
, (long)(const char*)wx2stc(text
));
2290 // Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE) or
2291 // by lines (SC_SEL_LINES).
2292 void wxStyledTextCtrl::SetSelectionMode(int mode
) {
2293 SendMsg(2422, mode
, 0);
2296 // Get the mode of the current selection.
2297 int wxStyledTextCtrl::GetSelectionMode() {
2298 return SendMsg(2423, 0, 0);
2301 // Retrieve the position of the start of the selection at the given line (INVALID_POSITION if no selection on this line).
2302 int wxStyledTextCtrl::GetLineSelStartPosition(int line
) {
2303 return SendMsg(2424, line
, 0);
2306 // Retrieve the position of the end of the selection at the given line (INVALID_POSITION if no selection on this line).
2307 int wxStyledTextCtrl::GetLineSelEndPosition(int line
) {
2308 return SendMsg(2425, line
, 0);
2311 // Move caret down one line, extending rectangular selection to new caret position.
2312 void wxStyledTextCtrl::LineDownRectExtend() {
2313 SendMsg(2426, 0, 0);
2316 // Move caret up one line, extending rectangular selection to new caret position.
2317 void wxStyledTextCtrl::LineUpRectExtend() {
2318 SendMsg(2427, 0, 0);
2321 // Move caret left one character, extending rectangular selection to new caret position.
2322 void wxStyledTextCtrl::CharLeftRectExtend() {
2323 SendMsg(2428, 0, 0);
2326 // Move caret right one character, extending rectangular selection to new caret position.
2327 void wxStyledTextCtrl::CharRightRectExtend() {
2328 SendMsg(2429, 0, 0);
2331 // Move caret to first position on line, extending rectangular selection to new caret position.
2332 void wxStyledTextCtrl::HomeRectExtend() {
2333 SendMsg(2430, 0, 0);
2336 // Move caret to before first visible character on line.
2337 // If already there move to first character on line.
2338 // In either case, extend rectangular selection to new caret position.
2339 void wxStyledTextCtrl::VCHomeRectExtend() {
2340 SendMsg(2431, 0, 0);
2343 // Move caret to last position on line, extending rectangular selection to new caret position.
2344 void wxStyledTextCtrl::LineEndRectExtend() {
2345 SendMsg(2432, 0, 0);
2348 // Move caret one page up, extending rectangular selection to new caret position.
2349 void wxStyledTextCtrl::PageUpRectExtend() {
2350 SendMsg(2433, 0, 0);
2353 // Move caret one page down, extending rectangular selection to new caret position.
2354 void wxStyledTextCtrl::PageDownRectExtend() {
2355 SendMsg(2434, 0, 0);
2358 // Move caret to top of page, or one page up if already at top of page.
2359 void wxStyledTextCtrl::StutteredPageUp() {
2360 SendMsg(2435, 0, 0);
2363 // Move caret to top of page, or one page up if already at top of page, extending selection to new caret position.
2364 void wxStyledTextCtrl::StutteredPageUpExtend() {
2365 SendMsg(2436, 0, 0);
2368 // Move caret to bottom of page, or one page down if already at bottom of page.
2369 void wxStyledTextCtrl::StutteredPageDown() {
2370 SendMsg(2437, 0, 0);
2373 // Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position.
2374 void wxStyledTextCtrl::StutteredPageDownExtend() {
2375 SendMsg(2438, 0, 0);
2378 // Move caret left one word, position cursor at end of word.
2379 void wxStyledTextCtrl::WordLeftEnd() {
2380 SendMsg(2439, 0, 0);
2383 // Move caret left one word, position cursor at end of word, extending selection to new caret position.
2384 void wxStyledTextCtrl::WordLeftEndExtend() {
2385 SendMsg(2440, 0, 0);
2388 // Move caret right one word, position cursor at end of word.
2389 void wxStyledTextCtrl::WordRightEnd() {
2390 SendMsg(2441, 0, 0);
2393 // Move caret right one word, position cursor at end of word, extending selection to new caret position.
2394 void wxStyledTextCtrl::WordRightEndExtend() {
2395 SendMsg(2442, 0, 0);
2398 // Set the set of characters making up whitespace for when moving or selecting by word.
2399 // Should be called after SetWordChars.
2400 void wxStyledTextCtrl::SetWhitespaceChars(const wxString
& characters
) {
2401 SendMsg(2443, 0, (long)(const char*)wx2stc(characters
));
2404 // Reset the set of characters for whitespace and word characters to the defaults.
2405 void wxStyledTextCtrl::SetCharsDefault() {
2406 SendMsg(2444, 0, 0);
2409 // Get currently selected item position in the auto-completion list
2410 int wxStyledTextCtrl::AutoCompGetCurrent() {
2411 return SendMsg(2445, 0, 0);
2414 // Enlarge the document to a particular size of text bytes.
2415 void wxStyledTextCtrl::Allocate(int bytes
) {
2416 SendMsg(2446, bytes
, 0);
2419 // Find the position of a column on a line taking into account tabs and
2420 // multi-byte characters. If beyond end of line, return line end position.
2421 int wxStyledTextCtrl::FindColumn(int line
, int column
) {
2422 return SendMsg(2456, line
, column
);
2425 // Start notifying the container of all key presses and commands.
2426 void wxStyledTextCtrl::StartRecord() {
2427 SendMsg(3001, 0, 0);
2430 // Stop notifying the container of all key presses and commands.
2431 void wxStyledTextCtrl::StopRecord() {
2432 SendMsg(3002, 0, 0);
2435 // Set the lexing language of the document.
2436 void wxStyledTextCtrl::SetLexer(int lexer
) {
2437 SendMsg(4001, lexer
, 0);
2440 // Retrieve the lexing language of the document.
2441 int wxStyledTextCtrl::GetLexer() {
2442 return SendMsg(4002, 0, 0);
2445 // Colourise a segment of the document using the current lexing language.
2446 void wxStyledTextCtrl::Colourise(int start
, int end
) {
2447 SendMsg(4003, start
, end
);
2450 // Set up a value that may be used by a lexer for some optional feature.
2451 void wxStyledTextCtrl::SetProperty(const wxString
& key
, const wxString
& value
) {
2452 SendMsg(4004, (long)(const char*)wx2stc(key
), (long)(const char*)wx2stc(value
));
2455 // Set up the key words used by the lexer.
2456 void wxStyledTextCtrl::SetKeyWords(int keywordSet
, const wxString
& keyWords
) {
2457 SendMsg(4005, keywordSet
, (long)(const char*)wx2stc(keyWords
));
2460 // Set the lexing language of the document based on string name.
2461 void wxStyledTextCtrl::SetLexerLanguage(const wxString
& language
) {
2462 SendMsg(4006, 0, (long)(const char*)wx2stc(language
));
2465 // END of generated section
2466 //----------------------------------------------------------------------
2469 // Returns the line number of the line with the caret.
2470 int wxStyledTextCtrl::GetCurrentLine() {
2471 int line
= LineFromPosition(GetCurrentPos());
2476 // Extract style settings from a spec-string which is composed of one or
2477 // more of the following comma separated elements:
2479 // bold turns on bold
2480 // italic turns on italics
2481 // fore:[name or #RRGGBB] sets the foreground colour
2482 // back:[name or #RRGGBB] sets the background colour
2483 // face:[facename] sets the font face name to use
2484 // size:[num] sets the font size in points
2485 // eol turns on eol filling
2486 // underline turns on underlining
2488 void wxStyledTextCtrl::StyleSetSpec(int styleNum
, const wxString
& spec
) {
2490 wxStringTokenizer
tkz(spec
, wxT(","));
2491 while (tkz
.HasMoreTokens()) {
2492 wxString token
= tkz
.GetNextToken();
2494 wxString option
= token
.BeforeFirst(':');
2495 wxString val
= token
.AfterFirst(':');
2497 if (option
== wxT("bold"))
2498 StyleSetBold(styleNum
, true);
2500 else if (option
== wxT("italic"))
2501 StyleSetItalic(styleNum
, true);
2503 else if (option
== wxT("underline"))
2504 StyleSetUnderline(styleNum
, true);
2506 else if (option
== wxT("eol"))
2507 StyleSetEOLFilled(styleNum
, true);
2509 else if (option
== wxT("size")) {
2511 if (val
.ToLong(&points
))
2512 StyleSetSize(styleNum
, points
);
2515 else if (option
== wxT("face"))
2516 StyleSetFaceName(styleNum
, val
);
2518 else if (option
== wxT("fore"))
2519 StyleSetForeground(styleNum
, wxColourFromSpec(val
));
2521 else if (option
== wxT("back"))
2522 StyleSetBackground(styleNum
, wxColourFromSpec(val
));
2527 // Set style size, face, bold, italic, and underline attributes from
2528 // a wxFont's attributes.
2529 void wxStyledTextCtrl::StyleSetFont(int styleNum
, wxFont
& font
) {
2531 // Ensure that the native font is initialized
2533 GetTextExtent(wxT("X"), &x
, &y
, NULL
, NULL
, &font
);
2535 int size
= font
.GetPointSize();
2536 wxString faceName
= font
.GetFaceName();
2537 bool bold
= font
.GetWeight() == wxBOLD
;
2538 bool italic
= font
.GetStyle() != wxNORMAL
;
2539 bool under
= font
.GetUnderlined();
2541 // TODO: add encoding/charset mapping
2542 StyleSetFontAttr(styleNum
, size
, faceName
, bold
, italic
, under
);
2545 // Set all font style attributes at once.
2546 void wxStyledTextCtrl::StyleSetFontAttr(int styleNum
, int size
,
2547 const wxString
& faceName
,
2548 bool bold
, bool italic
,
2550 StyleSetSize(styleNum
, size
);
2551 StyleSetFaceName(styleNum
, faceName
);
2552 StyleSetBold(styleNum
, bold
);
2553 StyleSetItalic(styleNum
, italic
);
2554 StyleSetUnderline(styleNum
, underline
);
2556 // TODO: add encoding/charset mapping
2560 // Perform one of the operations defined by the wxSTC_CMD_* constants.
2561 void wxStyledTextCtrl::CmdKeyExecute(int cmd
) {
2566 // Set the left and right margin in the edit area, measured in pixels.
2567 void wxStyledTextCtrl::SetMargins(int left
, int right
) {
2568 SetMarginLeft(left
);
2569 SetMarginRight(right
);
2573 // Retrieve the start and end positions of the current selection.
2574 void wxStyledTextCtrl::GetSelection(int* startPos
, int* endPos
) {
2575 if (startPos
!= NULL
)
2576 *startPos
= SendMsg(SCI_GETSELECTIONSTART
);
2578 *endPos
= SendMsg(SCI_GETSELECTIONEND
);
2582 // Retrieve the point in the window where a position is displayed.
2583 wxPoint
wxStyledTextCtrl::PointFromPosition(int pos
) {
2584 int x
= SendMsg(SCI_POINTXFROMPOSITION
, 0, pos
);
2585 int y
= SendMsg(SCI_POINTYFROMPOSITION
, 0, pos
);
2586 return wxPoint(x
, y
);
2589 // Scroll enough to make the given line visible
2590 void wxStyledTextCtrl::ScrollToLine(int line
) {
2591 m_swx
->DoScrollToLine(line
);
2595 // Scroll enough to make the given column visible
2596 void wxStyledTextCtrl::ScrollToColumn(int column
) {
2597 m_swx
->DoScrollToColumn(column
);
2601 bool wxStyledTextCtrl::SaveFile(const wxString
& filename
)
2603 wxFile
file(filename
, wxFile::write
);
2605 if (!file
.IsOpened())
2608 bool success
= file
.Write(GetText(), *wxConvCurrent
);
2616 bool wxStyledTextCtrl::LoadFile(const wxString
& filename
)
2618 bool success
= false;
2619 wxFile
file(filename
, wxFile::read
);
2621 if (file
.IsOpened())
2624 // get the file size (assume it is not huge file...)
2625 ssize_t len
= (ssize_t
)file
.Length();
2630 wxMemoryBuffer
buffer(len
+1);
2631 success
= (file
.Read(buffer
.GetData(), len
) == len
);
2633 ((char*)buffer
.GetData())[len
] = 0;
2634 contents
= wxString(buffer
, *wxConvCurrent
, len
);
2638 success
= (file
.Read(wxStringBuffer(buffer
, len
), len
) == len
);
2645 success
= true; // empty file is ok
2647 success
= false; // len == wxInvalidOffset
2662 #if wxUSE_DRAG_AND_DROP
2663 wxDragResult
wxStyledTextCtrl::DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
2664 return m_swx
->DoDragOver(x
, y
, def
);
2668 bool wxStyledTextCtrl::DoDropText(long x
, long y
, const wxString
& data
) {
2669 return m_swx
->DoDropText(x
, y
, data
);
2674 void wxStyledTextCtrl::SetUseAntiAliasing(bool useAA
) {
2675 m_swx
->SetUseAntiAliasing(useAA
);
2678 bool wxStyledTextCtrl::GetUseAntiAliasing() {
2679 return m_swx
->GetUseAntiAliasing();
2682 //----------------------------------------------------------------------
2685 void wxStyledTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(evt
)) {
2687 m_swx
->DoPaint(&dc
, GetUpdateRegion().GetBox());
2690 void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent
& evt
) {
2691 if (evt
.GetOrientation() == wxHORIZONTAL
)
2692 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
2694 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
2697 void wxStyledTextCtrl::OnScroll(wxScrollEvent
& evt
) {
2698 wxScrollBar
* sb
= wxDynamicCast(evt
.GetEventObject(), wxScrollBar
);
2700 if (sb
->IsVertical())
2701 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
2703 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
2707 void wxStyledTextCtrl::OnSize(wxSizeEvent
& WXUNUSED(evt
)) {
2709 wxSize sz
= GetClientSize();
2710 m_swx
->DoSize(sz
.x
, sz
.y
);
2714 void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent
& evt
) {
2716 wxPoint pt
= evt
.GetPosition();
2717 m_swx
->DoLeftButtonDown(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
2718 evt
.ShiftDown(), evt
.ControlDown(), evt
.AltDown());
2721 void wxStyledTextCtrl::OnMouseMove(wxMouseEvent
& evt
) {
2722 wxPoint pt
= evt
.GetPosition();
2723 m_swx
->DoLeftButtonMove(Point(pt
.x
, pt
.y
));
2726 void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent
& evt
) {
2727 wxPoint pt
= evt
.GetPosition();
2728 m_swx
->DoLeftButtonUp(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
2733 void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent
& evt
) {
2734 wxPoint pt
= evt
.GetPosition();
2735 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
2739 void wxStyledTextCtrl::OnMouseMiddleUp(wxMouseEvent
& evt
) {
2740 wxPoint pt
= evt
.GetPosition();
2741 m_swx
->DoMiddleButtonUp(Point(pt
.x
, pt
.y
));
2744 void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent
& evt
) {
2745 wxPoint pt
= evt
.GetPosition();
2746 ScreenToClient(&pt
.x
, &pt
.y
);
2748 Show context menu at event point if it's within the window,
2749 or at caret location if not
2751 wxHitTest ht
= this->HitTest(pt
);
2752 if (ht
!= wxHT_WINDOW_INSIDE
) {
2753 pt
= this->PointFromPosition(this->GetCurrentPos());
2755 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
2759 void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent
& evt
) {
2760 m_swx
->DoMouseWheel(evt
.GetWheelRotation(),
2761 evt
.GetWheelDelta(),
2762 evt
.GetLinesPerAction(),
2764 evt
.IsPageScroll());
2768 void wxStyledTextCtrl::OnChar(wxKeyEvent
& evt
) {
2769 // On (some?) non-US PC keyboards the AltGr key is required to enter some
2770 // common characters. It comes to us as both Alt and Ctrl down so we need
2771 // to let the char through in that case, otherwise if only ctrl or only
2772 // alt let's skip it.
2773 bool ctrl
= evt
.ControlDown();
2775 // On the Mac the Alt key is just a modifier key (like Shift) so we need
2776 // to allow the char events to be processed when Alt is pressed.
2777 // TODO: Should we check MetaDown instead in this case?
2780 bool alt
= evt
.AltDown();
2782 bool skip
= ((ctrl
|| alt
) && ! (ctrl
&& alt
));
2784 if (!m_lastKeyDownConsumed
&& !skip
) {
2786 int key
= evt
.GetUnicodeKey();
2789 // if the unicode key code is not really a unicode character (it may
2790 // be a function key or etc., the platforms appear to always give us a
2791 // small value in this case) then fallback to the ascii key code but
2792 // don't do anything for function keys or etc.
2794 key
= evt
.GetKeyCode();
2795 keyOk
= (key
<= 127);
2798 m_swx
->DoAddChar(key
);
2802 int key
= evt
.GetKeyCode();
2803 if (key
<= WXK_START
|| key
> WXK_COMMAND
) {
2804 m_swx
->DoAddChar(key
);
2814 void wxStyledTextCtrl::OnKeyDown(wxKeyEvent
& evt
) {
2815 int processed
= m_swx
->DoKeyDown(evt
, &m_lastKeyDownConsumed
);
2816 if (!processed
&& !m_lastKeyDownConsumed
)
2821 void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent
& evt
) {
2822 m_swx
->DoLoseFocus();
2827 void wxStyledTextCtrl::OnGainFocus(wxFocusEvent
& evt
) {
2828 m_swx
->DoGainFocus();
2833 void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(evt
)) {
2834 m_swx
->DoSysColourChange();
2838 void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
)) {
2839 // do nothing to help avoid flashing
2844 void wxStyledTextCtrl::OnMenu(wxCommandEvent
& evt
) {
2845 m_swx
->DoCommand(evt
.GetId());
2849 void wxStyledTextCtrl::OnListBox(wxCommandEvent
& WXUNUSED(evt
)) {
2850 m_swx
->DoOnListBox();
2854 void wxStyledTextCtrl::OnIdle(wxIdleEvent
& evt
) {
2855 m_swx
->DoOnIdle(evt
);
2859 wxSize
wxStyledTextCtrl::DoGetBestSize() const
2861 // What would be the best size for a wxSTC?
2862 // Just give a reasonable minimum until something else can be figured out.
2863 return wxSize(200,100);
2867 //----------------------------------------------------------------------
2868 // Turn notifications from Scintilla into events
2871 void wxStyledTextCtrl::NotifyChange() {
2872 wxStyledTextEvent
evt(wxEVT_STC_CHANGE
, GetId());
2873 evt
.SetEventObject(this);
2874 GetEventHandler()->ProcessEvent(evt
);
2878 static void SetEventText(wxStyledTextEvent
& evt
, const char* text
,
2882 // The unicode conversion MUST have a null byte to terminate the
2883 // string so move it into a buffer first and give it one.
2884 wxMemoryBuffer
buf(length
+1);
2885 buf
.AppendData((void*)text
, length
);
2887 evt
.SetText(stc2wx(buf
));
2891 void wxStyledTextCtrl::NotifyParent(SCNotification
* _scn
) {
2892 SCNotification
& scn
= *_scn
;
2893 wxStyledTextEvent
evt(0, GetId());
2895 evt
.SetEventObject(this);
2896 evt
.SetPosition(scn
.position
);
2898 evt
.SetModifiers(scn
.modifiers
);
2900 switch (scn
.nmhdr
.code
) {
2901 case SCN_STYLENEEDED
:
2902 evt
.SetEventType(wxEVT_STC_STYLENEEDED
);
2906 evt
.SetEventType(wxEVT_STC_CHARADDED
);
2909 case SCN_SAVEPOINTREACHED
:
2910 evt
.SetEventType(wxEVT_STC_SAVEPOINTREACHED
);
2913 case SCN_SAVEPOINTLEFT
:
2914 evt
.SetEventType(wxEVT_STC_SAVEPOINTLEFT
);
2917 case SCN_MODIFYATTEMPTRO
:
2918 evt
.SetEventType(wxEVT_STC_ROMODIFYATTEMPT
);
2922 evt
.SetEventType(wxEVT_STC_KEY
);
2925 case SCN_DOUBLECLICK
:
2926 evt
.SetEventType(wxEVT_STC_DOUBLECLICK
);
2930 evt
.SetEventType(wxEVT_STC_UPDATEUI
);
2934 evt
.SetEventType(wxEVT_STC_MODIFIED
);
2935 evt
.SetModificationType(scn
.modificationType
);
2936 SetEventText(evt
, scn
.text
, scn
.length
);
2937 evt
.SetLength(scn
.length
);
2938 evt
.SetLinesAdded(scn
.linesAdded
);
2939 evt
.SetLine(scn
.line
);
2940 evt
.SetFoldLevelNow(scn
.foldLevelNow
);
2941 evt
.SetFoldLevelPrev(scn
.foldLevelPrev
);
2944 case SCN_MACRORECORD
:
2945 evt
.SetEventType(wxEVT_STC_MACRORECORD
);
2946 evt
.SetMessage(scn
.message
);
2947 evt
.SetWParam(scn
.wParam
);
2948 evt
.SetLParam(scn
.lParam
);
2951 case SCN_MARGINCLICK
:
2952 evt
.SetEventType(wxEVT_STC_MARGINCLICK
);
2953 evt
.SetMargin(scn
.margin
);
2957 evt
.SetEventType(wxEVT_STC_NEEDSHOWN
);
2958 evt
.SetLength(scn
.length
);
2962 evt
.SetEventType(wxEVT_STC_PAINTED
);
2965 case SCN_USERLISTSELECTION
:
2966 evt
.SetEventType(wxEVT_STC_USERLISTSELECTION
);
2967 evt
.SetListType(scn
.listType
);
2968 SetEventText(evt
, scn
.text
, strlen(scn
.text
));
2971 case SCN_URIDROPPED
:
2972 evt
.SetEventType(wxEVT_STC_URIDROPPED
);
2973 SetEventText(evt
, scn
.text
, strlen(scn
.text
));
2976 case SCN_DWELLSTART
:
2977 evt
.SetEventType(wxEVT_STC_DWELLSTART
);
2983 evt
.SetEventType(wxEVT_STC_DWELLEND
);
2989 evt
.SetEventType(wxEVT_STC_ZOOM
);
2992 case SCN_HOTSPOTCLICK
:
2993 evt
.SetEventType(wxEVT_STC_HOTSPOT_CLICK
);
2996 case SCN_HOTSPOTDOUBLECLICK
:
2997 evt
.SetEventType(wxEVT_STC_HOTSPOT_DCLICK
);
3000 case SCN_CALLTIPCLICK
:
3001 evt
.SetEventType(wxEVT_STC_CALLTIP_CLICK
);
3008 GetEventHandler()->ProcessEvent(evt
);
3012 //----------------------------------------------------------------------
3013 //----------------------------------------------------------------------
3014 //----------------------------------------------------------------------
3016 wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType
, int id
)
3017 : wxCommandEvent(commandType
, id
)
3022 m_modificationType
= 0;
3027 m_foldLevelPrev
= 0;
3035 m_dragAllowMove
= false;
3036 #if wxUSE_DRAG_AND_DROP
3037 m_dragResult
= wxDragNone
;
3041 bool wxStyledTextEvent::GetShift() const { return (m_modifiers
& SCI_SHIFT
) != 0; }
3042 bool wxStyledTextEvent::GetControl() const { return (m_modifiers
& SCI_CTRL
) != 0; }
3043 bool wxStyledTextEvent::GetAlt() const { return (m_modifiers
& SCI_ALT
) != 0; }
3046 wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent
& event
):
3047 wxCommandEvent(event
)
3049 m_position
= event
.m_position
;
3050 m_key
= event
.m_key
;
3051 m_modifiers
= event
.m_modifiers
;
3052 m_modificationType
= event
.m_modificationType
;
3053 m_text
= event
.m_text
;
3054 m_length
= event
.m_length
;
3055 m_linesAdded
= event
.m_linesAdded
;
3056 m_line
= event
.m_line
;
3057 m_foldLevelNow
= event
.m_foldLevelNow
;
3058 m_foldLevelPrev
= event
.m_foldLevelPrev
;
3060 m_margin
= event
.m_margin
;
3062 m_message
= event
.m_message
;
3063 m_wParam
= event
.m_wParam
;
3064 m_lParam
= event
.m_lParam
;
3066 m_listType
= event
.m_listType
;
3070 m_dragText
= event
.m_dragText
;
3071 m_dragAllowMove
=event
.m_dragAllowMove
;
3072 #if wxUSE_DRAG_AND_DROP
3073 m_dragResult
= event
.m_dragResult
;
3077 //----------------------------------------------------------------------
3078 //----------------------------------------------------------------------