1 ////////////////////////////////////////////////////////////////////////////
3 // Purpose: A wxWindows implementation of Scintilla. This class is the
4 // one meant to be used directly by wx applications. It does not
5 // derive directly from the Scintilla classes, but instead
6 // delegates most things to the real Scintilla class.
7 // This allows the use of Scintilla without polluting the
8 // namespace with all the classes and identifiers from Scintilla.
12 // Created: 13-Jan-2000
14 // Copyright: (c) 2000 by Total Control Software
15 // Licence: wxWindows license
16 /////////////////////////////////////////////////////////////////////////////
20 #include "wx/stc/stc.h"
21 #include "ScintillaWX.h"
23 #include <wx/tokenzr.h>
25 // The following code forces a reference to all of the Scintilla lexers.
26 // If we don't do something like this, then the linker tends to "optimize"
27 // them away. (eric@sourcegear.com)
29 int wxForceScintillaLexers(void)
31 extern LexerModule lmCPP
;
32 extern LexerModule lmHTML
;
33 extern LexerModule lmXML
;
34 extern LexerModule lmProps
;
35 extern LexerModule lmErrorList
;
36 extern LexerModule lmMake
;
37 extern LexerModule lmBatch
;
38 extern LexerModule lmPerl
;
39 extern LexerModule lmPython
;
40 extern LexerModule lmSQL
;
41 extern LexerModule lmVB
;
65 //----------------------------------------------------------------------
67 const wxChar
* wxSTCNameStr
= "stcwindow";
70 DEFINE_EVENT_TYPE( wxEVT_STC_CHANGE
)
71 DEFINE_EVENT_TYPE( wxEVT_STC_STYLENEEDED
)
72 DEFINE_EVENT_TYPE( wxEVT_STC_CHARADDED
)
73 DEFINE_EVENT_TYPE( wxEVT_STC_UPDATEUI
)
74 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTREACHED
)
75 DEFINE_EVENT_TYPE( wxEVT_STC_SAVEPOINTLEFT
)
76 DEFINE_EVENT_TYPE( wxEVT_STC_ROMODIFYATTEMPT
)
77 DEFINE_EVENT_TYPE( wxEVT_STC_DOUBLECLICK
)
78 DEFINE_EVENT_TYPE( wxEVT_STC_MODIFIED
)
79 DEFINE_EVENT_TYPE( wxEVT_STC_KEY
)
80 DEFINE_EVENT_TYPE( wxEVT_STC_MACRORECORD
)
81 DEFINE_EVENT_TYPE( wxEVT_STC_MARGINCLICK
)
82 DEFINE_EVENT_TYPE( wxEVT_STC_NEEDSHOWN
)
83 DEFINE_EVENT_TYPE( wxEVT_STC_POSCHANGED
)
86 BEGIN_EVENT_TABLE(wxStyledTextCtrl
, wxControl
)
87 EVT_PAINT (wxStyledTextCtrl::OnPaint
)
88 EVT_SCROLLWIN (wxStyledTextCtrl::OnScrollWin
)
89 EVT_SIZE (wxStyledTextCtrl::OnSize
)
90 EVT_LEFT_DOWN (wxStyledTextCtrl::OnMouseLeftDown
)
92 // Let Scintilla see the double click as a second click
93 EVT_LEFT_DCLICK (wxStyledTextCtrl::OnMouseLeftDown
)
95 EVT_MOTION (wxStyledTextCtrl::OnMouseMove
)
96 EVT_LEFT_UP (wxStyledTextCtrl::OnMouseLeftUp
)
97 EVT_RIGHT_UP (wxStyledTextCtrl::OnMouseRightUp
)
98 EVT_MOUSEWHEEL (wxStyledTextCtrl::OnMouseWheel
)
99 EVT_CHAR (wxStyledTextCtrl::OnChar
)
100 EVT_KEY_DOWN (wxStyledTextCtrl::OnKeyDown
)
101 EVT_KILL_FOCUS (wxStyledTextCtrl::OnLoseFocus
)
102 EVT_SET_FOCUS (wxStyledTextCtrl::OnGainFocus
)
103 EVT_SYS_COLOUR_CHANGED (wxStyledTextCtrl::OnSysColourChanged
)
104 EVT_ERASE_BACKGROUND (wxStyledTextCtrl::OnEraseBackground
)
105 EVT_MENU_RANGE (-1, -1, wxStyledTextCtrl::OnMenu
)
106 EVT_LISTBOX_DCLICK (-1, wxStyledTextCtrl::OnListBox
)
110 IMPLEMENT_CLASS(wxStyledTextCtrl
, wxControl
)
111 IMPLEMENT_DYNAMIC_CLASS(wxStyledTextEvent
, wxCommandEvent
)
113 //----------------------------------------------------------------------
114 // Constructor and Destructor
116 wxStyledTextCtrl::wxStyledTextCtrl(wxWindow
*parent
,
121 const wxString
& name
) :
122 wxControl(parent
, id
, pos
, size
,
123 style
| wxVSCROLL
| wxHSCROLL
| wxWANTS_CHARS
| wxCLIP_CHILDREN
,
124 wxDefaultValidator
, name
)
126 m_swx
= new ScintillaWX(this);
131 wxStyledTextCtrl::~wxStyledTextCtrl() {
136 //----------------------------------------------------------------------
138 long wxStyledTextCtrl::SendMsg(int msg
, long wp
, long lp
) {
140 return m_swx
->WndProc(msg
, wp
, lp
);
148 #define MAKELONG(a, b) ((a) | ((b) << 16))
151 static long wxColourAsLong(const wxColour
& co
) {
152 return (((long)co
.Blue() << 16) |
153 ((long)co
.Green() << 8) |
157 static wxColour
wxColourFromLong(long c
) {
159 clr
.Set(c
& 0xff, (c
>> 8) & 0xff, (c
>> 16) & 0xff);
164 static wxColour
wxColourFromSpec(const wxString
& spec
) {
165 // spec should be #RRGGBB
167 int red
= strtol(spec
.Mid(1,2), &junk
, 16);
168 int green
= strtol(spec
.Mid(3,2), &junk
, 16);
169 int blue
= strtol(spec
.Mid(5,2), &junk
, 16);
170 return wxColour(red
, green
, blue
);
174 //----------------------------------------------------------------------
175 // BEGIN generated section. The following code is automatically generated
176 // by gen_iface.py from the contents of Scintilla.iface. Do not edit
177 // this file. Edit stc.cpp.in or gen_iface.py instead and regenerate.
180 // Add text to the document
181 void wxStyledTextCtrl::AddText(const wxString
& text
) {
182 SendMsg(2001, text
.Len(), (long)text
.c_str());
185 // Add array of cells to document
186 void wxStyledTextCtrl::AddStyledText(const wxString
& text
) {
187 SendMsg(2002, text
.Len(), (long)text
.c_str());
190 // Insert string at a position
191 void wxStyledTextCtrl::InsertText(int pos
, const wxString
& text
) {
192 SendMsg(2003, pos
, (long)text
.c_str());
195 // Delete all text in the document
196 void wxStyledTextCtrl::ClearAll() {
200 // Set all style bytes to 0, remove all folding information
201 void wxStyledTextCtrl::ClearDocumentStyle() {
205 // The number of characters in the document
206 int wxStyledTextCtrl::GetLength() {
207 return SendMsg(2006, 0, 0);
210 // Returns the character byte at the position
211 int wxStyledTextCtrl::GetCharAt(int pos
) {
212 return SendMsg(2007, pos
, 0);
215 // Returns the position of the caret
216 int wxStyledTextCtrl::GetCurrentPos() {
217 return SendMsg(2008, 0, 0);
220 // Returns the position of the opposite end of the selection to the caret
221 int wxStyledTextCtrl::GetAnchor() {
222 return SendMsg(2009, 0, 0);
225 // Returns the style byte at the position
226 int wxStyledTextCtrl::GetStyleAt(int pos
) {
227 return SendMsg(2010, pos
, 0);
230 // Redoes the next action on the undo history
231 void wxStyledTextCtrl::Redo() {
235 // Choose between collecting actions into the undo
236 // history and discarding them.
237 void wxStyledTextCtrl::SetUndoCollection(bool collectUndo
) {
238 SendMsg(2012, collectUndo
, 0);
241 // Select all the text in the document.
242 void wxStyledTextCtrl::SelectAll() {
246 // Remember the current position in the undo history as the position
247 // at which the document was saved.
248 void wxStyledTextCtrl::SetSavePoint() {
252 // Retrieve a buffer of cells.
253 wxString
wxStyledTextCtrl::GetStyledText(int startPos
, int endPos
) {
255 int len
= endPos
- startPos
;
257 tr
.lpstrText
= text
.GetWriteBuf(len
*2+1);
258 tr
.chrg
.cpMin
= startPos
;
259 tr
.chrg
.cpMax
= endPos
;
260 SendMsg(2015, 0, (long)&tr
);
261 text
.UngetWriteBuf(len
*2);
265 // Are there any redoable actions in the undo history.
266 bool wxStyledTextCtrl::CanRedo() {
267 return SendMsg(2016, 0, 0) != 0;
270 // Retrieve the line number at which a particular marker is located
271 int wxStyledTextCtrl::MarkerLineFromHandle(int handle
) {
272 return SendMsg(2017, handle
, 0);
276 void wxStyledTextCtrl::MarkerDeleteHandle(int handle
) {
277 SendMsg(2018, handle
, 0);
280 // Is undo history being collected?
281 bool wxStyledTextCtrl::GetUndoCollection() {
282 return SendMsg(2019, 0, 0) != 0;
285 // Are white space characters currently visible?
286 // Returns one of SCWS_* constants.
287 int wxStyledTextCtrl::GetViewWhiteSpace() {
288 return SendMsg(2020, 0, 0);
291 // Make white space characters invisible, always visible or visible outside indentation.
292 void wxStyledTextCtrl::SetViewWhiteSpace(int viewWS
) {
293 SendMsg(2021, viewWS
, 0);
296 // Find the position from a point within the window.
297 int wxStyledTextCtrl::PositionFromPoint(wxPoint pt
) {
298 return SendMsg(2022, pt
.x
, pt
.y
);
301 // Set caret to start of a line and ensure it is visible.
302 void wxStyledTextCtrl::GotoLine(int line
) {
303 SendMsg(2024, line
, 0);
306 // Set caret to a position and ensure it is visible.
307 void wxStyledTextCtrl::GotoPos(int pos
) {
308 SendMsg(2025, pos
, 0);
311 // Set the selection anchor to a position. The anchor is the opposite
312 // end of the selection from the caret.
313 void wxStyledTextCtrl::SetAnchor(int posAnchor
) {
314 SendMsg(2026, posAnchor
, 0);
317 // Retrieve the text of the line containing the caret.
318 // Returns the index of the caret on the line.
319 wxString
wxStyledTextCtrl::GetCurLine(int* linePos
) {
321 int len
= LineLength(GetCurrentLine());
322 char* buf
= text
.GetWriteBuf(len
+1);
324 int pos
= SendMsg(2027, len
, (long)buf
);
325 text
.UngetWriteBuf();
326 if (linePos
) *linePos
= pos
;
331 // Retrieve the position of the last correctly styled character.
332 int wxStyledTextCtrl::GetEndStyled() {
333 return SendMsg(2028, 0, 0);
336 // Convert all line endings in the document to use the current mode.
337 void wxStyledTextCtrl::ConvertEOLs() {
341 // Retrieve the current end of line mode - one of CRLF, CR, or LF.
342 int wxStyledTextCtrl::GetEOLMode() {
343 return SendMsg(2030, 0, 0);
346 // Set the current end of line mode.
347 void wxStyledTextCtrl::SetEOLMode(int eolMode
) {
348 SendMsg(2031, eolMode
, 0);
351 // Set the current styling position to pos and the styling mask to mask.
352 // The styling mask can be used to protect some bits in each styling byte from
354 void wxStyledTextCtrl::StartStyling(int pos
, int mask
) {
355 SendMsg(2032, pos
, mask
);
358 // Change style from current styling position for length characters to a style
359 // and move the current styling position to after this newly styled segment.
360 void wxStyledTextCtrl::SetStyling(int length
, int style
) {
361 SendMsg(2033, length
, style
);
364 // Is drawing done first into a buffer or direct to the screen.
365 bool wxStyledTextCtrl::GetBufferedDraw() {
366 return SendMsg(2034, 0, 0) != 0;
369 // If drawing is buffered then each line of text is drawn into a bitmap buffer
370 // before drawing it to the screen to avoid flicker.
371 void wxStyledTextCtrl::SetBufferedDraw(bool buffered
) {
372 SendMsg(2035, buffered
, 0);
375 // Change the visible size of a tab to be a multiple of the width of a space
377 void wxStyledTextCtrl::SetTabWidth(int tabWidth
) {
378 SendMsg(2036, tabWidth
, 0);
381 // Retrieve the visible size of a tab.
382 int wxStyledTextCtrl::GetTabWidth() {
383 return SendMsg(2121, 0, 0);
386 // Set the code page used to interpret the bytes of the document as characters.
387 // The SC_CP_UTF8 value can be used to enter Unicode mode.
388 void wxStyledTextCtrl::SetCodePage(int codePage
) {
389 SendMsg(2037, codePage
, 0);
392 // Set the symbol used for a particular marker number,
393 // and optionally the for and background colours.
394 void wxStyledTextCtrl::MarkerDefine(int markerNumber
, int markerSymbol
,
395 const wxColour
& foreground
,
396 const wxColour
& background
) {
398 SendMsg(2040, markerNumber
, markerSymbol
);
400 MarkerSetForeground(markerNumber
, foreground
);
402 MarkerSetBackground(markerNumber
, background
);
405 // Set the foreground colour used for a particular marker number.
406 void wxStyledTextCtrl::MarkerSetForeground(int markerNumber
, const wxColour
& fore
) {
407 SendMsg(2041, markerNumber
, wxColourAsLong(fore
));
410 // Set the background colour used for a particular marker number.
411 void wxStyledTextCtrl::MarkerSetBackground(int markerNumber
, const wxColour
& back
) {
412 SendMsg(2042, markerNumber
, wxColourAsLong(back
));
415 // Add a marker to a line.
416 void wxStyledTextCtrl::MarkerAdd(int line
, int markerNumber
) {
417 SendMsg(2043, line
, markerNumber
);
420 // Delete a marker from a line
421 void wxStyledTextCtrl::MarkerDelete(int line
, int markerNumber
) {
422 SendMsg(2044, line
, markerNumber
);
425 // Delete all markers with a particular number from all lines
426 void wxStyledTextCtrl::MarkerDeleteAll(int markerNumber
) {
427 SendMsg(2045, markerNumber
, 0);
430 // Get a bit mask of all the markers set on a line.
431 int wxStyledTextCtrl::MarkerGet(int line
) {
432 return SendMsg(2046, line
, 0);
435 // Find the next line after lineStart that includes a marker in mask.
436 int wxStyledTextCtrl::MarkerNext(int lineStart
, int markerMask
) {
437 return SendMsg(2047, lineStart
, markerMask
);
440 // Find the previous line before lineStart that includes a marker in mask.
441 int wxStyledTextCtrl::MarkerPrevious(int lineStart
, int markerMask
) {
442 return SendMsg(2048, lineStart
, markerMask
);
445 // Set a margin to be either numeric or symbolic.
446 void wxStyledTextCtrl::SetMarginType(int margin
, int marginType
) {
447 SendMsg(2240, margin
, marginType
);
450 // Retrieve the type of a margin.
451 int wxStyledTextCtrl::GetMarginType(int margin
) {
452 return SendMsg(2241, margin
, 0);
455 // Set the width of a margin to a width expressed in pixels.
456 void wxStyledTextCtrl::SetMarginWidth(int margin
, int pixelWidth
) {
457 SendMsg(2242, margin
, pixelWidth
);
460 // Retrieve the width of a margin in pixels.
461 int wxStyledTextCtrl::GetMarginWidth(int margin
) {
462 return SendMsg(2243, margin
, 0);
465 // Set a mask that determines which markers are displayed in a margin.
466 void wxStyledTextCtrl::SetMarginMask(int margin
, int mask
) {
467 SendMsg(2244, margin
, mask
);
470 // Retrieve the marker mask of a margin.
471 int wxStyledTextCtrl::GetMarginMask(int margin
) {
472 return SendMsg(2245, margin
, 0);
475 // Make a margin sensitive or insensitive to mouse clicks.
476 void wxStyledTextCtrl::SetMarginSensitive(int margin
, bool sensitive
) {
477 SendMsg(2246, margin
, sensitive
);
480 // Retrieve the mouse click sensitivity of a margin.
481 bool wxStyledTextCtrl::GetMarginSensitive(int margin
) {
482 return SendMsg(2247, margin
, 0) != 0;
485 // Clear all the styles and make equivalent to the global default style.
486 void wxStyledTextCtrl::StyleClearAll() {
490 // Set the foreground colour of a style.
491 void wxStyledTextCtrl::StyleSetForeground(int style
, const wxColour
& fore
) {
492 SendMsg(2051, style
, wxColourAsLong(fore
));
495 // Set the background colour of a style.
496 void wxStyledTextCtrl::StyleSetBackground(int style
, const wxColour
& back
) {
497 SendMsg(2052, style
, wxColourAsLong(back
));
500 // Set a style to be bold or not.
501 void wxStyledTextCtrl::StyleSetBold(int style
, bool bold
) {
502 SendMsg(2053, style
, bold
);
505 // Set a style to be italic or not.
506 void wxStyledTextCtrl::StyleSetItalic(int style
, bool italic
) {
507 SendMsg(2054, style
, italic
);
510 // Set the size of characters of a style.
511 void wxStyledTextCtrl::StyleSetSize(int style
, int sizePoints
) {
512 SendMsg(2055, style
, sizePoints
);
515 // Set the font of a style.
516 void wxStyledTextCtrl::StyleSetFaceName(int style
, const wxString
& fontName
) {
517 SendMsg(2056, style
, (long)fontName
.c_str());
520 // Set a style to have its end of line filled or not.
521 void wxStyledTextCtrl::StyleSetEOLFilled(int style
, bool filled
) {
522 SendMsg(2057, style
, filled
);
525 // Reset the default style to its state at startup
526 void wxStyledTextCtrl::StyleResetDefault() {
530 // Set a style to be underlined or not.
531 void wxStyledTextCtrl::StyleSetUnderline(int style
, bool underline
) {
532 SendMsg(2059, style
, underline
);
535 // Set the foreground colour of the selection and whether to use this setting.
536 void wxStyledTextCtrl::SetSelForeground(bool useSetting
, const wxColour
& fore
) {
537 SendMsg(2067, useSetting
, wxColourAsLong(fore
));
540 // Set the background colour of the selection and whether to use this setting.
541 void wxStyledTextCtrl::SetSelBackground(bool useSetting
, const wxColour
& back
) {
542 SendMsg(2068, useSetting
, wxColourAsLong(back
));
545 // Set the foreground colour of the caret.
546 void wxStyledTextCtrl::SetCaretForeground(const wxColour
& fore
) {
547 SendMsg(2069, wxColourAsLong(fore
), 0);
550 // When key+modifier combination km is pressed perform msg.
551 void wxStyledTextCtrl::CmdKeyAssign(int key
, int modifiers
, int cmd
) {
552 SendMsg(2070, MAKELONG(key
, modifiers
), cmd
);
555 // When key+modifier combination km do nothing.
556 void wxStyledTextCtrl::CmdKeyClear(int key
, int modifiers
) {
557 SendMsg(2071, MAKELONG(key
, modifiers
));
560 // Drop all key mappings.
561 void wxStyledTextCtrl::CmdKeyClearAll() {
565 // Set the styles for a segment of the document.
566 void wxStyledTextCtrl::SetStyleBytes(int length
, char* styleBytes
) {
567 SendMsg(2073, length
, (long)styleBytes
);
570 // Set a style to be visible or not.
571 void wxStyledTextCtrl::StyleSetVisible(int style
, bool visible
) {
572 SendMsg(2074, style
, visible
);
575 // Get the time in milliseconds that the caret is on and off.
576 int wxStyledTextCtrl::GetCaretPeriod() {
577 return SendMsg(2075, 0, 0);
580 // Get the time in milliseconds that the caret is on and off. 0 = steady on.
581 void wxStyledTextCtrl::SetCaretPeriod(int periodMilliseconds
) {
582 SendMsg(2076, periodMilliseconds
, 0);
585 // Set the set of characters making up words for when moving or selecting
587 void wxStyledTextCtrl::SetWordChars(const wxString
& characters
) {
588 SendMsg(2077, 0, (long)characters
.c_str());
591 // Start a sequence of actions that is undone and redone as a unit.
593 void wxStyledTextCtrl::BeginUndoAction() {
597 // End a sequence of actions that is undone and redone as a unit.
598 void wxStyledTextCtrl::EndUndoAction() {
602 // Set an indicator to plain, squiggle or TT.
603 void wxStyledTextCtrl::IndicatorSetStyle(int indic
, int style
) {
604 SendMsg(2080, indic
, style
);
607 // Retrieve the style of an indicator.
608 int wxStyledTextCtrl::IndicatorGetStyle(int indic
) {
609 return SendMsg(2081, indic
, 0);
612 // Set the foreground colour of an indicator.
613 void wxStyledTextCtrl::IndicatorSetForeground(int indic
, const wxColour
& fore
) {
614 SendMsg(2082, indic
, wxColourAsLong(fore
));
617 // Retrieve the foreground colour of an indicator.
618 wxColour
wxStyledTextCtrl::IndicatorGetForeground(int indic
) {
619 long c
= SendMsg(2083, indic
, 0);
620 return wxColourFromLong(c
);
623 // Divide each styling byte into lexical class bits (default:5) and indicator
624 // bits (default:3). If a lexer requires more than 32 lexical states, then this
625 // is used to expand the possible states.
626 void wxStyledTextCtrl::SetStyleBits(int bits
) {
627 SendMsg(2090, bits
, 0);
630 // Retrieve number of bits in style bytes used to hold the lexical state.
631 int wxStyledTextCtrl::GetStyleBits() {
632 return SendMsg(2091, 0, 0);
635 // Used to hold extra styling information for each line.
636 void wxStyledTextCtrl::SetLineState(int line
, int state
) {
637 SendMsg(2092, line
, state
);
640 // Retrieve the extra styling information for a line.
641 int wxStyledTextCtrl::GetLineState(int line
) {
642 return SendMsg(2093, line
, 0);
645 // Retrieve the last line number that has line state.
646 int wxStyledTextCtrl::GetMaxLineState() {
647 return SendMsg(2094, 0, 0);
650 // Display a auto-completion list.
651 // The lenEntered parameter indicates how many characters before
652 // the caret should be used to provide context.
653 void wxStyledTextCtrl::AutoCompShow(int lenEntered
, const wxString
& itemList
) {
654 SendMsg(2100, lenEntered
, (long)itemList
.c_str());
657 // Remove the auto-completion list from the screen.
658 void wxStyledTextCtrl::AutoCompCancel() {
662 // Is there an auto-completion list visible?
663 bool wxStyledTextCtrl::AutoCompActive() {
664 return SendMsg(2102, 0, 0) != 0;
667 // Retrieve the position of the caret when the auto-completion list was
669 int wxStyledTextCtrl::AutoCompPosStart() {
670 return SendMsg(2103, 0, 0);
673 // User has selected an item so remove the list and insert the selection.
674 void wxStyledTextCtrl::AutoCompComplete() {
678 // Define a set of character that when typed cancel the auto-completion list.
679 void wxStyledTextCtrl::AutoCompStops(const wxString
& characterSet
) {
680 SendMsg(2105, 0, (long)characterSet
.c_str());
683 // Change the separator character in the string setting up an auto-completion
684 // list. Default is space but can be changed if items contain space.
685 void wxStyledTextCtrl::AutoCompSetSeparator(int separatorCharacter
) {
686 SendMsg(2106, separatorCharacter
, 0);
689 // Retrieve the auto-completion list separator character.
690 int wxStyledTextCtrl::AutoCompGetSeparator() {
691 return SendMsg(2107, 0, 0);
694 // Select the item in the auto-completion list that starts with a string.
695 void wxStyledTextCtrl::AutoCompSelect(const wxString
& text
) {
696 SendMsg(2108, 0, (long)text
.c_str());
699 // Should the auto-completion list be cancelled if the user backspaces to a
700 // position before where the box was created.
701 void wxStyledTextCtrl::AutoCompSetCancelAtStart(bool cancel
) {
702 SendMsg(2110, cancel
, 0);
705 // Retrieve whether auto-completion cancelled by backspacing before start.
706 bool wxStyledTextCtrl::AutoCompGetCancelAtStart() {
707 return SendMsg(2111, 0, 0) != 0;
710 // Define a set of character that when typed fills up the selected word.
711 void wxStyledTextCtrl::AutoCompSetFillUps(const wxString
& characterSet
) {
712 SendMsg(2112, 0, (long)characterSet
.c_str());
715 // Should a single item auto-completion list automatically choose the item.
716 void wxStyledTextCtrl::AutoCompSetChooseSingle(bool chooseSingle
) {
717 SendMsg(2113, chooseSingle
, 0);
720 // Retrieve whether a single item auto-completion list automatically choose the item.
721 bool wxStyledTextCtrl::AutoCompGetChooseSingle() {
722 return SendMsg(2114, 0, 0) != 0;
725 // Set whether case is significant when performing auto-completion searches.
726 void wxStyledTextCtrl::AutoCompSetIgnoreCase(bool ignoreCase
) {
727 SendMsg(2115, ignoreCase
, 0);
730 // Retrieve state of ignore case flag.
731 bool wxStyledTextCtrl::AutoCompGetIgnoreCase() {
732 return SendMsg(2116, 0, 0) != 0;
735 // Set the number of spaces used for one level of indentation.
736 void wxStyledTextCtrl::SetIndent(int indentSize
) {
737 SendMsg(2122, indentSize
, 0);
740 // Retrieve indentation size.
741 int wxStyledTextCtrl::GetIndent() {
742 return SendMsg(2123, 0, 0);
745 // Indentation will only use space characters if useTabs is false, otherwise
746 // it will use a combination of tabs and spaces.
747 void wxStyledTextCtrl::SetUseTabs(bool useTabs
) {
748 SendMsg(2124, useTabs
, 0);
751 // Retrieve whether tabs will be used in indentation.
752 bool wxStyledTextCtrl::GetUseTabs() {
753 return SendMsg(2125, 0, 0) != 0;
756 // Change the indentation of a line to a number of columns.
757 void wxStyledTextCtrl::SetLineIndentation(int line
, int indentSize
) {
758 SendMsg(2126, line
, indentSize
);
761 // Retrieve the number of columns that a line is indented.
762 int wxStyledTextCtrl::GetLineIndentation(int line
) {
763 return SendMsg(2127, line
, 0);
766 // Retrieve the position before the first non indentation character on a line.
767 int wxStyledTextCtrl::GetLineIndentPosition(int line
) {
768 return SendMsg(2128, line
, 0);
771 // Retrieve the column number of a position, taking tab width into account.
772 int wxStyledTextCtrl::GetColumn(int pos
) {
773 return SendMsg(2129, pos
, 0);
776 // Show or hide the horizontal scroll bar.
777 void wxStyledTextCtrl::SetUseHorizontalScrollBar(bool show
) {
778 SendMsg(2130, show
, 0);
781 // Is the horizontal scroll bar visible?
782 bool wxStyledTextCtrl::GetUseHorizontalScrollBar() {
783 return SendMsg(2131, 0, 0) != 0;
786 // Show or hide indentation guides.
787 void wxStyledTextCtrl::SetIndentationGuides(bool show
) {
788 SendMsg(2132, show
, 0);
791 // Are the indentation guides visible?
792 bool wxStyledTextCtrl::GetIndentationGuides() {
793 return SendMsg(2133, 0, 0) != 0;
796 // Set the highlighted indentation guide column.
797 // 0 = no highlighted guide.
798 void wxStyledTextCtrl::SetHighlightGuide(int column
) {
799 SendMsg(2134, column
, 0);
802 // Get the highlighted indentation guide column.
803 int wxStyledTextCtrl::GetHighlightGuide() {
804 return SendMsg(2135, 0, 0);
807 // Get the position after the last visible characters on a line.
808 int wxStyledTextCtrl::GetLineEndPosition(int line
) {
809 return SendMsg(2136, line
, 0);
812 // Get the code page used to interpret the bytes of the document as characters.
813 int wxStyledTextCtrl::GetCodePage() {
814 return SendMsg(2137, 0, 0);
817 // Get the foreground colour of the caret.
818 wxColour
wxStyledTextCtrl::GetCaretForeground() {
819 long c
= SendMsg(2138, 0, 0);
820 return wxColourFromLong(c
);
823 // In read-only mode?
824 bool wxStyledTextCtrl::GetReadOnly() {
825 return SendMsg(2140, 0, 0) != 0;
828 // Sets the position of the caret.
829 void wxStyledTextCtrl::SetCurrentPos(int pos
) {
830 SendMsg(2141, pos
, 0);
833 // Sets the position that starts the selection - this becomes the anchor.
834 void wxStyledTextCtrl::SetSelectionStart(int pos
) {
835 SendMsg(2142, pos
, 0);
838 // Returns the position at the start of the selection.
839 int wxStyledTextCtrl::GetSelectionStart() {
840 return SendMsg(2143, 0, 0);
843 // Sets the position that ends the selection - this becomes the currentPosition.
844 void wxStyledTextCtrl::SetSelectionEnd(int pos
) {
845 SendMsg(2144, pos
, 0);
848 // Returns the position at the end of the selection.
849 int wxStyledTextCtrl::GetSelectionEnd() {
850 return SendMsg(2145, 0, 0);
853 // Sets the print magnification added to the point size of each style for printing.
854 void wxStyledTextCtrl::SetPrintMagnification(int magnification
) {
855 SendMsg(2146, magnification
, 0);
858 // Returns the print magnification.
859 int wxStyledTextCtrl::GetPrintMagnification() {
860 return SendMsg(2147, 0, 0);
863 // Modify colours when printing for clearer printed text.
864 void wxStyledTextCtrl::SetPrintColourMode(int mode
) {
865 SendMsg(2148, mode
, 0);
868 // Returns the print colour mode.
869 int wxStyledTextCtrl::GetPrintColourMode() {
870 return SendMsg(2149, 0, 0);
873 // Find some text in the document.
874 int wxStyledTextCtrl::FindText(int minPos
, int maxPos
,
875 const wxString
& text
,
876 bool caseSensitive
, bool wholeWord
) {
880 flags
|= caseSensitive
? SCFIND_MATCHCASE
: 0;
881 flags
|= wholeWord
? SCFIND_WHOLEWORD
: 0;
882 ft
.chrg
.cpMin
= minPos
;
883 ft
.chrg
.cpMax
= maxPos
;
884 ft
.lpstrText
= (char*)text
.c_str();
886 return SendMsg(2150, flags
, (long)&ft
);
889 // On Windows will draw the document into a display context such as a printer.
890 int wxStyledTextCtrl::FormatRange(bool doDraw
,
894 wxDC
* target
, // Why does it use two? Can they be the same?
900 fr
.hdcTarget
= target
;
901 fr
.rc
.top
= renderRect
.GetTop();
902 fr
.rc
.left
= renderRect
.GetLeft();
903 fr
.rc
.right
= renderRect
.GetRight();
904 fr
.rc
.bottom
= renderRect
.GetBottom();
905 fr
.rcPage
.top
= pageRect
.GetTop();
906 fr
.rcPage
.left
= pageRect
.GetLeft();
907 fr
.rcPage
.right
= pageRect
.GetRight();
908 fr
.rcPage
.bottom
= pageRect
.GetBottom();
909 fr
.chrg
.cpMin
= startPos
;
910 fr
.chrg
.cpMax
= endPos
;
912 return SendMsg(2151, doDraw
, (long)&fr
);
915 // Retrieve the line at the top of the display.
916 int wxStyledTextCtrl::GetFirstVisibleLine() {
917 return SendMsg(2152, 0, 0);
920 // Retrieve the contents of a line.
921 wxString
wxStyledTextCtrl::GetLine(int line
) {
923 int len
= LineLength(line
);
924 char* buf
= text
.GetWriteBuf(len
+1);
926 int pos
= SendMsg(2153, line
, (long)buf
);
927 text
.UngetWriteBuf();
932 // Returns the number of lines in the document. There is always at least one.
933 int wxStyledTextCtrl::GetLineCount() {
934 return SendMsg(2154, 0, 0);
937 // Sets the size in pixels of the left margin.
938 void wxStyledTextCtrl::SetMarginLeft(int width
) {
939 SendMsg(2155, 0, width
);
942 // Returns the size in pixels of the left margin.
943 int wxStyledTextCtrl::GetMarginLeft() {
944 return SendMsg(2156, 0, 0);
947 // Sets the size in pixels of the right margin.
948 void wxStyledTextCtrl::SetMarginRight(int width
) {
949 SendMsg(2157, 0, width
);
952 // Returns the size in pixels of the right margin.
953 int wxStyledTextCtrl::GetMarginRight() {
954 return SendMsg(2158, 0, 0);
957 // Is the document different from when it was last saved?
958 bool wxStyledTextCtrl::GetModify() {
959 return SendMsg(2159, 0, 0) != 0;
962 // Select a range of text.
963 void wxStyledTextCtrl::SetSelection(int start
, int end
) {
964 SendMsg(2160, start
, end
);
967 // Retrieve the selected text.
968 wxString
wxStyledTextCtrl::GetSelectedText() {
973 GetSelection(&start
, &end
);
974 int len
= end
- start
;
975 char* buff
= text
.GetWriteBuf(len
+1);
977 SendMsg(2161, 0, (long)buff
);
978 text
.UngetWriteBuf();
982 // Retrieve a range of text.
983 wxString
wxStyledTextCtrl::GetTextRange(int startPos
, int endPos
) {
985 int len
= endPos
- startPos
;
986 char* buff
= text
.GetWriteBuf(len
+1);
989 tr
.chrg
.cpMin
= startPos
;
990 tr
.chrg
.cpMax
= endPos
;
992 SendMsg(2162, 0, (long)&tr
);
993 text
.UngetWriteBuf();
997 // Draw the selection in normal style or with selection highlighted.
998 void wxStyledTextCtrl::HideSelection(bool normal
) {
999 SendMsg(2163, normal
, 0);
1002 // Retrieve the line containing a position.
1003 int wxStyledTextCtrl::LineFromPosition(int pos
) {
1004 return SendMsg(2166, pos
, 0);
1007 // Retrieve the position at the start of a line.
1008 int wxStyledTextCtrl::PositionFromLine(int line
) {
1009 return SendMsg(2167, line
, 0);
1012 // Scroll horizontally and vertically.
1013 void wxStyledTextCtrl::LineScroll(int columns
, int lines
) {
1014 SendMsg(2168, columns
, lines
);
1017 // Ensure the caret is visible.
1018 void wxStyledTextCtrl::EnsureCaretVisible() {
1019 SendMsg(2169, 0, 0);
1022 // Replace the selected text with the argument text.
1023 void wxStyledTextCtrl::ReplaceSelection(const wxString
& text
) {
1024 SendMsg(2170, 0, (long)text
.c_str());
1027 // Set to read only or read write.
1028 void wxStyledTextCtrl::SetReadOnly(bool readOnly
) {
1029 SendMsg(2171, readOnly
, 0);
1032 // Will a paste succeed?
1033 bool wxStyledTextCtrl::CanPaste() {
1034 return SendMsg(2173, 0, 0) != 0;
1037 // Are there any undoable actions in the undo history.
1038 bool wxStyledTextCtrl::CanUndo() {
1039 return SendMsg(2174, 0, 0) != 0;
1042 // Delete the undo history.
1043 void wxStyledTextCtrl::EmptyUndoBuffer() {
1044 SendMsg(2175, 0, 0);
1047 // Undo one action in the undo history.
1048 void wxStyledTextCtrl::Undo() {
1049 SendMsg(2176, 0, 0);
1052 // Cut the selection to the clipboard.
1053 void wxStyledTextCtrl::Cut() {
1054 SendMsg(2177, 0, 0);
1057 // Copy the selection to the clipboard.
1058 void wxStyledTextCtrl::Copy() {
1059 SendMsg(2178, 0, 0);
1062 // Paste the contents of the clipboard into the document replacing the selection.
1063 void wxStyledTextCtrl::Paste() {
1064 SendMsg(2179, 0, 0);
1067 // Clear the selection.
1068 void wxStyledTextCtrl::Clear() {
1069 SendMsg(2180, 0, 0);
1072 // Replace the contents of the document with the argument text.
1073 void wxStyledTextCtrl::SetText(const wxString
& text
) {
1074 SendMsg(2181, 0, (long)text
.c_str());
1077 // Retrieve all the text in the document.
1078 wxString
wxStyledTextCtrl::GetText() {
1080 int len
= GetTextLength();
1081 char* buff
= text
.GetWriteBuf(len
+1);
1083 SendMsg(2182, len
, (long)buff
);
1085 text
.UngetWriteBuf();
1089 // Retrieve the number of characters in the document.
1090 int wxStyledTextCtrl::GetTextLength() {
1091 return SendMsg(2183, 0, 0);
1094 // Set to overtype (true) or insert mode
1095 void wxStyledTextCtrl::SetOvertype(bool overtype
) {
1096 SendMsg(2186, overtype
, 0);
1099 // Returns true if overtype mode is active otherwise false is returned.
1100 bool wxStyledTextCtrl::GetOvertype() {
1101 return SendMsg(2187, 0, 0) != 0;
1104 // Show a call tip containing a definition near position pos.
1105 void wxStyledTextCtrl::CallTipShow(int pos
, const wxString
& definition
) {
1106 SendMsg(2200, pos
, (long)definition
.c_str());
1109 // Remove the call tip from the screen.
1110 void wxStyledTextCtrl::CallTipCancel() {
1111 SendMsg(2201, 0, 0);
1114 // Is there an active call tip?
1115 bool wxStyledTextCtrl::CallTipActive() {
1116 return SendMsg(2202, 0, 0) != 0;
1119 // Retrieve the position where the caret was before displaying the call tip.
1120 int wxStyledTextCtrl::CallTipPosAtStart() {
1121 return SendMsg(2203, 0, 0);
1124 // Highlight a segment of the definition.
1125 void wxStyledTextCtrl::CallTipSetHighlight(int start
, int end
) {
1126 SendMsg(2204, start
, end
);
1129 // Set the background colour for the call tip.
1130 void wxStyledTextCtrl::CallTipSetBackground(const wxColour
& back
) {
1131 SendMsg(2205, wxColourAsLong(back
), 0);
1134 // Find the display line of a document line taking hidden lines into account.
1135 int wxStyledTextCtrl::VisibleFromDocLine(int line
) {
1136 return SendMsg(2220, line
, 0);
1139 // Find the document line of a display line taking hidden lines into account.
1140 int wxStyledTextCtrl::DocLineFromVisible(int lineDisplay
) {
1141 return SendMsg(2221, lineDisplay
, 0);
1144 // Set the fold level of a line.
1145 // This encodes an integer level along with flags indicating whether the
1146 // line is a header and whether it is effectively white space.
1147 void wxStyledTextCtrl::SetFoldLevel(int line
, int level
) {
1148 SendMsg(2222, line
, level
);
1151 // Retrieve the fold level of a line.
1152 int wxStyledTextCtrl::GetFoldLevel(int line
) {
1153 return SendMsg(2223, line
, 0);
1156 // Find the last child line of a header line.
1157 int wxStyledTextCtrl::GetLastChild(int line
, int level
) {
1158 return SendMsg(2224, line
, level
);
1161 // Find the parent line of a child line.
1162 int wxStyledTextCtrl::GetFoldParent(int line
) {
1163 return SendMsg(2225, line
, 0);
1166 // Make a range of lines visible.
1167 void wxStyledTextCtrl::ShowLines(int lineStart
, int lineEnd
) {
1168 SendMsg(2226, lineStart
, lineEnd
);
1171 // Make a range of lines invisible.
1172 void wxStyledTextCtrl::HideLines(int lineStart
, int lineEnd
) {
1173 SendMsg(2227, lineStart
, lineEnd
);
1176 // Is a line visible?
1177 bool wxStyledTextCtrl::GetLineVisible(int line
) {
1178 return SendMsg(2228, line
, 0) != 0;
1181 // Show the children of a header line.
1182 void wxStyledTextCtrl::SetFoldExpanded(int line
, bool expanded
) {
1183 SendMsg(2229, line
, expanded
);
1186 // Is a header line expanded?
1187 bool wxStyledTextCtrl::GetFoldExpanded(int line
) {
1188 return SendMsg(2230, line
, 0) != 0;
1191 // Switch a header line between expanded and contracted.
1192 void wxStyledTextCtrl::ToggleFold(int line
) {
1193 SendMsg(2231, line
, 0);
1196 // Ensure a particular line is visible by expanding any header line hiding it.
1197 void wxStyledTextCtrl::EnsureVisible(int line
) {
1198 SendMsg(2232, line
, 0);
1201 // Set some debugging options for folding
1202 void wxStyledTextCtrl::SetFoldFlags(int flags
) {
1203 SendMsg(2233, flags
, 0);
1206 // How many characters are on a line, not including end of line characters.
1207 int wxStyledTextCtrl::LineLength(int line
) {
1208 return SendMsg(2350, line
, 0);
1211 // Highlight the characters at two positions.
1212 void wxStyledTextCtrl::BraceHighlight(int pos1
, int pos2
) {
1213 SendMsg(2351, pos1
, pos2
);
1216 // Highlight the character at a position indicating there is no matching brace.
1217 void wxStyledTextCtrl::BraceBadLight(int pos
) {
1218 SendMsg(2352, pos
, 0);
1221 // Find the position of a matching brace or INVALID_POSITION if no match.
1222 int wxStyledTextCtrl::BraceMatch(int pos
) {
1223 return SendMsg(2353, pos
, 0);
1226 // Are the end of line characters visible.
1227 bool wxStyledTextCtrl::GetViewEOL() {
1228 return SendMsg(2355, 0, 0) != 0;
1231 // Make the end of line characters visible or invisible
1232 void wxStyledTextCtrl::SetViewEOL(bool visible
) {
1233 SendMsg(2356, visible
, 0);
1236 // Retrieve a pointer to the document object.
1237 void* wxStyledTextCtrl::GetDocPointer() {
1238 return (void*)SendMsg(2357);
1241 // Change the document object used.
1242 void wxStyledTextCtrl::SetDocPointer(void* docPointer
) {
1243 SendMsg(2358, (long)docPointer
);
1246 // Set which document modification events are sent to the container.
1247 void wxStyledTextCtrl::SetModEventMask(int mask
) {
1248 SendMsg(2359, mask
, 0);
1251 // Retrieve the column number which text should be kept within.
1252 int wxStyledTextCtrl::GetEdgeColumn() {
1253 return SendMsg(2360, 0, 0);
1256 // Set the column number of the edge.
1257 // If text goes past the edge then it is highlighted.
1258 void wxStyledTextCtrl::SetEdgeColumn(int column
) {
1259 SendMsg(2361, column
, 0);
1262 // Retrieve the edge highlight mode.
1263 int wxStyledTextCtrl::GetEdgeMode() {
1264 return SendMsg(2362, 0, 0);
1267 // The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
1268 // goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
1269 void wxStyledTextCtrl::SetEdgeMode(int mode
) {
1270 SendMsg(2363, mode
, 0);
1273 // Retrieve the colour used in edge indication.
1274 wxColour
wxStyledTextCtrl::GetEdgeColour() {
1275 long c
= SendMsg(2364, 0, 0);
1276 return wxColourFromLong(c
);
1279 // Change the colour used in edge indication.
1280 void wxStyledTextCtrl::SetEdgeColour(const wxColour
& edgeColour
) {
1281 SendMsg(2365, wxColourAsLong(edgeColour
), 0);
1284 // Sets the current caret position to be the search anchor.
1285 void wxStyledTextCtrl::SearchAnchor() {
1286 SendMsg(2366, 0, 0);
1289 // Find some text starting at the search anchor.
1290 int wxStyledTextCtrl::SearchNext(int flags
, const wxString
& text
) {
1291 return SendMsg(2367, flags
, (long)text
.c_str());
1294 // Find some text starting at the search anchor and moving backwards.
1295 int wxStyledTextCtrl::SearchPrev(int flags
, const wxString
& text
) {
1296 return SendMsg(2368, flags
, (long)text
.c_str());
1299 // Set the way the line the caret is on is kept visible.
1300 void wxStyledTextCtrl::SetCaretPolicy(int caretPolicy
, int caretSlop
) {
1301 SendMsg(2369, caretPolicy
, caretSlop
);
1304 // Retrieves the number of lines completely visible.
1305 int wxStyledTextCtrl::LinesOnScreen() {
1306 return SendMsg(2370, 0, 0);
1309 // Set whether a pop up menu is displayed automatically when the user presses
1310 // the wrong mouse button.
1311 void wxStyledTextCtrl::UsePopUp(bool allowPopUp
) {
1312 SendMsg(2371, allowPopUp
, 0);
1315 // Is the selection a rectangular. The alternative is the more common stream selection.
1316 bool wxStyledTextCtrl::SelectionIsRectangle() {
1317 return SendMsg(2372, 0, 0) != 0;
1320 // Set the zoom level. This number of points is added to the size of all fonts.
1321 // It may be positive to magnify or negative to reduce.
1322 void wxStyledTextCtrl::SetZoom(int zoom
) {
1323 SendMsg(2373, zoom
, 0);
1326 // Retrieve the zoom level.
1327 int wxStyledTextCtrl::GetZoom() {
1328 return SendMsg(2374, 0, 0);
1331 // Create a new document object.
1332 // Starts with reference count of 1 and not selected into editor.
1333 void* wxStyledTextCtrl::CreateDocument() {
1334 return (void*)SendMsg(2375);
1337 // Extend life of document.
1338 void wxStyledTextCtrl::AddRefDocument(void* docPointer
) {
1339 SendMsg(2376, (long)docPointer
);
1342 // Release a reference to the document, deleting document if it fades to black.
1343 void wxStyledTextCtrl::ReleaseDocument(void* docPointer
) {
1344 SendMsg(2377, (long)docPointer
);
1347 // Get which document modification events are sent to the container.
1348 int wxStyledTextCtrl::GetModEventMask() {
1349 return SendMsg(2378, 0, 0);
1352 // Start notifying the container of all key presses and commands.
1353 void wxStyledTextCtrl::StartRecord() {
1354 SendMsg(3001, 0, 0);
1357 // Stop notifying the container of all key presses and commands.
1358 void wxStyledTextCtrl::StopRecord() {
1359 SendMsg(3002, 0, 0);
1362 // Set the lexing language of the document.
1363 void wxStyledTextCtrl::SetLexer(int lexer
) {
1364 SendMsg(4001, lexer
, 0);
1367 // Retrieve the lexing language of the document.
1368 int wxStyledTextCtrl::GetLexer() {
1369 return SendMsg(4002, 0, 0);
1372 // Colourise a segment of the document using the current lexing language.
1373 void wxStyledTextCtrl::Colourise(int start
, int end
) {
1374 SendMsg(4003, start
, end
);
1377 // Set up a value that may be used by a lexer for some optional feature.
1378 void wxStyledTextCtrl::SetProperty(const wxString
& key
, const wxString
& value
) {
1379 SendMsg(4004, (long)key
.c_str(), (long)value
.c_str());
1382 // Set up the key words used by the lexer.
1383 void wxStyledTextCtrl::SetKeyWords(int keywordSet
, const wxString
& keyWords
) {
1384 SendMsg(4005, keywordSet
, (long)keyWords
.c_str());
1387 // END of generated section
1388 //----------------------------------------------------------------------
1391 // Returns the line number of the line with the caret.
1392 int wxStyledTextCtrl::GetCurrentLine() {
1393 int line
= LineFromPosition(GetCurrentPos());
1398 // Extract style settings from a spec-string which is composed of one or
1399 // more of the following comma separated elements:
1401 // bold turns on bold
1402 // italic turns on italics
1403 // fore:#RRGGBB sets the foreground colour
1404 // back:#RRGGBB sets the background colour
1405 // face:[facename] sets the font face name to use
1406 // size:[num] sets the font size in points
1407 // eol turns on eol filling
1408 // underline turns on underlining
1410 void wxStyledTextCtrl::StyleSetSpec(int styleNum
, const wxString
& spec
) {
1412 wxStringTokenizer
tkz(spec
, ",");
1413 while (tkz
.HasMoreTokens()) {
1414 wxString token
= tkz
.GetNextToken();
1416 wxString option
= token
.BeforeFirst(':');
1417 wxString val
= token
.AfterFirst(':');
1419 if (option
== "bold")
1420 StyleSetBold(styleNum
, true);
1422 else if (option
== "italic")
1423 StyleSetItalic(styleNum
, true);
1425 else if (option
== "underline")
1426 StyleSetUnderline(styleNum
, true);
1428 else if (option
== "eol")
1429 StyleSetEOLFilled(styleNum
, true);
1431 else if (option
== "size") {
1433 if (val
.ToLong(&points
))
1434 StyleSetSize(styleNum
, points
);
1437 else if (option
== "face")
1438 StyleSetFaceName(styleNum
, val
);
1440 else if (option
== "fore")
1441 StyleSetForeground(styleNum
, wxColourFromSpec(val
));
1443 else if (option
== "back")
1444 StyleSetBackground(styleNum
, wxColourFromSpec(val
));
1449 // Set style size, face, bold, italic, and underline attributes from
1450 // a wxFont's attributes.
1451 void wxStyledTextCtrl::StyleSetFont(int styleNum
, wxFont
& font
) {
1452 int size
= font
.GetPointSize();
1453 wxString faceName
= font
.GetFaceName();
1454 bool bold
= font
.GetWeight() == wxBOLD
;
1455 bool italic
= font
.GetStyle() != wxNORMAL
;
1456 bool under
= font
.GetUnderlined();
1458 // TODO: add encoding/charset mapping
1459 StyleSetFontAttr(styleNum
, size
, faceName
, bold
, italic
, under
);
1462 // Set all font style attributes at once.
1463 void wxStyledTextCtrl::StyleSetFontAttr(int styleNum
, int size
,
1464 const wxString
& faceName
,
1465 bool bold
, bool italic
,
1467 StyleSetSize(styleNum
, size
);
1468 StyleSetFaceName(styleNum
, faceName
);
1469 StyleSetBold(styleNum
, bold
);
1470 StyleSetItalic(styleNum
, italic
);
1471 StyleSetUnderline(styleNum
, underline
);
1473 // TODO: add encoding/charset mapping
1477 // Perform one of the operations defined by the wxSTC_CMD_* constants.
1478 void wxStyledTextCtrl::CmdKeyExecute(int cmd
) {
1483 // Set the left and right margin in the edit area, measured in pixels.
1484 void wxStyledTextCtrl::SetMargins(int left
, int right
) {
1485 SetMarginLeft(left
);
1486 SetMarginRight(right
);
1490 // Retrieve the start and end positions of the current selection.
1491 void wxStyledTextCtrl::GetSelection(int* startPos
, int* endPos
) {
1492 if (startPos
!= NULL
)
1493 *startPos
= SendMsg(SCI_GETSELECTIONSTART
);
1495 *endPos
= SendMsg(SCI_GETSELECTIONEND
);
1499 // Retrieve the point in the window where a position is displayed.
1500 wxPoint
wxStyledTextCtrl::PointFromPosition(int pos
) {
1501 int x
= SendMsg(SCI_POINTXFROMPOSITION
, 0, pos
);
1502 int y
= SendMsg(SCI_POINTYFROMPOSITION
, 0, pos
);
1503 return wxPoint(x
, y
);
1506 // Scroll enough to make the given line visible
1507 void wxStyledTextCtrl::ScrollToLine(int line
) {
1508 m_swx
->DoScrollToLine(line
);
1512 // Scroll enough to make the given column visible
1513 void wxStyledTextCtrl::ScrollToColumn(int column
) {
1514 m_swx
->DoScrollToColumn(column
);
1519 //----------------------------------------------------------------------
1522 void wxStyledTextCtrl::OnPaint(wxPaintEvent
& evt
) {
1524 wxRegion region
= GetUpdateRegion();
1526 m_swx
->DoPaint(&dc
, region
.GetBox());
1529 void wxStyledTextCtrl::OnScrollWin(wxScrollWinEvent
& evt
) {
1530 if (evt
.GetOrientation() == wxHORIZONTAL
)
1531 m_swx
->DoHScroll(evt
.GetEventType(), evt
.GetPosition());
1533 m_swx
->DoVScroll(evt
.GetEventType(), evt
.GetPosition());
1536 void wxStyledTextCtrl::OnSize(wxSizeEvent
& evt
) {
1537 wxSize sz
= GetClientSize();
1538 m_swx
->DoSize(sz
.x
, sz
.y
);
1541 void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent
& evt
) {
1542 wxPoint pt
= evt
.GetPosition();
1543 m_swx
->DoButtonDown(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
1544 evt
.ShiftDown(), evt
.ControlDown(), evt
.AltDown());
1547 void wxStyledTextCtrl::OnMouseMove(wxMouseEvent
& evt
) {
1548 wxPoint pt
= evt
.GetPosition();
1549 m_swx
->DoButtonMove(Point(pt
.x
, pt
.y
));
1552 void wxStyledTextCtrl::OnMouseLeftUp(wxMouseEvent
& evt
) {
1553 wxPoint pt
= evt
.GetPosition();
1554 m_swx
->DoButtonUp(Point(pt
.x
, pt
.y
), m_stopWatch
.Time(),
1559 void wxStyledTextCtrl::OnMouseRightUp(wxMouseEvent
& evt
) {
1560 wxPoint pt
= evt
.GetPosition();
1561 m_swx
->DoContextMenu(Point(pt
.x
, pt
.y
));
1565 void wxStyledTextCtrl::OnMouseWheel(wxMouseEvent
& evt
) {
1566 m_swx
->DoMouseWheel(evt
.GetWheelRotation(),
1567 evt
.GetWheelDelta(),
1568 evt
.GetLinesPerAction());
1572 void wxStyledTextCtrl::OnChar(wxKeyEvent
& evt
) {
1573 long key
= evt
.KeyCode();
1574 if ((key
> WXK_ESCAPE
) &&
1575 (key
!= WXK_DELETE
) && (key
< 255) &&
1576 !evt
.ControlDown() && !evt
.AltDown()) {
1578 m_swx
->DoAddChar(key
);
1585 void wxStyledTextCtrl::OnKeyDown(wxKeyEvent
& evt
) {
1586 long key
= evt
.KeyCode();
1588 int processed
= m_swx
->DoKeyDown(key
, evt
.ShiftDown(),
1589 evt
.ControlDown(), evt
.AltDown());
1594 void wxStyledTextCtrl::OnLoseFocus(wxFocusEvent
& evt
) {
1595 m_swx
->DoLoseFocus();
1598 void wxStyledTextCtrl::OnGainFocus(wxFocusEvent
& evt
) {
1599 m_swx
->DoGainFocus();
1602 void wxStyledTextCtrl::OnSysColourChanged(wxSysColourChangedEvent
& evt
) {
1603 m_swx
->DoSysColourChange();
1606 void wxStyledTextCtrl::OnEraseBackground(wxEraseEvent
& evt
) {
1607 // do nothing to help avoid flashing
1612 void wxStyledTextCtrl::OnMenu(wxCommandEvent
& evt
) {
1613 m_swx
->DoCommand(evt
.GetId());
1617 void wxStyledTextCtrl::OnListBox(wxCommandEvent
& evt
) {
1618 m_swx
->DoOnListBox();
1622 //----------------------------------------------------------------------
1623 // Turn notifications from Scintilla into events
1626 void wxStyledTextCtrl::NotifyChange() {
1627 wxStyledTextEvent
evt(wxEVT_STC_CHANGE
, GetId());
1628 GetEventHandler()->ProcessEvent(evt
);
1631 void wxStyledTextCtrl::NotifyParent(SCNotification
* _scn
) {
1632 SCNotification
& scn
= *_scn
;
1634 switch (scn
.nmhdr
.code
) {
1635 case SCN_STYLENEEDED
:
1636 eventType
= wxEVT_STC_STYLENEEDED
;
1639 eventType
= wxEVT_STC_CHARADDED
;
1642 eventType
= wxEVT_STC_UPDATEUI
;
1644 case SCN_SAVEPOINTREACHED
:
1645 eventType
= wxEVT_STC_SAVEPOINTREACHED
;
1647 case SCN_SAVEPOINTLEFT
:
1648 eventType
= wxEVT_STC_SAVEPOINTLEFT
;
1650 case SCN_MODIFYATTEMPTRO
:
1651 eventType
= wxEVT_STC_ROMODIFYATTEMPT
;
1653 case SCN_DOUBLECLICK
:
1654 eventType
= wxEVT_STC_DOUBLECLICK
;
1657 eventType
= wxEVT_STC_MODIFIED
;
1660 eventType
= wxEVT_STC_KEY
;
1662 case SCN_MACRORECORD
:
1663 eventType
= wxEVT_STC_MACRORECORD
;
1665 case SCN_MARGINCLICK
:
1666 eventType
= wxEVT_STC_MARGINCLICK
;
1669 eventType
= wxEVT_STC_NEEDSHOWN
;
1671 case SCN_POSCHANGED
:
1672 eventType
= wxEVT_STC_POSCHANGED
;
1676 wxStyledTextEvent
evt(eventType
, GetId());
1677 evt
.SetPosition(scn
.position
);
1679 evt
.SetModifiers(scn
.modifiers
);
1680 if (eventType
== wxEVT_STC_MODIFIED
) {
1681 evt
.SetModificationType(scn
.modificationType
);
1683 evt
.SetText(wxString(scn
.text
, scn
.length
));
1684 evt
.SetLength(scn
.length
);
1685 evt
.SetLinesAdded(scn
.linesAdded
);
1686 evt
.SetLine(scn
.line
);
1687 evt
.SetFoldLevelNow(scn
.foldLevelNow
);
1688 evt
.SetFoldLevelPrev(scn
.foldLevelPrev
);
1690 if (eventType
== wxEVT_STC_MARGINCLICK
)
1691 evt
.SetMargin(scn
.margin
);
1692 if (eventType
== wxEVT_STC_MACRORECORD
) {
1693 evt
.SetMessage(scn
.message
);
1694 evt
.SetWParam(scn
.wParam
);
1695 evt
.SetLParam(scn
.lParam
);
1698 GetEventHandler()->ProcessEvent(evt
);
1704 //----------------------------------------------------------------------
1705 //----------------------------------------------------------------------
1706 //----------------------------------------------------------------------
1708 wxStyledTextEvent::wxStyledTextEvent(wxEventType commandType
, int id
)
1709 : wxCommandEvent(commandType
, id
)
1714 m_modificationType
= 0;
1719 m_foldLevelPrev
= 0;
1728 bool wxStyledTextEvent::GetShift() const { return (m_modifiers
& SCI_SHIFT
) != 0; }
1729 bool wxStyledTextEvent::GetControl() const { return (m_modifiers
& SCI_CTRL
) != 0; }
1730 bool wxStyledTextEvent::GetAlt() const { return (m_modifiers
& SCI_ALT
) != 0; }
1732 void wxStyledTextEvent::CopyObject(wxObject
& obj
) const {
1733 wxCommandEvent::CopyObject(obj
);
1735 wxStyledTextEvent
* o
= (wxStyledTextEvent
*)&obj
;
1736 o
->m_position
= m_position
;
1738 o
->m_modifiers
= m_modifiers
;
1739 o
->m_modificationType
= m_modificationType
;
1741 o
->m_length
= m_length
;
1742 o
->m_linesAdded
= m_linesAdded
;
1744 o
->m_foldLevelNow
= m_foldLevelNow
;
1745 o
->m_foldLevelPrev
= m_foldLevelPrev
;
1747 o
->m_margin
= m_margin
;
1749 o
->m_message
= m_message
;
1750 o
->m_wParam
= m_wParam
;
1751 o
->m_lParam
= m_lParam
;
1757 //----------------------------------------------------------------------
1758 //----------------------------------------------------------------------