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"
24 #include <wx/tokenzr.h>
25 #include <wx/mstream.h>
30 //----------------------------------------------------------------------
32 const wxChar
* wxSTCNameStr
= wxT("stcwindow");
38 #define MAKELONG(a, b) ((a) | ((b) << 16))
41 static long wxColourAsLong(const wxColour
& co
) {
42 return (((long)co
.Blue() << 16) |
43 ((long)co
.Green() << 8) |
47 static wxColour
wxColourFromLong(long c
) {
49 clr
.Set(c
& 0xff, (c
>> 8) & 0xff, (c
>> 16) & 0xff);
54 static wxColour
wxColourFromSpec(const wxString
& spec
) {
55 // spec should be "#RRGGBB"
56 long red
, green
, blue
;
57 red
= green
= blue
= 0;
58 spec
.Mid(1,2).ToLong(&red
, 16);
59 spec
.Mid(3,2).ToLong(&green
, 16);
60 spec
.Mid(5,2).ToLong(&blue
, 16);
61 return wxColour(red
, green
, blue
);
64 //----------------------------------------------------------------------
66 DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE
)
67 DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED
)
68 DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED
)
69 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED
)
70 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT
)
71 DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT
)
72 DEFINE_EVENT_TYPE( wxEVT_STC_KEY
)
73 DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK
)
74 DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI
)
75 DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED
)
76 DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD
)
77 DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK
)
78 DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN
)
79 DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED
)
80 DEFINE_EVENT_TYPE( wxEVT_STC_PAINTED
)
81 DEFINE_EVENT_TYPE( wxEVT_STC_USERLISTSELECTION
)
82 DEFINE_EVENT_TYPE( wxEVT_STC_URIDROPPED
)
83 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLSTART
)
84 DEFINE_EVENT_TYPE( wxEVT_STC_DWELLEND
)
85 DEFINE_EVENT_TYPE( wxEVT_STC_START_DRAG
)
86 DEFINE_EVENT_TYPE( wxEVT_STC_DRAG_OVER
)
87 DEFINE_EVENT_TYPE( wxEVT_STC_DO_DROP
)
88 DEFINE_EVENT_TYPE( wxEVT_STC_ZOOM
)
89 DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_CLICK
)
90 DEFINE_EVENT_TYPE( wxEVT_STC_HOTSPOT_DCLICK
)
91 DEFINE_EVENT_TYPE( wxEVT_STC_CALLTIP_CLICK
)
95 BEGIN_EVENT_TABLE(wxStyledTextCtrl
, wxControl
)
96 EVT_PAINT (wxStyledTextCtrl::OnPaint
)
97 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin
)
98 EVT_SCROLL (wxStyledTextCtrl::OnScroll
)
99 EVT_SIZE (wxStyledTextCtrl::OnSize
)
100 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown
)
101 // Let Scintilla see the double click as a second click
102 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown
)
103 EVT_MOTION (wxStyledTextCtrl::OnMouseMove
)
104 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp
)
105 #if defined(__WXGTK__) || defined(__WXMAC__)
106 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp
)
108 EVT_CONTEXT_MENU (wxStyledTextCtrl::OnContextMenu
)
110 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel
)
111 EVT_MIDDLE_UP (wxStyledTextCtrl::OnMouseMiddleUp
)
112 EVT_CHAR (wxStyledTextCtrl::OnChar
)
113 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown
)
114 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus
)
115 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus
)
116 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged
)
117 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground
)
118 EVT_MENU_RANGE (10, 16, wxStyledTextCtrl::OnMenu
)
119 EVT_LISTBOX_DCLICK (-1, wxStyledTextCtrl::OnListBox
)
123 IMPLEMENT_CLASS(wxStyledTextCtrl
, wxControl
)
124 IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent
, wxCommandEvent
)
127 // forces the linking of the lexer modules
128 int Scintilla_LinkLexers();
131 //----------------------------------------------------------------------
132 // Constructor and Destructor
134 wxStyledTextCtrl::wxStyledTextCtrl(wxWindow
*parent
,
139 const wxString
& name
)
142 Create(parent
, id
, pos
, size
, style
, name
);
146 void wxStyledTextCtrl::Create(wxWindow
*parent
,
151 const wxString
& name
)
153 wxControl::Create(parent
, id
, pos
, size
,
154 style
| wxWANTS_CHARS
| wxCLIP_CHILDREN
,
155 wxDefaultValidator
, name
);
158 Scintilla_LinkLexers();
160 m_swx
= new ScintillaWX(this);
162 m_lastKeyDownConsumed
= FALSE
;
166 // Put Scintilla into unicode (UTF-8) mode
167 SetCodePage(wxSTC_CP_UTF8
);
172 wxStyledTextCtrl::~wxStyledTextCtrl() {
177 //----------------------------------------------------------------------
179 long wxStyledTextCtrl::SendMsg(int msg
, long wp
, long lp
) {
181 return m_swx
->WndProc(msg
, wp
, lp
);
186 //----------------------------------------------------------------------
187 // BEGIN generated section. The following code is automatically generated
188 // by gen_iface.py from the contents of Scintilla.iface. Do not edit
189 // this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
192 // Add text to the document.
193 void wxStyledTextCtrl::AddText(const wxString
& text
) {
194 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
195 SendMsg(2001, strlen(buf
), (long)(const char*)buf
);
198 // Add array of cells to document.
199 void wxStyledTextCtrl::AddStyledText(const wxMemoryBuffer
& data
) {
200 SendMsg(2002, data
.GetDataLen(), (long)data
.GetData());
203 // Insert string at a position.
204 void wxStyledTextCtrl::InsertText(int pos
, const wxString
& text
) {
205 SendMsg(2003, pos
, (long)(const char*)wx2stc(text
));
208 // Delete all text in the document.
209 void wxStyledTextCtrl::ClearAll() {
213 // Set all style bytes to 0, remove all folding information.
214 void wxStyledTextCtrl::ClearDocumentStyle() {
218 // The number of characters in the document.
219 int wxStyledTextCtrl::GetLength() {
220 return SendMsg(2006, 0, 0);
223 // Returns the character byte at the position.
224 int wxStyledTextCtrl::GetCharAt(int pos
) {
225 return (unsigned char)SendMsg(2007, pos
, 0);
228 // Returns the position of the caret.
229 int wxStyledTextCtrl::GetCurrentPos() {
230 return SendMsg(2008, 0, 0);
233 // Returns the position of the opposite end of the selection to the caret.
234 int wxStyledTextCtrl::GetAnchor() {
235 return SendMsg(2009, 0, 0);
238 // Returns the style byte at the position.
239 int wxStyledTextCtrl::GetStyleAt(int pos
) {
240 return (unsigned char)SendMsg(2010, pos
, 0);
243 // Redoes the next action on the undo history.
244 void wxStyledTextCtrl::Redo() {
248 // Choose between collecting actions into the undo
249 // history and discarding them.
250 void wxStyledTextCtrl::SetUndoCollection(bool collectUndo
) {
251 SendMsg(2012, collectUndo
, 0);
254 // Select all the text in the document.
255 void wxStyledTextCtrl::SelectAll() {
259 // Remember the current position in the undo history as the position
260 // at which the document was saved.
261 void wxStyledTextCtrl::SetSavePoint() {
265 // Retrieve a buffer of cells.
266 wxMemoryBuffer
wxStyledTextCtrl::GetStyledText(int startPos
, int endPos
) {
268 if (endPos
< startPos
) {
273 int len
= endPos
- startPos
;
274 if (!len
) return buf
;
276 tr
.lpstrText
= (char*)buf
.GetWriteBuf(len
*2+1);
277 tr
.chrg
.cpMin
= startPos
;
278 tr
.chrg
.cpMax
= endPos
;
279 len
= SendMsg(2015, 0, (long)&tr
);
280 buf
.UngetWriteBuf(len
);
284 // Are there any redoable actions in the undo history?
285 bool wxStyledTextCtrl::CanRedo() {
286 return SendMsg(2016, 0, 0) != 0;
289 // Retrieve the line number at which a particular marker is located.
290 int wxStyledTextCtrl::MarkerLineFromHandle(int handle
) {
291 return SendMsg(2017, handle
, 0);
295 void wxStyledTextCtrl::MarkerDeleteHandle(int handle
) {
296 SendMsg(2018, handle
, 0);
299 // Is undo history being collected?
300 bool wxStyledTextCtrl::GetUndoCollection() {
301 return SendMsg(2019, 0, 0) != 0;
304 // Are white space characters currently visible?
305 // Returns one of SCWS_* constants.
306 int wxStyledTextCtrl::GetViewWhiteSpace() {
307 return SendMsg(2020, 0, 0);
310 // Make white space characters invisible, always visible or visible outside indentation.
311 void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS
) {
312 SendMsg(2021, viewWS
, 0);
315 // Find the position from a point within the window.
316 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt
) {
317 return SendMsg(2022, pt
.x
, pt
.y
);
320 // Find the position from a point within the window but return
321 // INVALID_POSITION if not close to text.
322 int wxStyledTextCtrl::PositionFromPointClose(int x
, int y
) {
323 return SendMsg(2023, x
, y
);
326 // Set caret to start of a line and ensure it is visible.
327 void wxStyledTextCtrl::GotoLine(int line
) {
328 SendMsg(2024, line
, 0);
331 // Set caret to a position and ensure it is visible.
332 void wxStyledTextCtrl::GotoPos(int pos
) {
333 SendMsg(2025, pos
, 0);
336 // Set the selection anchor to a position. The anchor is the opposite
337 // end of the selection from the caret.
338 void wxStyledTextCtrl::SetAnchor(int posAnchor
) {
339 SendMsg(2026, posAnchor
, 0);
342 // Retrieve the text of the line containing the caret.
343 // Returns the index of the caret on the line.
344 wxString
wxStyledTextCtrl::GetCurLine(int* linePos
) {
345 int len
= LineLength(GetCurrentLine());
347 if (linePos
) *linePos
= 0;
348 return wxEmptyString
;
351 wxMemoryBuffer
mbuf(len
+1);
352 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
354 int pos
= SendMsg(2027, len
+1, (long)buf
);
355 mbuf
.UngetWriteBuf(len
);
357 if (linePos
) *linePos
= pos
;
361 // Retrieve the position of the last correctly styled character.
362 int wxStyledTextCtrl::GetEndStyled() {
363 return SendMsg(2028, 0, 0);
366 // Convert all line endings in the document to one mode.
367 void wxStyledTextCtrl::ConvertEOLs(int eolMode
) {
368 SendMsg(2029, eolMode
, 0);
371 // Retrieve the current end of line mode - one of CRLF, CR, or LF.
372 int wxStyledTextCtrl::GetEOLMode() {
373 return SendMsg(2030, 0, 0);
376 // Set the current end of line mode.
377 void wxStyledTextCtrl::SetEOLMode(int eolMode
) {
378 SendMsg(2031, eolMode
, 0);
381 // Set the current styling position to pos and the styling mask to mask.
382 // The styling mask can be used to protect some bits in each styling byte from modification.
383 void wxStyledTextCtrl::StartStyling(int pos
, int mask
) {
384 SendMsg(2032, pos
, mask
);
387 // Change style from current styling position for length characters to a style
388 // and move the current styling position to after this newly styled segment.
389 void wxStyledTextCtrl::SetStyling(int length
, int style
) {
390 SendMsg(2033, length
, style
);
393 // Is drawing done first into a buffer or direct to the screen?
394 bool wxStyledTextCtrl::GetBufferedDraw() {
395 return SendMsg(2034, 0, 0) != 0;
398 // If drawing is buffered then each line of text is drawn into a bitmap buffer
399 // before drawing it to the screen to avoid flicker.
400 void wxStyledTextCtrl::SetBufferedDraw(bool buffered
) {
401 SendMsg(2035, buffered
, 0);
404 // Change the visible size of a tab to be a multiple of the width of a space character.
405 void wxStyledTextCtrl::SetTabWidth(int tabWidth
) {
406 SendMsg(2036, tabWidth
, 0);
409 // Retrieve the visible size of a tab.
410 int wxStyledTextCtrl::GetTabWidth() {
411 return SendMsg(2121, 0, 0);
414 // Set the code page used to interpret the bytes of the document as characters.
415 void wxStyledTextCtrl::SetCodePage(int codePage
) {
417 wxASSERT_MSG(codePage
== wxSTC_CP_UTF8
,
418 wxT("Only wxSTC_CP_UTF8 may be used when wxUSE_UNICODE is on."));
420 wxASSERT_MSG(codePage
!= wxSTC_CP_UTF8
,
421 wxT("wxSTC_CP_UTF8 may not be used when wxUSE_UNICODE is off."));
423 SendMsg(2037, codePage
);
426 // Set the symbol used for a particular marker number,
427 // and optionally the fore and background colours.
428 void wxStyledTextCtrl::MarkerDefine(int markerNumber
, int markerSymbol
,
429 const wxColour
& foreground
,
430 const wxColour
& background
) {
432 SendMsg(2040, markerNumber
, markerSymbol
);
434 MarkerSetForeground(markerNumber
, foreground
);
436 MarkerSetBackground(markerNumber
, background
);
439 // Set the foreground colour used for a particular marker number.
440 void wxStyledTextCtrl::MarkerSetForeground(int markerNumber
, const wxColour
& fore
) {
441 SendMsg(2041, markerNumber
, wxColourAsLong(fore
));
444 // Set the background colour used for a particular marker number.
445 void wxStyledTextCtrl::MarkerSetBackground(int markerNumber
, const wxColour
& back
) {
446 SendMsg(2042, markerNumber
, wxColourAsLong(back
));
449 // Add a marker to a line, returning an ID which can be used to find or delete the marker.
450 int wxStyledTextCtrl::MarkerAdd(int line
, int markerNumber
) {
451 return SendMsg(2043, line
, markerNumber
);
454 // Delete a marker from a line.
455 void wxStyledTextCtrl::MarkerDelete(int line
, int markerNumber
) {
456 SendMsg(2044, line
, markerNumber
);
459 // Delete all markers with a particular number from all lines.
460 void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber
) {
461 SendMsg(2045, markerNumber
, 0);
464 // Get a bit mask of all the markers set on a line.
465 int wxStyledTextCtrl::MarkerGet(int line
) {
466 return SendMsg(2046, line
, 0);
469 // Find the next line after lineStart that includes a marker in mask.
470 int wxStyledTextCtrl::MarkerNext(int lineStart
, int markerMask
) {
471 return SendMsg(2047, lineStart
, markerMask
);
474 // Find the previous line before lineStart that includes a marker in mask.
475 int wxStyledTextCtrl::MarkerPrevious(int lineStart
, int markerMask
) {
476 return SendMsg(2048, lineStart
, markerMask
);
479 // Define a marker from a bitmap
480 void wxStyledTextCtrl::MarkerDefineBitmap(int markerNumber
, const wxBitmap
& bmp
) {
481 // convert bmp to a xpm in a string
482 wxMemoryOutputStream strm
;
483 wxImage img
= bmp
.ConvertToImage();
484 img
.SaveFile(strm
, wxBITMAP_TYPE_XPM
);
485 size_t len
= strm
.GetSize();
486 char* buff
= new char[len
+1];
487 strm
.CopyTo(buff
, len
);
489 SendMsg(2049, markerNumber
, (long)buff
);
494 // Set a margin to be either numeric or symbolic.
495 void wxStyledTextCtrl::SetMarginType(int margin
, int marginType
) {
496 SendMsg(2240, margin
, marginType
);
499 // Retrieve the type of a margin.
500 int wxStyledTextCtrl::GetMarginType(int margin
) {
501 return SendMsg(2241, margin
, 0);
504 // Set the width of a margin to a width expressed in pixels.
505 void wxStyledTextCtrl::SetMarginWidth(int margin
, int pixelWidth
) {
506 SendMsg(2242, margin
, pixelWidth
);
509 // Retrieve the width of a margin in pixels.
510 int wxStyledTextCtrl::GetMarginWidth(int margin
) {
511 return SendMsg(2243, margin
, 0);
514 // Set a mask that determines which markers are displayed in a margin.
515 void wxStyledTextCtrl::SetMarginMask(int margin
, int mask
) {
516 SendMsg(2244, margin
, mask
);
519 // Retrieve the marker mask of a margin.
520 int wxStyledTextCtrl::GetMarginMask(int margin
) {
521 return SendMsg(2245, margin
, 0);
524 // Make a margin sensitive or insensitive to mouse clicks.
525 void wxStyledTextCtrl::SetMarginSensitive(int margin
, bool sensitive
) {
526 SendMsg(2246, margin
, sensitive
);
529 // Retrieve the mouse click sensitivity of a margin.
530 bool wxStyledTextCtrl::GetMarginSensitive(int margin
) {
531 return SendMsg(2247, margin
, 0) != 0;
534 // Clear all the styles and make equivalent to the global default style.
535 void wxStyledTextCtrl::StyleClearAll() {
539 // Set the foreground colour of a style.
540 void wxStyledTextCtrl::StyleSetForeground(int style
, const wxColour
& fore
) {
541 SendMsg(2051, style
, wxColourAsLong(fore
));
544 // Set the background colour of a style.
545 void wxStyledTextCtrl::StyleSetBackground(int style
, const wxColour
& back
) {
546 SendMsg(2052, style
, wxColourAsLong(back
));
549 // Set a style to be bold or not.
550 void wxStyledTextCtrl::StyleSetBold(int style
, bool bold
) {
551 SendMsg(2053, style
, bold
);
554 // Set a style to be italic or not.
555 void wxStyledTextCtrl::StyleSetItalic(int style
, bool italic
) {
556 SendMsg(2054, style
, italic
);
559 // Set the size of characters of a style.
560 void wxStyledTextCtrl::StyleSetSize(int style
, int sizePoints
) {
561 SendMsg(2055, style
, sizePoints
);
564 // Set the font of a style.
565 void wxStyledTextCtrl::StyleSetFaceName(int style
, const wxString
& fontName
) {
566 SendMsg(2056, style
, (long)(const char*)wx2stc(fontName
));
569 // Set a style to have its end of line filled or not.
570 void wxStyledTextCtrl::StyleSetEOLFilled(int style
, bool filled
) {
571 SendMsg(2057, style
, filled
);
574 // Reset the default style to its state at startup
575 void wxStyledTextCtrl::StyleResetDefault() {
579 // Set a style to be underlined or not.
580 void wxStyledTextCtrl::StyleSetUnderline(int style
, bool underline
) {
581 SendMsg(2059, style
, underline
);
584 // Set a style to be mixed case, or to force upper or lower case.
585 void wxStyledTextCtrl::StyleSetCase(int style
, int caseForce
) {
586 SendMsg(2060, style
, caseForce
);
589 // Set the character set of the font in a style.
590 void wxStyledTextCtrl::StyleSetCharacterSet(int style
, int characterSet
) {
591 SendMsg(2066, style
, characterSet
);
594 // Set a style to be a hotspot or not.
595 void wxStyledTextCtrl::StyleSetHotSpot(int style
, bool hotspot
) {
596 SendMsg(2409, style
, hotspot
);
599 // Set the foreground colour of the selection and whether to use this setting.
600 void wxStyledTextCtrl::SetSelForeground(bool useSetting
, const wxColour
& fore
) {
601 SendMsg(2067, useSetting
, wxColourAsLong(fore
));
604 // Set the background colour of the selection and whether to use this setting.
605 void wxStyledTextCtrl::SetSelBackground(bool useSetting
, const wxColour
& back
) {
606 SendMsg(2068, useSetting
, wxColourAsLong(back
));
609 // Set the foreground colour of the caret.
610 void wxStyledTextCtrl::SetCaretForeground(const wxColour
& fore
) {
611 SendMsg(2069, wxColourAsLong(fore
), 0);
614 // When key+modifier combination km is pressed perform msg.
615 void wxStyledTextCtrl::CmdKeyAssign(int key
, int modifiers
, int cmd
) {
616 SendMsg(2070, MAKELONG(key
, modifiers
), cmd
);
619 // When key+modifier combination km do nothing.
620 void wxStyledTextCtrl::CmdKeyClear(int key
, int modifiers
) {
621 SendMsg(2071, MAKELONG(key
, modifiers
));
624 // Drop all key mappings.
625 void wxStyledTextCtrl::CmdKeyClearAll() {
629 // Set the styles for a segment of the document.
630 void wxStyledTextCtrl::SetStyleBytes(int length
, char* styleBytes
) {
631 SendMsg(2073, length
, (long)styleBytes
);
634 // Set a style to be visible or not.
635 void wxStyledTextCtrl::StyleSetVisible(int style
, bool visible
) {
636 SendMsg(2074, style
, visible
);
639 // Get the time in milliseconds that the caret is on and off.
640 int wxStyledTextCtrl::GetCaretPeriod() {
641 return SendMsg(2075, 0, 0);
644 // Get the time in milliseconds that the caret is on and off. 0 = steady on.
645 void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds
) {
646 SendMsg(2076, periodMilliseconds
, 0);
649 // Set the set of characters making up words for when moving or selecting by word.
650 void wxStyledTextCtrl::SetWordChars(const wxString
& characters
) {
651 SendMsg(2077, 0, (long)(const char*)wx2stc(characters
));
654 // Start a sequence of actions that is undone and redone as a unit.
656 void wxStyledTextCtrl::BeginUndoAction() {
660 // End a sequence of actions that is undone and redone as a unit.
661 void wxStyledTextCtrl::EndUndoAction() {
665 // Set an indicator to plain, squiggle or TT.
666 void wxStyledTextCtrl::IndicatorSetStyle(int indic
, int style
) {
667 SendMsg(2080, indic
, style
);
670 // Retrieve the style of an indicator.
671 int wxStyledTextCtrl::IndicatorGetStyle(int indic
) {
672 return SendMsg(2081, indic
, 0);
675 // Set the foreground colour of an indicator.
676 void wxStyledTextCtrl::IndicatorSetForeground(int indic
, const wxColour
& fore
) {
677 SendMsg(2082, indic
, wxColourAsLong(fore
));
680 // Retrieve the foreground colour of an indicator.
681 wxColour
wxStyledTextCtrl::IndicatorGetForeground(int indic
) {
682 long c
= SendMsg(2083, indic
, 0);
683 return wxColourFromLong(c
);
686 // Set the foreground colour of all whitespace and whether to use this setting.
687 void wxStyledTextCtrl::SetWhitespaceForeground(bool useSetting
, const wxColour
& fore
) {
688 SendMsg(2084, useSetting
, wxColourAsLong(fore
));
691 // Set the background colour of all whitespace and whether to use this setting.
692 void wxStyledTextCtrl::SetWhitespaceBackground(bool useSetting
, const wxColour
& back
) {
693 SendMsg(2085, useSetting
, wxColourAsLong(back
));
696 // Divide each styling byte into lexical class bits (default: 5) and indicator
697 // bits (default: 3). If a lexer requires more than 32 lexical states, then this
698 // is used to expand the possible states.
699 void wxStyledTextCtrl::SetStyleBits(int bits
) {
700 SendMsg(2090, bits
, 0);
703 // Retrieve number of bits in style bytes used to hold the lexical state.
704 int wxStyledTextCtrl::GetStyleBits() {
705 return SendMsg(2091, 0, 0);
708 // Used to hold extra styling information for each line.
709 void wxStyledTextCtrl::SetLineState(int line
, int state
) {
710 SendMsg(2092, line
, state
);
713 // Retrieve the extra styling information for a line.
714 int wxStyledTextCtrl::GetLineState(int line
) {
715 return SendMsg(2093, line
, 0);
718 // Retrieve the last line number that has line state.
719 int wxStyledTextCtrl::GetMaxLineState() {
720 return SendMsg(2094, 0, 0);
723 // Is the background of the line containing the caret in a different colour?
724 bool wxStyledTextCtrl::GetCaretLineVisible() {
725 return SendMsg(2095, 0, 0) != 0;
728 // Display the background of the line containing the caret in a different colour.
729 void wxStyledTextCtrl::SetCaretLineVisible(bool show
) {
730 SendMsg(2096, show
, 0);
733 // Get the colour of the background of the line containing the caret.
734 wxColour
wxStyledTextCtrl::GetCaretLineBack() {
735 long c
= SendMsg(2097, 0, 0);
736 return wxColourFromLong(c
);
739 // Set the colour of the background of the line containing the caret.
740 void wxStyledTextCtrl::SetCaretLineBack(const wxColour
& back
) {
741 SendMsg(2098, wxColourAsLong(back
), 0);
744 // Set a style to be changeable or not (read only).
745 // Experimental feature, currently buggy.
746 void wxStyledTextCtrl::StyleSetChangeable(int style
, bool changeable
) {
747 SendMsg(2099, style
, changeable
);
750 // Display a auto-completion list.
751 // The lenEntered parameter indicates how many characters before
752 // the caret should be used to provide context.
753 void wxStyledTextCtrl::AutoCompShow(int lenEntered
, const wxString
& itemList
) {
754 SendMsg(2100, lenEntered
, (long)(const char*)wx2stc(itemList
));
757 // Remove the auto-completion list from the screen.
758 void wxStyledTextCtrl::AutoCompCancel() {
762 // Is there an auto-completion list visible?
763 bool wxStyledTextCtrl::AutoCompActive() {
764 return SendMsg(2102, 0, 0) != 0;
767 // Retrieve the position of the caret when the auto-completion list was displayed.
768 int wxStyledTextCtrl::AutoCompPosStart() {
769 return SendMsg(2103, 0, 0);
772 // User has selected an item so remove the list and insert the selection.
773 void wxStyledTextCtrl::AutoCompComplete() {
777 // Define a set of character that when typed cancel the auto-completion list.
778 void wxStyledTextCtrl::AutoCompStops(const wxString
& characterSet
) {
779 SendMsg(2105, 0, (long)(const char*)wx2stc(characterSet
));
782 // Change the separator character in the string setting up an auto-completion list.
783 // Default is space but can be changed if items contain space.
784 void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter
) {
785 SendMsg(2106, separatorCharacter
, 0);
788 // Retrieve the auto-completion list separator character.
789 int wxStyledTextCtrl::AutoCompGetSeparator() {
790 return SendMsg(2107, 0, 0);
793 // Select the item in the auto-completion list that starts with a string.
794 void wxStyledTextCtrl::AutoCompSelect(const wxString
& text
) {
795 SendMsg(2108, 0, (long)(const char*)wx2stc(text
));
798 // Should the auto-completion list be cancelled if the user backspaces to a
799 // position before where the box was created.
800 void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel
) {
801 SendMsg(2110, cancel
, 0);
804 // Retrieve whether auto-completion cancelled by backspacing before start.
805 bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
806 return SendMsg(2111, 0, 0) != 0;
809 // Define a set of characters that when typed will cause the autocompletion to
810 // choose the selected item.
811 void wxStyledTextCtrl::AutoCompSetFillUps(const wxString
& characterSet
) {
812 SendMsg(2112, 0, (long)(const char*)wx2stc(characterSet
));
815 // Should a single item auto-completion list automatically choose the item.
816 void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle
) {
817 SendMsg(2113, chooseSingle
, 0);
820 // Retrieve whether a single item auto-completion list automatically choose the item.
821 bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
822 return SendMsg(2114, 0, 0) != 0;
825 // Set whether case is significant when performing auto-completion searches.
826 void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase
) {
827 SendMsg(2115, ignoreCase
, 0);
830 // Retrieve state of ignore case flag.
831 bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
832 return SendMsg(2116, 0, 0) != 0;
835 // Display a list of strings and send notification when user chooses one.
836 void wxStyledTextCtrl::UserListShow(int listType
, const wxString
& itemList
) {
837 SendMsg(2117, listType
, (long)(const char*)wx2stc(itemList
));
840 // Set whether or not autocompletion is hidden automatically when nothing matches.
841 void wxStyledTextCtrl::AutoCompSetAutoHide(bool autoHide
) {
842 SendMsg(2118, autoHide
, 0);
845 // Retrieve whether or not autocompletion is hidden automatically when nothing matches.
846 bool wxStyledTextCtrl::AutoCompGetAutoHide() {
847 return SendMsg(2119, 0, 0) != 0;
850 // Set whether or not autocompletion deletes any word characters
851 // after the inserted text upon completion.
852 void wxStyledTextCtrl::AutoCompSetDropRestOfWord(bool dropRestOfWord
) {
853 SendMsg(2270, dropRestOfWord
, 0);
856 // Retrieve whether or not autocompletion deletes any word characters
857 // after the inserted text upon completion.
858 bool wxStyledTextCtrl::AutoCompGetDropRestOfWord() {
859 return SendMsg(2271, 0, 0) != 0;
862 // Register an image for use in autocompletion lists.
863 void wxStyledTextCtrl::RegisterImage(int type
, const wxBitmap
& bmp
) {
864 // convert bmp to a xpm in a string
865 wxMemoryOutputStream strm
;
866 wxImage img
= bmp
.ConvertToImage();
867 img
.SaveFile(strm
, wxBITMAP_TYPE_XPM
);
868 size_t len
= strm
.GetSize();
869 char* buff
= new char[len
+1];
870 strm
.CopyTo(buff
, len
);
872 SendMsg(2405, type
, (long)buff
);
877 // Clear all the registered images.
878 void wxStyledTextCtrl::ClearRegisteredImages() {
882 // Retrieve the auto-completion list type-separator character.
883 int wxStyledTextCtrl::AutoCompGetTypeSeparator() {
884 return SendMsg(2285, 0, 0);
887 // Change the type-separator character in the string setting up an auto-completion list.
888 // Default is '?' but can be changed if items contain '?'.
889 void wxStyledTextCtrl::AutoCompSetTypeSeparator(int separatorCharacter
) {
890 SendMsg(2286, separatorCharacter
, 0);
893 // Set the number of spaces used for one level of indentation.
894 void wxStyledTextCtrl::SetIndent(int indentSize
) {
895 SendMsg(2122, indentSize
, 0);
898 // Retrieve indentation size.
899 int wxStyledTextCtrl::GetIndent() {
900 return SendMsg(2123, 0, 0);
903 // Indentation will only use space characters if useTabs is false, otherwise
904 // it will use a combination of tabs and spaces.
905 void wxStyledTextCtrl::SetUseTabs(bool useTabs
) {
906 SendMsg(2124, useTabs
, 0);
909 // Retrieve whether tabs will be used in indentation.
910 bool wxStyledTextCtrl::GetUseTabs() {
911 return SendMsg(2125, 0, 0) != 0;
914 // Change the indentation of a line to a number of columns.
915 void wxStyledTextCtrl::SetLineIndentation(int line
, int indentSize
) {
916 SendMsg(2126, line
, indentSize
);
919 // Retrieve the number of columns that a line is indented.
920 int wxStyledTextCtrl::GetLineIndentation(int line
) {
921 return SendMsg(2127, line
, 0);
924 // Retrieve the position before the first non indentation character on a line.
925 int wxStyledTextCtrl::GetLineIndentPosition(int line
) {
926 return SendMsg(2128, line
, 0);
929 // Retrieve the column number of a position, taking tab width into account.
930 int wxStyledTextCtrl::GetColumn(int pos
) {
931 return SendMsg(2129, pos
, 0);
934 // Show or hide the horizontal scroll bar.
935 void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show
) {
936 SendMsg(2130, show
, 0);
939 // Is the horizontal scroll bar visible?
940 bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
941 return SendMsg(2131, 0, 0) != 0;
944 // Show or hide indentation guides.
945 void wxStyledTextCtrl::SetIndentationGuides(bool show
) {
946 SendMsg(2132, show
, 0);
949 // Are the indentation guides visible?
950 bool wxStyledTextCtrl::GetIndentationGuides() {
951 return SendMsg(2133, 0, 0) != 0;
954 // Set the highlighted indentation guide column.
955 // 0 = no highlighted guide.
956 void wxStyledTextCtrl::SetHighlightGuide(int column
) {
957 SendMsg(2134, column
, 0);
960 // Get the highlighted indentation guide column.
961 int wxStyledTextCtrl::GetHighlightGuide() {
962 return SendMsg(2135, 0, 0);
965 // Get the position after the last visible characters on a line.
966 int wxStyledTextCtrl::GetLineEndPosition(int line
) {
967 return SendMsg(2136, line
, 0);
970 // Get the code page used to interpret the bytes of the document as characters.
971 int wxStyledTextCtrl::GetCodePage() {
972 return SendMsg(2137, 0, 0);
975 // Get the foreground colour of the caret.
976 wxColour
wxStyledTextCtrl::GetCaretForeground() {
977 long c
= SendMsg(2138, 0, 0);
978 return wxColourFromLong(c
);
981 // In read-only mode?
982 bool wxStyledTextCtrl::GetReadOnly() {
983 return SendMsg(2140, 0, 0) != 0;
986 // Sets the position of the caret.
987 void wxStyledTextCtrl::SetCurrentPos(int pos
) {
988 SendMsg(2141, pos
, 0);
991 // Sets the position that starts the selection - this becomes the anchor.
992 void wxStyledTextCtrl::SetSelectionStart(int pos
) {
993 SendMsg(2142, pos
, 0);
996 // Returns the position at the start of the selection.
997 int wxStyledTextCtrl::GetSelectionStart() {
998 return SendMsg(2143, 0, 0);
1001 // Sets the position that ends the selection - this becomes the currentPosition.
1002 void wxStyledTextCtrl::SetSelectionEnd(int pos
) {
1003 SendMsg(2144, pos
, 0);
1006 // Returns the position at the end of the selection.
1007 int wxStyledTextCtrl::GetSelectionEnd() {
1008 return SendMsg(2145, 0, 0);
1011 // Sets the print magnification added to the point size of each style for printing.
1012 void wxStyledTextCtrl::SetPrintMagnification(int magnification
) {
1013 SendMsg(2146, magnification
, 0);
1016 // Returns the print magnification.
1017 int wxStyledTextCtrl::GetPrintMagnification() {
1018 return SendMsg(2147, 0, 0);
1021 // Modify colours when printing for clearer printed text.
1022 void wxStyledTextCtrl::SetPrintColourMode(int mode
) {
1023 SendMsg(2148, mode
, 0);
1026 // Returns the print colour mode.
1027 int wxStyledTextCtrl::GetPrintColourMode() {
1028 return SendMsg(2149, 0, 0);
1031 // Find some text in the document.
1032 int wxStyledTextCtrl::FindText(int minPos
, int maxPos
,
1033 const wxString
& text
,
1036 ft
.chrg
.cpMin
= minPos
;
1037 ft
.chrg
.cpMax
= maxPos
;
1038 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1039 ft
.lpstrText
= (char*)(const char*)buf
;
1041 return SendMsg(2150, flags
, (long)&ft
);
1044 // On Windows, will draw the document into a display context such as a printer.
1045 int wxStyledTextCtrl::FormatRange(bool doDraw
,
1049 wxDC
* target
, // Why does it use two? Can they be the same?
1054 if (endPos
< startPos
) {
1055 int temp
= startPos
;
1060 fr
.hdcTarget
= target
;
1061 fr
.rc
.top
= renderRect
.GetTop();
1062 fr
.rc
.left
= renderRect
.GetLeft();
1063 fr
.rc
.right
= renderRect
.GetRight();
1064 fr
.rc
.bottom
= renderRect
.GetBottom();
1065 fr
.rcPage
.top
= pageRect
.GetTop();
1066 fr
.rcPage
.left
= pageRect
.GetLeft();
1067 fr
.rcPage
.right
= pageRect
.GetRight();
1068 fr
.rcPage
.bottom
= pageRect
.GetBottom();
1069 fr
.chrg
.cpMin
= startPos
;
1070 fr
.chrg
.cpMax
= endPos
;
1072 return SendMsg(2151, doDraw
, (long)&fr
);
1075 // Retrieve the display line at the top of the display.
1076 int wxStyledTextCtrl::GetFirstVisibleLine() {
1077 return SendMsg(2152, 0, 0);
1080 // Retrieve the contents of a line.
1081 wxString
wxStyledTextCtrl::GetLine(int line
) {
1082 int len
= LineLength(line
);
1083 if (!len
) return wxEmptyString
;
1085 wxMemoryBuffer
mbuf(len
+1);
1086 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1087 SendMsg(2153, line
, (long)buf
);
1088 mbuf
.UngetWriteBuf(len
);
1093 // Returns the number of lines in the document. There is always at least one.
1094 int wxStyledTextCtrl::GetLineCount() {
1095 return SendMsg(2154, 0, 0);
1098 // Sets the size in pixels of the left margin.
1099 void wxStyledTextCtrl::SetMarginLeft(int pixelWidth
) {
1100 SendMsg(2155, 0, pixelWidth
);
1103 // Returns the size in pixels of the left margin.
1104 int wxStyledTextCtrl::GetMarginLeft() {
1105 return SendMsg(2156, 0, 0);
1108 // Sets the size in pixels of the right margin.
1109 void wxStyledTextCtrl::SetMarginRight(int pixelWidth
) {
1110 SendMsg(2157, 0, pixelWidth
);
1113 // Returns the size in pixels of the right margin.
1114 int wxStyledTextCtrl::GetMarginRight() {
1115 return SendMsg(2158, 0, 0);
1118 // Is the document different from when it was last saved?
1119 bool wxStyledTextCtrl::GetModify() {
1120 return SendMsg(2159, 0, 0) != 0;
1123 // Select a range of text.
1124 void wxStyledTextCtrl::SetSelection(int start
, int end
) {
1125 SendMsg(2160, start
, end
);
1128 // Retrieve the selected text.
1129 wxString
wxStyledTextCtrl::GetSelectedText() {
1133 GetSelection(&start
, &end
);
1134 int len
= end
- start
;
1135 if (!len
) return wxEmptyString
;
1137 wxMemoryBuffer
mbuf(len
+2);
1138 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1139 SendMsg(2161, 0, (long)buf
);
1140 mbuf
.UngetWriteBuf(len
);
1145 // Retrieve a range of text.
1146 wxString
wxStyledTextCtrl::GetTextRange(int startPos
, int endPos
) {
1147 if (endPos
< startPos
) {
1148 int temp
= startPos
;
1152 int len
= endPos
- startPos
;
1153 if (!len
) return wxEmptyString
;
1154 wxMemoryBuffer
mbuf(len
+1);
1155 char* buf
= (char*)mbuf
.GetWriteBuf(len
);
1158 tr
.chrg
.cpMin
= startPos
;
1159 tr
.chrg
.cpMax
= endPos
;
1160 SendMsg(2162, 0, (long)&tr
);
1161 mbuf
.UngetWriteBuf(len
);
1166 // Draw the selection in normal style or with selection highlighted.
1167 void wxStyledTextCtrl::HideSelection(bool normal
) {
1168 SendMsg(2163, normal
, 0);
1171 // Retrieve the line containing a position.
1172 int wxStyledTextCtrl::LineFromPosition(int pos
) {
1173 return SendMsg(2166, pos
, 0);
1176 // Retrieve the position at the start of a line.
1177 int wxStyledTextCtrl::PositionFromLine(int line
) {
1178 return SendMsg(2167, line
, 0);
1181 // Scroll horizontally and vertically.
1182 void wxStyledTextCtrl::LineScroll(int columns
, int lines
) {
1183 SendMsg(2168, columns
, lines
);
1186 // Ensure the caret is visible.
1187 void wxStyledTextCtrl::EnsureCaretVisible() {
1188 SendMsg(2169, 0, 0);
1191 // Replace the selected text with the argument text.
1192 void wxStyledTextCtrl::ReplaceSelection(const wxString
& text
) {
1193 SendMsg(2170, 0, (long)(const char*)wx2stc(text
));
1196 // Set to read only or read write.
1197 void wxStyledTextCtrl::SetReadOnly(bool readOnly
) {
1198 SendMsg(2171, readOnly
, 0);
1201 // Will a paste succeed?
1202 bool wxStyledTextCtrl::CanPaste() {
1203 return SendMsg(2173, 0, 0) != 0;
1206 // Are there any undoable actions in the undo history?
1207 bool wxStyledTextCtrl::CanUndo() {
1208 return SendMsg(2174, 0, 0) != 0;
1211 // Delete the undo history.
1212 void wxStyledTextCtrl::EmptyUndoBuffer() {
1213 SendMsg(2175, 0, 0);
1216 // Undo one action in the undo history.
1217 void wxStyledTextCtrl::Undo() {
1218 SendMsg(2176, 0, 0);
1221 // Cut the selection to the clipboard.
1222 void wxStyledTextCtrl::Cut() {
1223 SendMsg(2177, 0, 0);
1226 // Copy the selection to the clipboard.
1227 void wxStyledTextCtrl::Copy() {
1228 SendMsg(2178, 0, 0);
1231 // Paste the contents of the clipboard into the document replacing the selection.
1232 void wxStyledTextCtrl::Paste() {
1233 SendMsg(2179, 0, 0);
1236 // Clear the selection.
1237 void wxStyledTextCtrl::Clear() {
1238 SendMsg(2180, 0, 0);
1241 // Replace the contents of the document with the argument text.
1242 void wxStyledTextCtrl::SetText(const wxString
& text
) {
1243 SendMsg(2181, 0, (long)(const char*)wx2stc(text
));
1246 // Retrieve all the text in the document.
1247 wxString
wxStyledTextCtrl::GetText() {
1248 int len
= GetTextLength();
1249 wxMemoryBuffer
mbuf(len
+1); // leave room for the null...
1250 char* buf
= (char*)mbuf
.GetWriteBuf(len
+1);
1251 SendMsg(2182, len
+1, (long)buf
);
1252 mbuf
.UngetWriteBuf(len
);
1257 // Retrieve the number of characters in the document.
1258 int wxStyledTextCtrl::GetTextLength() {
1259 return SendMsg(2183, 0, 0);
1262 // Set to overtype (true) or insert mode.
1263 void wxStyledTextCtrl::SetOvertype(bool overtype
) {
1264 SendMsg(2186, overtype
, 0);
1267 // Returns true if overtype mode is active otherwise false is returned.
1268 bool wxStyledTextCtrl::GetOvertype() {
1269 return SendMsg(2187, 0, 0) != 0;
1272 // Set the width of the insert mode caret.
1273 void wxStyledTextCtrl::SetCaretWidth(int pixelWidth
) {
1274 SendMsg(2188, pixelWidth
, 0);
1277 // Returns the width of the insert mode caret.
1278 int wxStyledTextCtrl::GetCaretWidth() {
1279 return SendMsg(2189, 0, 0);
1282 // Sets the position that starts the target which is used for updating the
1283 // document without affecting the scroll position.
1284 void wxStyledTextCtrl::SetTargetStart(int pos
) {
1285 SendMsg(2190, pos
, 0);
1288 // Get the position that starts the target.
1289 int wxStyledTextCtrl::GetTargetStart() {
1290 return SendMsg(2191, 0, 0);
1293 // Sets the position that ends the target which is used for updating the
1294 // document without affecting the scroll position.
1295 void wxStyledTextCtrl::SetTargetEnd(int pos
) {
1296 SendMsg(2192, pos
, 0);
1299 // Get the position that ends the target.
1300 int wxStyledTextCtrl::GetTargetEnd() {
1301 return SendMsg(2193, 0, 0);
1304 // Replace the target text with the argument text.
1305 // Text is counted so it can contain nulls.
1306 // Returns the length of the replacement text.
1308 int wxStyledTextCtrl::ReplaceTarget(const wxString
& text
) {
1309 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1310 return SendMsg(2194, strlen(buf
), (long)(const char*)buf
);
1313 // Replace the target text with the argument text after \d processing.
1314 // Text is counted so it can contain nulls.
1315 // Looks for \d where d is between 1 and 9 and replaces these with the strings
1316 // matched in the last search operation which were surrounded by \( and \).
1317 // Returns the length of the replacement text including any change
1318 // caused by processing the \d patterns.
1320 int wxStyledTextCtrl::ReplaceTargetRE(const wxString
& text
) {
1321 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1322 return SendMsg(2195, strlen(buf
), (long)(const char*)buf
);
1325 // Search for a counted string in the target and set the target to the found
1326 // range. Text is counted so it can contain nulls.
1327 // Returns length of range or -1 for failure in which case target is not moved.
1329 int wxStyledTextCtrl::SearchInTarget(const wxString
& text
) {
1330 wxWX2MBbuf buf
= (wxWX2MBbuf
)wx2stc(text
);
1331 return SendMsg(2197, strlen(buf
), (long)(const char*)buf
);
1334 // Set the search flags used by SearchInTarget.
1335 void wxStyledTextCtrl::SetSearchFlags(int flags
) {
1336 SendMsg(2198, flags
, 0);
1339 // Get the search flags used by SearchInTarget.
1340 int wxStyledTextCtrl::GetSearchFlags() {
1341 return SendMsg(2199, 0, 0);
1344 // Show a call tip containing a definition near position pos.
1345 void wxStyledTextCtrl::CallTipShow(int pos
, const wxString
& definition
) {
1346 SendMsg(2200, pos
, (long)(const char*)wx2stc(definition
));
1349 // Remove the call tip from the screen.
1350 void wxStyledTextCtrl::CallTipCancel() {
1351 SendMsg(2201, 0, 0);
1354 // Is there an active call tip?
1355 bool wxStyledTextCtrl::CallTipActive() {
1356 return SendMsg(2202, 0, 0) != 0;
1359 // Retrieve the position where the caret was before displaying the call tip.
1360 int wxStyledTextCtrl::CallTipPosAtStart() {
1361 return SendMsg(2203, 0, 0);
1364 // Highlight a segment of the definition.
1365 void wxStyledTextCtrl::CallTipSetHighlight(int start
, int end
) {
1366 SendMsg(2204, start
, end
);
1369 // Set the background colour for the call tip.
1370 void wxStyledTextCtrl::CallTipSetBackground(const wxColour
& back
) {
1371 SendMsg(2205, wxColourAsLong(back
), 0);
1374 // Set the foreground colour for the call tip.
1375 void wxStyledTextCtrl::CallTipSetForeground(const wxColour
& fore
) {
1376 SendMsg(2206, wxColourAsLong(fore
), 0);
1379 // Set the foreground colour for the highlighted part of the call tip.
1380 void wxStyledTextCtrl::CallTipSetForegroundHighlight(const wxColour
& fore
) {
1381 SendMsg(2207, wxColourAsLong(fore
), 0);
1384 // Find the display line of a document line taking hidden lines into account.
1385 int wxStyledTextCtrl::VisibleFromDocLine(int line
) {
1386 return SendMsg(2220, line
, 0);
1389 // Find the document line of a display line taking hidden lines into account.
1390 int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay
) {
1391 return SendMsg(2221, lineDisplay
, 0);
1394 // Set the fold level of a line.
1395 // This encodes an integer level along with flags indicating whether the
1396 // line is a header and whether it is effectively white space.
1397 void wxStyledTextCtrl::SetFoldLevel(int line
, int level
) {
1398 SendMsg(2222, line
, level
);
1401 // Retrieve the fold level of a line.
1402 int wxStyledTextCtrl::GetFoldLevel(int line
) {
1403 return SendMsg(2223, line
, 0);
1406 // Find the last child line of a header line.
1407 int wxStyledTextCtrl::GetLastChild(int line
, int level
) {
1408 return SendMsg(2224, line
, level
);
1411 // Find the parent line of a child line.
1412 int wxStyledTextCtrl::GetFoldParent(int line
) {
1413 return SendMsg(2225, line
, 0);
1416 // Make a range of lines visible.
1417 void wxStyledTextCtrl::ShowLines(int lineStart
, int lineEnd
) {
1418 SendMsg(2226, lineStart
, lineEnd
);
1421 // Make a range of lines invisible.
1422 void wxStyledTextCtrl::HideLines(int lineStart
, int lineEnd
) {
1423 SendMsg(2227, lineStart
, lineEnd
);
1426 // Is a line visible?
1427 bool wxStyledTextCtrl::GetLineVisible(int line
) {
1428 return SendMsg(2228, line
, 0) != 0;
1431 // Show the children of a header line.
1432 void wxStyledTextCtrl::SetFoldExpanded(int line
, bool expanded
) {
1433 SendMsg(2229, line
, expanded
);
1436 // Is a header line expanded?
1437 bool wxStyledTextCtrl::GetFoldExpanded(int line
) {
1438 return SendMsg(2230, line
, 0) != 0;
1441 // Switch a header line between expanded and contracted.
1442 void wxStyledTextCtrl::ToggleFold(int line
) {
1443 SendMsg(2231, line
, 0);
1446 // Ensure a particular line is visible by expanding any header line hiding it.
1447 void wxStyledTextCtrl::EnsureVisible(int line
) {
1448 SendMsg(2232, line
, 0);
1451 // Set some style options for folding.
1452 void wxStyledTextCtrl::SetFoldFlags(int flags
) {
1453 SendMsg(2233, flags
, 0);
1456 // Ensure a particular line is visible by expanding any header line hiding it.
1457 // Use the currently set visibility policy to determine which range to display.
1458 void wxStyledTextCtrl::EnsureVisibleEnforcePolicy(int line
) {
1459 SendMsg(2234, line
, 0);
1462 // Sets whether a tab pressed when caret is within indentation indents.
1463 void wxStyledTextCtrl::SetTabIndents(bool tabIndents
) {
1464 SendMsg(2260, tabIndents
, 0);
1467 // Does a tab pressed when caret is within indentation indent?
1468 bool wxStyledTextCtrl::GetTabIndents() {
1469 return SendMsg(2261, 0, 0) != 0;
1472 // Sets whether a backspace pressed when caret is within indentation unindents.
1473 void wxStyledTextCtrl::SetBackSpaceUnIndents(bool bsUnIndents
) {
1474 SendMsg(2262, bsUnIndents
, 0);
1477 // Does a backspace pressed when caret is within indentation unindent?
1478 bool wxStyledTextCtrl::GetBackSpaceUnIndents() {
1479 return SendMsg(2263, 0, 0) != 0;
1482 // Sets the time the mouse must sit still to generate a mouse dwell event.
1483 void wxStyledTextCtrl::SetMouseDwellTime(int periodMilliseconds
) {
1484 SendMsg(2264, periodMilliseconds
, 0);
1487 // Retrieve the time the mouse must sit still to generate a mouse dwell event.
1488 int wxStyledTextCtrl::GetMouseDwellTime() {
1489 return SendMsg(2265, 0, 0);
1492 // Get position of start of word.
1493 int wxStyledTextCtrl::WordStartPosition(int pos
, bool onlyWordCharacters
) {
1494 return SendMsg(2266, pos
, onlyWordCharacters
);
1497 // Get position of end of word.
1498 int wxStyledTextCtrl::WordEndPosition(int pos
, bool onlyWordCharacters
) {
1499 return SendMsg(2267, pos
, onlyWordCharacters
);
1502 // Sets whether text is word wrapped.
1503 void wxStyledTextCtrl::SetWrapMode(int mode
) {
1504 SendMsg(2268, mode
, 0);
1507 // Retrieve whether text is word wrapped.
1508 int wxStyledTextCtrl::GetWrapMode() {
1509 return SendMsg(2269, 0, 0);
1512 // Sets the degree of caching of layout information.
1513 void wxStyledTextCtrl::SetLayoutCache(int mode
) {
1514 SendMsg(2272, mode
, 0);
1517 // Retrieve the degree of caching of layout information.
1518 int wxStyledTextCtrl::GetLayoutCache() {
1519 return SendMsg(2273, 0, 0);
1522 // Sets the document width assumed for scrolling.
1523 void wxStyledTextCtrl::SetScrollWidth(int pixelWidth
) {
1524 SendMsg(2274, pixelWidth
, 0);
1527 // Retrieve the document width assumed for scrolling.
1528 int wxStyledTextCtrl::GetScrollWidth() {
1529 return SendMsg(2275, 0, 0);
1532 // Measure the pixel width of some text in a particular style.
1533 // Nul terminated text argument.
1534 // Does not handle tab or control characters.
1535 int wxStyledTextCtrl::TextWidth(int style
, const wxString
& text
) {
1536 return SendMsg(2276, style
, (long)(const char*)wx2stc(text
));
1539 // Sets the scroll range so that maximum scroll position has
1540 // the last line at the bottom of the view (default).
1541 // Setting this to false allows scrolling one page below the last line.
1542 void wxStyledTextCtrl::SetEndAtLastLine(bool endAtLastLine
) {
1543 SendMsg(2277, endAtLastLine
, 0);
1546 // Retrieve whether the maximum scroll position has the last
1547 // line at the bottom of the view.
1548 int wxStyledTextCtrl::GetEndAtLastLine() {
1549 return SendMsg(2278, 0, 0);
1552 // Retrieve the height of a particular line of text in pixels.
1553 int wxStyledTextCtrl::TextHeight(int line
) {
1554 return SendMsg(2279, line
, 0);
1557 // Show or hide the vertical scroll bar.
1558 void wxStyledTextCtrl::SetUseVerticalScrollBar(bool show
) {
1559 SendMsg(2280, show
, 0);
1562 // Is the vertical scroll bar visible?
1563 bool wxStyledTextCtrl::GetUseVerticalScrollBar() {
1564 return SendMsg(2281, 0, 0) != 0;
1567 // Append a string to the end of the document without changing the selection.
1568 void wxStyledTextCtrl::AppendText(int length
, const wxString
& text
) {
1569 SendMsg(2282, length
, (long)(const char*)wx2stc(text
));
1572 // Is drawing done in two phases with backgrounds drawn before foregrounds?
1573 bool wxStyledTextCtrl::GetTwoPhaseDraw() {
1574 return SendMsg(2283, 0, 0) != 0;
1577 // In twoPhaseDraw mode, drawing is performed in two phases, first the background
1578 // and then the foreground. This avoids chopping off characters that overlap the next run.
1579 void wxStyledTextCtrl::SetTwoPhaseDraw(bool twoPhase
) {
1580 SendMsg(2284, twoPhase
, 0);
1583 // Make the target range start and end be the same as the selection range start and end.
1584 void wxStyledTextCtrl::TargetFromSelection() {
1585 SendMsg(2287, 0, 0);
1588 // Join the lines in the target.
1589 void wxStyledTextCtrl::LinesJoin() {
1590 SendMsg(2288, 0, 0);
1593 // Split the lines in the target into lines that are less wide than pixelWidth
1595 void wxStyledTextCtrl::LinesSplit(int pixelWidth
) {
1596 SendMsg(2289, pixelWidth
, 0);
1599 // Set the colours used as a chequerboard pattern in the fold margin
1600 void wxStyledTextCtrl::SetFoldMarginColour(bool useSetting
, const wxColour
& back
) {
1601 SendMsg(2290, useSetting
, wxColourAsLong(back
));
1603 void wxStyledTextCtrl::SetFoldMarginHiColour(bool useSetting
, const wxColour
& fore
) {
1604 SendMsg(2291, useSetting
, wxColourAsLong(fore
));
1607 // Duplicate the current line.
1608 void wxStyledTextCtrl::LineDuplicate() {
1609 SendMsg(2404, 0, 0);
1612 // Move caret to first position on display line.
1613 void wxStyledTextCtrl::HomeDisplay() {
1614 SendMsg(2345, 0, 0);
1617 // Move caret to first position on display line extending selection to
1618 // new caret position.
1619 void wxStyledTextCtrl::HomeDisplayExtend() {
1620 SendMsg(2346, 0, 0);
1623 // Move caret to last position on display line.
1624 void wxStyledTextCtrl::LineEndDisplay() {
1625 SendMsg(2347, 0, 0);
1628 // Move caret to last position on display line extending selection to new
1630 void wxStyledTextCtrl::LineEndDisplayExtend() {
1631 SendMsg(2348, 0, 0);
1634 // Copy the line containing the caret.
1635 void wxStyledTextCtrl::LineCopy() {
1636 SendMsg(2455, 0, 0);
1639 // Move the caret inside current view if it's not there already.
1640 void wxStyledTextCtrl::MoveCaretInsideView() {
1641 SendMsg(2401, 0, 0);
1644 // How many characters are on a line, not including end of line characters?
1645 int wxStyledTextCtrl::LineLength(int line
) {
1646 return SendMsg(2350, line
, 0);
1649 // Highlight the characters at two positions.
1650 void wxStyledTextCtrl::BraceHighlight(int pos1
, int pos2
) {
1651 SendMsg(2351, pos1
, pos2
);
1654 // Highlight the character at a position indicating there is no matching brace.
1655 void wxStyledTextCtrl::BraceBadLight(int pos
) {
1656 SendMsg(2352, pos
, 0);
1659 // Find the position of a matching brace or INVALID_POSITION if no match.
1660 int wxStyledTextCtrl::BraceMatch(int pos
) {
1661 return SendMsg(2353, pos
, 0);
1664 // Are the end of line characters visible?
1665 bool wxStyledTextCtrl::GetViewEOL() {
1666 return SendMsg(2355, 0, 0) != 0;
1669 // Make the end of line characters visible or invisible.
1670 void wxStyledTextCtrl::SetViewEOL(bool visible
) {
1671 SendMsg(2356, visible
, 0);
1674 // Retrieve a pointer to the document object.
1675 void* wxStyledTextCtrl::GetDocPointer() {
1676 return (void*)SendMsg(2357);
1679 // Change the document object used.
1680 void wxStyledTextCtrl::SetDocPointer(void* docPointer
) {
1681 SendMsg(2358, 0, (long)docPointer
);
1684 // Set which document modification events are sent to the container.
1685 void wxStyledTextCtrl::SetModEventMask(int mask
) {
1686 SendMsg(2359, mask
, 0);
1689 // Retrieve the column number which text should be kept within.
1690 int wxStyledTextCtrl::GetEdgeColumn() {
1691 return SendMsg(2360, 0, 0);
1694 // Set the column number of the edge.
1695 // If text goes past the edge then it is highlighted.
1696 void wxStyledTextCtrl::SetEdgeColumn(int column
) {
1697 SendMsg(2361, column
, 0);
1700 // Retrieve the edge highlight mode.
1701 int wxStyledTextCtrl::GetEdgeMode() {
1702 return SendMsg(2362, 0, 0);
1705 // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
1706 // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
1707 void wxStyledTextCtrl::SetEdgeMode(int mode
) {
1708 SendMsg(2363, mode
, 0);
1711 // Retrieve the colour used in edge indication.
1712 wxColour
wxStyledTextCtrl::GetEdgeColour() {
1713 long c
= SendMsg(2364, 0, 0);
1714 return wxColourFromLong(c
);
1717 // Change the colour used in edge indication.
1718 void wxStyledTextCtrl::SetEdgeColour(const wxColour
& edgeColour
) {
1719 SendMsg(2365, wxColourAsLong(edgeColour
), 0);
1722 // Sets the current caret position to be the search anchor.
1723 void wxStyledTextCtrl::SearchAnchor() {
1724 SendMsg(2366, 0, 0);
1727 // Find some text starting at the search anchor.
1728 // Does not ensure the selection is visible.
1729 int wxStyledTextCtrl::SearchNext(int flags
, const wxString
& text
) {
1730 return SendMsg(2367, flags
, (long)(const char*)wx2stc(text
));
1733 // Find some text starting at the search anchor and moving backwards.
1734 // Does not ensure the selection is visible.
1735 int wxStyledTextCtrl::SearchPrev(int flags
, const wxString
& text
) {
1736 return SendMsg(2368, flags
, (long)(const char*)wx2stc(text
));
1739 // Retrieves the number of lines completely visible.
1740 int wxStyledTextCtrl::LinesOnScreen() {
1741 return SendMsg(2370, 0, 0);
1744 // Set whether a pop up menu is displayed automatically when the user presses
1745 // the wrong mouse button.
1746 void wxStyledTextCtrl::UsePopUp(bool allowPopUp
) {
1747 SendMsg(2371, allowPopUp
, 0);
1750 // Is the selection rectangular? The alternative is the more common stream selection.
1751 bool wxStyledTextCtrl::SelectionIsRectangle() {
1752 return SendMsg(2372, 0, 0) != 0;
1755 // Set the zoom level. This number of points is added to the size of all fonts.
1756 // It may be positive to magnify or negative to reduce.
1757 void wxStyledTextCtrl::SetZoom(int zoom
) {
1758 SendMsg(2373, zoom
, 0);
1761 // Retrieve the zoom level.
1762 int wxStyledTextCtrl::GetZoom() {
1763 return SendMsg(2374, 0, 0);
1766 // Create a new document object.
1767 // Starts with reference count of 1 and not selected into editor.
1768 void* wxStyledTextCtrl::CreateDocument() {
1769 return (void*)SendMsg(2375);
1772 // Extend life of document.
1773 void wxStyledTextCtrl::AddRefDocument(void* docPointer
) {
1774 SendMsg(2376, 0, (long)docPointer
);
1777 // Release a reference to the document, deleting document if it fades to black.
1778 void wxStyledTextCtrl::ReleaseDocument(void* docPointer
) {
1779 SendMsg(2377, 0, (long)docPointer
);
1782 // Get which document modification events are sent to the container.
1783 int wxStyledTextCtrl::GetModEventMask() {
1784 return SendMsg(2378, 0, 0);
1787 // Change internal focus flag.
1788 void wxStyledTextCtrl::SetSTCFocus(bool focus
) {
1789 SendMsg(2380, focus
, 0);
1792 // Get internal focus flag.
1793 bool wxStyledTextCtrl::GetSTCFocus() {
1794 return SendMsg(2381, 0, 0) != 0;
1797 // Change error status - 0 = OK.
1798 void wxStyledTextCtrl::SetStatus(int statusCode
) {
1799 SendMsg(2382, statusCode
, 0);
1802 // Get error status.
1803 int wxStyledTextCtrl::GetStatus() {
1804 return SendMsg(2383, 0, 0);
1807 // Set whether the mouse is captured when its button is pressed.
1808 void wxStyledTextCtrl::SetMouseDownCaptures(bool captures
) {
1809 SendMsg(2384, captures
, 0);
1812 // Get whether mouse gets captured.
1813 bool wxStyledTextCtrl::GetMouseDownCaptures() {
1814 return SendMsg(2385, 0, 0) != 0;
1817 // Sets the cursor to one of the SC_CURSOR* values.
1818 void wxStyledTextCtrl::SetSTCCursor(int cursorType
) {
1819 SendMsg(2386, cursorType
, 0);
1823 int wxStyledTextCtrl::GetSTCCursor() {
1824 return SendMsg(2387, 0, 0);
1827 // Change the way control characters are displayed:
1828 // If symbol is < 32, keep the drawn way, else, use the given character.
1829 void wxStyledTextCtrl::SetControlCharSymbol(int symbol
) {
1830 SendMsg(2388, symbol
, 0);
1833 // Get the way control characters are displayed.
1834 int wxStyledTextCtrl::GetControlCharSymbol() {
1835 return SendMsg(2389, 0, 0);
1838 // Move to the previous change in capitalisation.
1839 void wxStyledTextCtrl::WordPartLeft() {
1840 SendMsg(2390, 0, 0);
1843 // Move to the previous change in capitalisation extending selection
1844 // to new caret position.
1845 void wxStyledTextCtrl::WordPartLeftExtend() {
1846 SendMsg(2391, 0, 0);
1849 // Move to the change next in capitalisation.
1850 void wxStyledTextCtrl::WordPartRight() {
1851 SendMsg(2392, 0, 0);
1854 // Move to the next change in capitalisation extending selection
1855 // to new caret position.
1856 void wxStyledTextCtrl::WordPartRightExtend() {
1857 SendMsg(2393, 0, 0);
1860 // Set the way the display area is determined when a particular line
1861 // is to be moved to by Find, FindNext, GotoLine, etc.
1862 void wxStyledTextCtrl::SetVisiblePolicy(int visiblePolicy
, int visibleSlop
) {
1863 SendMsg(2394, visiblePolicy
, visibleSlop
);
1866 // Delete back from the current position to the start of the line.
1867 void wxStyledTextCtrl::DelLineLeft() {
1868 SendMsg(2395, 0, 0);
1871 // Delete forwards from the current position to the end of the line.
1872 void wxStyledTextCtrl::DelLineRight() {
1873 SendMsg(2396, 0, 0);
1876 // Get and Set the xOffset (ie, horizonal scroll position).
1877 void wxStyledTextCtrl::SetXOffset(int newOffset
) {
1878 SendMsg(2397, newOffset
, 0);
1880 int wxStyledTextCtrl::GetXOffset() {
1881 return SendMsg(2398, 0, 0);
1884 // Set the last x chosen value to be the caret x position
1885 void wxStyledTextCtrl::ChooseCaretX() {
1886 SendMsg(2399, 0, 0);
1889 // Set the way the caret is kept visible when going sideway.
1890 // The exclusion zone is given in pixels.
1891 void wxStyledTextCtrl::SetXCaretPolicy(int caretPolicy
, int caretSlop
) {
1892 SendMsg(2402, caretPolicy
, caretSlop
);
1895 // Set the way the line the caret is on is kept visible.
1896 // The exclusion zone is given in lines.
1897 void wxStyledTextCtrl::SetYCaretPolicy(int caretPolicy
, int caretSlop
) {
1898 SendMsg(2403, caretPolicy
, caretSlop
);
1901 // Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
1902 void wxStyledTextCtrl::SetPrintWrapMode(int mode
) {
1903 SendMsg(2406, mode
, 0);
1906 // Is printing line wrapped.
1907 int wxStyledTextCtrl::GetPrintWrapMode() {
1908 return SendMsg(2407, 0, 0);
1911 // Set a fore colour for active hotspots.
1912 void wxStyledTextCtrl::SetHotspotActiveForeground(bool useSetting
, const wxColour
& fore
) {
1913 SendMsg(2410, useSetting
, wxColourAsLong(fore
));
1916 // Set a back colour for active hotspots.
1917 void wxStyledTextCtrl::SetHotspotActiveBackground(bool useSetting
, const wxColour
& back
) {
1918 SendMsg(2411, useSetting
, wxColourAsLong(back
));
1921 // Enable / Disable underlining active hotspots.
1922 void wxStyledTextCtrl::SetHotspotActiveUnderline(bool underline
) {
1923 SendMsg(2412, underline
, 0);
1926 // Given a valid document position, return the previous position taking code
1927 // page into account. Returns 0 if passed 0.
1928 int wxStyledTextCtrl::PositionBefore(int pos
) {
1929 return SendMsg(2417, pos
, 0);
1932 // Given a valid document position, return the next position taking code
1933 // page into account. Maximum value returned is the last position in the document.
1934 int wxStyledTextCtrl::PositionAfter(int pos
) {
1935 return SendMsg(2418, pos
, 0);
1938 // Copy a range of text to the clipboard. Positions are clipped into the document.
1939 void wxStyledTextCtrl::CopyRange(int start
, int end
) {
1940 SendMsg(2419, start
, end
);
1943 // Copy argument text to the clipboard.
1944 void wxStyledTextCtrl::CopyText(int length
, const wxString
& text
) {
1945 SendMsg(2420, length
, (long)(const char*)wx2stc(text
));
1948 // Start notifying the container of all key presses and commands.
1949 void wxStyledTextCtrl::StartRecord() {
1950 SendMsg(3001, 0, 0);
1953 // Stop notifying the container of all key presses and commands.
1954 void wxStyledTextCtrl::StopRecord() {
1955 SendMsg(3002, 0, 0);
1958 // Set the lexing language of the document.
1959 void wxStyledTextCtrl::SetLexer(int lexer
) {
1960 SendMsg(4001, lexer
, 0);
1963 // Retrieve the lexing language of the document.
1964 int wxStyledTextCtrl::GetLexer() {
1965 return SendMsg(4002, 0, 0);
1968 // Colourise a segment of the document using the current lexing language.
1969 void wxStyledTextCtrl::Colourise(int start
, int end
) {
1970 SendMsg(4003, start
, end
);
1973 // Set up a value that may be used by a lexer for some optional feature.
1974 void wxStyledTextCtrl::SetProperty(const wxString
& key
, const wxString
& value
) {
1975 SendMsg(4004, (long)(const char*)wx2stc(key
), (long)(const char*)wx2stc(value
));
1978 // Set up the key words used by the lexer.
1979 void wxStyledTextCtrl::SetKeyWords(int keywordSet
, const wxString
& keyWords
) {
1980 SendMsg(4005, keywordSet
, (long)(const char*)wx2stc(keyWords
));
1983 // Set the lexing language of the document based on string name.
1984 void wxStyledTextCtrl::SetLexerLanguage(const wxString
& language
) {
1985 SendMsg(4006, 0, (long)(const char*)wx2stc(language
));
1988 // END of generated section
1989 //----------------------------------------------------------------------
1992 // Returns the line number of the line with the caret.
1993 int wxStyledTextCtrl::GetCurrentLine() {
1994 int line
= LineFromPosition(GetCurrentPos());
1999 // Extract style settings from a spec-string which is composed of one or
2000 // more of the following comma separated elements:
2002 // bold turns on bold
2003 // italic turns on italics
2004 // fore:#RRGGBB sets the foreground colour
2005 // back:#RRGGBB sets the background colour
2006 // face:[facename] sets the font face name to use
2007 // size:[num] sets the font size in points
2008 // eol turns on eol filling
2009 // underline turns on underlining
2011 void wxStyledTextCtrl::StyleSetSpec(int styleNum
, const wxString
& spec
) {
2013 wxStringTokenizer
tkz(spec
, wxT(","));
2014 while (tkz
.HasMoreTokens()) {
2015 wxString token
= tkz
.GetNextToken();
2017 wxString option
= token
.BeforeFirst(':');
2018 wxString val
= token
.AfterFirst(':');
2020 if (option
== wxT("bold"))
2021 StyleSetBold(styleNum
, true);
2023 else if (option
== wxT("italic"))
2024 StyleSetItalic(styleNum
, true);
2026 else if (option
== wxT("underline"))
2027 StyleSetUnderline(styleNum
, true);
2029 else if (option
== wxT("eol"))
2030 StyleSetEOLFilled(styleNum
, true);
2032 else if (option
== wxT("size")) {
2034 if (val
.ToLong(&points
))
2035 StyleSetSize(styleNum
, points
);
2038 else if (option
== wxT("face"))
2039 StyleSetFaceName(styleNum
, val
);
2041 else if (option
== wxT("fore"))
2042 StyleSetForeground(styleNum
, wxColourFromSpec(val
));
2044 else if (option
== wxT("back"))
2045 StyleSetBackground(styleNum
, wxColourFromSpec(val
));
2050 // Set style size, face, bold, italic, and underline attributes from
2051 // a wxFont's attributes.
2052 void wxStyledTextCtrl::StyleSetFont(int styleNum
, wxFont
& font
) {
2054 // Ensure that the native font is initialized
2056 GetTextExtent(wxT("X"), &x
, &y
, NULL
, NULL
, &font
);
2058 int size
= font
.GetPointSize();
2059 wxString faceName
= font
.GetFaceName();
2060 bool bold
= font
.GetWeight() == wxBOLD
;
2061 bool italic
= font
.GetStyle() != wxNORMAL
;
2062 bool under
= font
.GetUnderlined();
2064 // TODO: add encoding/charset mapping
2065 StyleSetFontAttr(styleNum
, size
, faceName
, bold
, italic
, under
);
2068 // Set all font style attributes at once.
2069 void wxStyledTextCtrl::StyleSetFontAttr(int styleNum
, int size
,
2070 const wxString
& faceName
,
2071 bool bold
, bool italic
,
2073 StyleSetSize(styleNum
, size
);
2074 StyleSetFaceName(styleNum
, faceName
);
2075 StyleSetBold(styleNum
, bold
);
2076 StyleSetItalic(styleNum
, italic
);
2077 StyleSetUnderline(styleNum
, underline
);
2079 // TODO: add encoding/charset mapping
2083 // Perform one of the operations defined by the wxSTC_CMD_* constants.
2084 void wxStyledTextCtrl::CmdKeyExecute(int cmd
) {
2089 // Set the left and right margin in the edit area, measured in pixels.
2090 void wxStyledTextCtrl::SetMargins(int left
, int right
) {
2091 SetMarginLeft(left
);
2092 SetMarginRight(right
);
2096 // Retrieve the start and end positions of the current selection.
2097 void wxStyledTextCtrl::GetSelection(int* startPos
, int* endPos
) {
2098 if (startPos
!= NULL
)
2099 *startPos
= SendMsg(SCI_GETSELECTIONSTART
);
2101 *endPos
= SendMsg(SCI_GETSELECTIONEND
);
2105 // Retrieve the point in the window where a position is displayed.
2106 wxPoint
wxStyledTextCtrl::PointFromPosition(int pos
) {
2107 int x
= SendMsg(SCI_POINTXFROMPOSITION
, 0, pos
);
2108 int y
= SendMsg(SCI_POINTYFROMPOSITION
, 0, pos
);
2109 return wxPoint(x
, y
);
2112 // Scroll enough to make the given line visible
2113 void wxStyledTextCtrl::ScrollToLine(int line
) {
2114 m_swx
->DoScrollToLine(line
);
2118 // Scroll enough to make the given column visible
2119 void wxStyledTextCtrl::ScrollToColumn(int column
) {
2120 m_swx
->DoScrollToColumn(column
);
2124 bool wxStyledTextCtrl::SaveFile(const wxString
& filename
)
2126 wxFile
file(filename
, wxFile::write
);
2128 if (!file
.IsOpened())
2131 bool success
= file
.Write(GetText(), *wxConvCurrent
);
2139 bool wxStyledTextCtrl::LoadFile(const wxString
& filename
)
2141 bool success
= false;
2142 wxFile
file(filename
, wxFile::read
);
2144 if (file
.IsOpened())
2147 off_t len
= file
.Length();
2151 wxMemoryBuffer
buffer(len
);
2152 success
= (file
.Read(buffer
.GetData(), len
) == len
);
2153 contents
= wxString(buffer
, *wxConvCurrent
);
2156 success
= (file
.Read(wxStringBuffer(buffer
, len
), len
) == len
);
2161 success
= true; // empty file is ok
2175 #if wxUSE_DRAG_AND_DROP
2176 wxDragResult
wxStyledTextCtrl::DoDragOver(wxCoord x
, wxCoord y
, wxDragResult def
) {
2177 return m_swx
->DoDragOver(x
, y
, def
);
2181 bool wxStyledTextCtrl::DoDropText(long x
, long y
, const wxString
& data
) {
2182 return m_swx
->DoDropText(x
, y
, data
);
2187 //----------------------------------------------------------------------
2190 void wxStyledTextCtrl::OnPaint(wxPaintEvent
& WXUNUSED(evt
)) {
2192 m_swx
->DoPaint(&dc
, GetUpdateRegion().GetBox());
2195 void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent
& evt
) {
2196 if (evt
.GetOrientation() == wxHORIZONTAL
)
2197 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
2199 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
2202 void wxStyledTextCtrl::OnScroll(wxScrollEvent
& evt
) {
2203 wxScrollBar
* sb
= wxDynamicCast(evt
.GetEventObject(), wxScrollBar
);
2205 if (sb
->IsVertical())
2206 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
2208 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
2212 void wxStyledTextCtrl::OnSize(wxSizeEvent
& WXUNUSED(evt
)) {
2214 wxSize sz
= GetClientSize();
2215 m_swx
->DoSize(sz
.x
, sz
.y
);
2219 void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent
& evt
) {
2221 wxPoint pt
= evt
.GetPosition();
2222 m_swx
->DoLeftButtonDown(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
2223 evt
.ShiftDown(), evt
.ControlDown(), evt
.AltDown());
2226 void wxStyledTextCtrl::OnMouseMove(wxMouseEvent
& evt
) {
2227 wxPoint pt
= evt
.GetPosition();
2228 m_swx
->DoLeftButtonMove(Point(pt
.x
, pt
.y
));
2231 void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent
& evt
) {
2232 wxPoint pt
= evt
.GetPosition();
2233 m_swx
->DoLeftButtonUp(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
2238 void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent
& evt
) {
2239 wxPoint pt
= evt
.GetPosition();
2240 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
2244 void wxStyledTextCtrl::OnMouseMiddleUp(wxMouseEvent
& evt
) {
2245 wxPoint pt
= evt
.GetPosition();
2246 m_swx
->DoMiddleButtonUp(Point(pt
.x
, pt
.y
));
2249 void wxStyledTextCtrl::OnContextMenu(wxContextMenuEvent
& evt
) {
2250 wxPoint pt
= evt
.GetPosition();
2251 ScreenToClient(&pt
.x
, &pt
.y
);
2252 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
2256 void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent
& evt
) {
2257 m_swx
->DoMouseWheel(evt
.GetWheelRotation(),
2258 evt
.GetWheelDelta(),
2259 evt
.GetLinesPerAction(),
2261 evt
.IsPageScroll());
2265 void wxStyledTextCtrl::OnChar(wxKeyEvent
& evt
) {
2266 // On (some?) non-US keyboards the AltGr key is required to enter some
2267 // common characters. It comes to us as both Alt and Ctrl down so we need
2268 // to let the char through in that case, otherwise if only ctrl or only
2269 // alt let's skip it.
2270 bool ctrl
= evt
.ControlDown();
2271 bool alt
= evt
.AltDown();
2272 bool skip
= ((ctrl
|| alt
) && ! (ctrl
&& alt
));
2274 int key
= evt
.GetKeyCode();
2276 // printf("OnChar key:%d consumed:%d ctrl:%d alt:%d skip:%d\n",
2277 // key, m_lastKeyDownConsumed, ctrl, alt, skip);
2279 if ( (key
<= WXK_START
|| key
> WXK_NUMPAD_DIVIDE
) &&
2280 !m_lastKeyDownConsumed
&& !skip
) {
2281 m_swx
->DoAddChar(key
);
2288 void wxStyledTextCtrl::OnKeyDown(wxKeyEvent
& evt
) {
2289 int key
= evt
.GetKeyCode();
2290 bool shift
= evt
.ShiftDown(),
2291 ctrl
= evt
.ControlDown(),
2292 alt
= evt
.AltDown(),
2293 meta
= evt
.MetaDown();
2295 int processed
= m_swx
->DoKeyDown(key
, shift
, ctrl
, alt
, meta
, &m_lastKeyDownConsumed
);
2297 // printf("KeyDn key:%d shift:%d ctrl:%d alt:%d processed:%d consumed:%d\n",
2298 // key, shift, ctrl, alt, processed, m_lastKeyDownConsumed);
2300 if (!processed
&& !m_lastKeyDownConsumed
)
2305 void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent
& WXUNUSED(evt
)) {
2306 m_swx
->DoLoseFocus();
2310 void wxStyledTextCtrl::OnGainFocus(wxFocusEvent
& WXUNUSED(evt
)) {
2311 m_swx
->DoGainFocus();
2315 void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(evt
)) {
2316 m_swx
->DoSysColourChange();
2320 void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
)) {
2321 // do nothing to help avoid flashing
2326 void wxStyledTextCtrl::OnMenu(wxCommandEvent
& evt
) {
2327 m_swx
->DoCommand(evt
.GetId());
2331 void wxStyledTextCtrl::OnListBox(wxCommandEvent
& WXUNUSED(evt
)) {
2332 m_swx
->DoOnListBox();
2336 //----------------------------------------------------------------------
2337 // Turn notifications from Scintilla into events
2340 void wxStyledTextCtrl::NotifyChange() {
2341 wxStyledTextEvent
evt(wxEVT_STC_CHANGE
, GetId());
2342 evt
.SetEventObject(this);
2343 GetEventHandler()->ProcessEvent(evt
);
2347 static void SetEventText(wxStyledTextEvent
& evt
, const char* text
,
2351 // The unicode conversion MUST have a null byte to terminate the
2352 // string so move it into a buffer first and give it one.
2353 wxMemoryBuffer
buf(length
+1);
2354 buf
.AppendData((void*)text
, length
);
2356 evt
.SetText(stc2wx(buf
));
2360 void wxStyledTextCtrl::NotifyParent(SCNotification
* _scn
) {
2361 SCNotification
& scn
= *_scn
;
2362 wxStyledTextEvent
evt(0, GetId());
2364 evt
.SetEventObject(this);
2365 evt
.SetPosition(scn
.position
);
2367 evt
.SetModifiers(scn
.modifiers
);
2369 switch (scn
.nmhdr
.code
) {
2370 case SCN_STYLENEEDED
:
2371 evt
.SetEventType(wxEVT_STC_STYLENEEDED
);
2375 evt
.SetEventType(wxEVT_STC_CHARADDED
);
2378 case SCN_SAVEPOINTREACHED
:
2379 evt
.SetEventType(wxEVT_STC_SAVEPOINTREACHED
);
2382 case SCN_SAVEPOINTLEFT
:
2383 evt
.SetEventType(wxEVT_STC_SAVEPOINTLEFT
);
2386 case SCN_MODIFYATTEMPTRO
:
2387 evt
.SetEventType(wxEVT_STC_ROMODIFYATTEMPT
);
2391 evt
.SetEventType(wxEVT_STC_KEY
);
2394 case SCN_DOUBLECLICK
:
2395 evt
.SetEventType(wxEVT_STC_DOUBLECLICK
);
2399 evt
.SetEventType(wxEVT_STC_UPDATEUI
);
2403 evt
.SetEventType(wxEVT_STC_MODIFIED
);
2404 evt
.SetModificationType(scn
.modificationType
);
2405 SetEventText(evt
, scn
.text
, scn
.length
);
2406 evt
.SetLength(scn
.length
);
2407 evt
.SetLinesAdded(scn
.linesAdded
);
2408 evt
.SetLine(scn
.line
);
2409 evt
.SetFoldLevelNow(scn
.foldLevelNow
);
2410 evt
.SetFoldLevelPrev(scn
.foldLevelPrev
);
2413 case SCN_MACRORECORD
:
2414 evt
.SetEventType(wxEVT_STC_MACRORECORD
);
2415 evt
.SetMessage(scn
.message
);
2416 evt
.SetWParam(scn
.wParam
);
2417 evt
.SetLParam(scn
.lParam
);
2420 case SCN_MARGINCLICK
:
2421 evt
.SetEventType(wxEVT_STC_MARGINCLICK
);
2422 evt
.SetMargin(scn
.margin
);
2426 evt
.SetEventType(wxEVT_STC_NEEDSHOWN
);
2427 evt
.SetLength(scn
.length
);
2431 evt
.SetEventType(wxEVT_STC_PAINTED
);
2434 case SCN_USERLISTSELECTION
:
2435 evt
.SetEventType(wxEVT_STC_USERLISTSELECTION
);
2436 evt
.SetListType(scn
.listType
);
2437 SetEventText(evt
, scn
.text
, strlen(scn
.text
));
2440 case SCN_URIDROPPED
:
2441 evt
.SetEventType(wxEVT_STC_URIDROPPED
);
2442 SetEventText(evt
, scn
.text
, strlen(scn
.text
));
2445 case SCN_DWELLSTART
:
2446 evt
.SetEventType(wxEVT_STC_DWELLSTART
);
2452 evt
.SetEventType(wxEVT_STC_DWELLEND
);
2458 evt
.SetEventType(wxEVT_STC_ZOOM
);
2461 case SCN_HOTSPOTCLICK
:
2462 evt
.SetEventType(wxEVT_STC_HOTSPOT_CLICK
);
2465 case SCN_HOTSPOTDOUBLECLICK
:
2466 evt
.SetEventType(wxEVT_STC_HOTSPOT_DCLICK
);
2469 case SCN_CALLTIPCLICK
:
2470 evt
.SetEventType(wxEVT_STC_CALLTIP_CLICK
);
2477 GetEventHandler()->ProcessEvent(evt
);
2481 //----------------------------------------------------------------------
2482 //----------------------------------------------------------------------
2483 //----------------------------------------------------------------------
2485 wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType
, int id
)
2486 : wxCommandEvent(commandType
, id
)
2491 m_modificationType
= 0;
2496 m_foldLevelPrev
= 0;
2504 m_dragAllowMove
= FALSE
;
2505 #if wxUSE_DRAG_AND_DROP
2506 m_dragResult
= wxDragNone
;
2510 bool wxStyledTextEvent::GetShift() const { return (m_modifiers
& SCI_SHIFT
) != 0; }
2511 bool wxStyledTextEvent::GetControl() const { return (m_modifiers
& SCI_CTRL
) != 0; }
2512 bool wxStyledTextEvent::GetAlt() const { return (m_modifiers
& SCI_ALT
) != 0; }
2515 wxStyledTextEvent::wxStyledTextEvent(const wxStyledTextEvent
& event
):
2516 wxCommandEvent(event
)
2518 m_position
= event
.m_position
;
2519 m_key
= event
.m_key
;
2520 m_modifiers
= event
.m_modifiers
;
2521 m_modificationType
= event
.m_modificationType
;
2522 m_text
= event
.m_text
;
2523 m_length
= event
.m_length
;
2524 m_linesAdded
= event
.m_linesAdded
;
2525 m_line
= event
.m_line
;
2526 m_foldLevelNow
= event
.m_foldLevelNow
;
2527 m_foldLevelPrev
= event
.m_foldLevelPrev
;
2529 m_margin
= event
.m_margin
;
2531 m_message
= event
.m_message
;
2532 m_wParam
= event
.m_wParam
;
2533 m_lParam
= event
.m_lParam
;
2535 m_listType
= event
.m_listType
;
2539 m_dragText
= event
.m_dragText
;
2540 m_dragAllowMove
=event
.m_dragAllowMove
;
2541 #if wxUSE_DRAG_AND_DROP
2542 m_dragResult
= event
.m_dragResult
;
2546 //----------------------------------------------------------------------
2547 //----------------------------------------------------------------------