]> git.saurik.com Git - wxWidgets.git/blob - wxPython/contrib/stc/_stc_gendocs.i
Added Ryan Norton and myself to the list of contributors
[wxWidgets.git] / wxPython / contrib / stc / _stc_gendocs.i
1 DocStr(wxStyledTextCtrl::AddText,
2 "Add text to the document at current position.", "");
3
4 DocStr(wxStyledTextCtrl::AddStyledText,
5 "Add array of cells to document.", "");
6
7 DocStr(wxStyledTextCtrl::InsertText,
8 "Insert string at a position.", "");
9
10 DocStr(wxStyledTextCtrl::ClearAll,
11 "Delete all text in the document.", "");
12
13 DocStr(wxStyledTextCtrl::ClearDocumentStyle,
14 "Set all style bytes to 0, remove all folding information.", "");
15
16 DocStr(wxStyledTextCtrl::GetLength,
17 "Returns the number of characters in the document.", "");
18
19 DocStr(wxStyledTextCtrl::GetCharAt,
20 "Returns the character byte at the position.", "");
21
22 DocStr(wxStyledTextCtrl::GetCurrentPos,
23 "Returns the position of the caret.", "");
24
25 DocStr(wxStyledTextCtrl::GetAnchor,
26 "Returns the position of the opposite end of the selection to the caret.", "");
27
28 DocStr(wxStyledTextCtrl::GetStyleAt,
29 "Returns the style byte at the position.", "");
30
31 DocStr(wxStyledTextCtrl::Redo,
32 "Redoes the next action on the undo history.", "");
33
34 DocStr(wxStyledTextCtrl::SetUndoCollection,
35 "Choose between collecting actions into the undo
36 history and discarding them.", "");
37
38 DocStr(wxStyledTextCtrl::SelectAll,
39 "Select all the text in the document.", "");
40
41 DocStr(wxStyledTextCtrl::SetSavePoint,
42 "Remember the current position in the undo history as the position
43 at which the document was saved.", "");
44
45 DocStr(wxStyledTextCtrl::GetStyledText,
46 "Retrieve a buffer of cells.", "");
47
48 DocStr(wxStyledTextCtrl::CanRedo,
49 "Are there any redoable actions in the undo history?", "");
50
51 DocStr(wxStyledTextCtrl::MarkerLineFromHandle,
52 "Retrieve the line number at which a particular marker is located.", "");
53
54 DocStr(wxStyledTextCtrl::MarkerDeleteHandle,
55 "Delete a marker.", "");
56
57 DocStr(wxStyledTextCtrl::GetUndoCollection,
58 "Is undo history being collected?", "");
59
60 DocStr(wxStyledTextCtrl::GetViewWhiteSpace,
61 "Are white space characters currently visible?
62 Returns one of SCWS_* constants.", "");
63
64 DocStr(wxStyledTextCtrl::SetViewWhiteSpace,
65 "Make white space characters invisible, always visible or visible outside indentation.", "");
66
67 DocStr(wxStyledTextCtrl::PositionFromPoint,
68 "Find the position from a point within the window.", "");
69
70 DocStr(wxStyledTextCtrl::PositionFromPointClose,
71 "Find the position from a point within the window but return
72 INVALID_POSITION if not close to text.", "");
73
74 DocStr(wxStyledTextCtrl::GotoLine,
75 "Set caret to start of a line and ensure it is visible.", "");
76
77 DocStr(wxStyledTextCtrl::GotoPos,
78 "Set caret to a position and ensure it is visible.", "");
79
80 DocStr(wxStyledTextCtrl::SetAnchor,
81 "Set the selection anchor to a position. The anchor is the opposite
82 end of the selection from the caret.", "");
83
84 DocStr(wxStyledTextCtrl::GetCurLine,
85 "Retrieve the text of the line containing the caret.
86 Returns the index of the caret on the line.", "");
87
88 DocStr(wxStyledTextCtrl::GetEndStyled,
89 "Retrieve the position of the last correctly styled character.", "");
90
91 DocStr(wxStyledTextCtrl::ConvertEOLs,
92 "Convert all line endings in the document to one mode.", "");
93
94 DocStr(wxStyledTextCtrl::GetEOLMode,
95 "Retrieve the current end of line mode - one of CRLF, CR, or LF.", "");
96
97 DocStr(wxStyledTextCtrl::SetEOLMode,
98 "Set the current end of line mode.", "");
99
100 DocStr(wxStyledTextCtrl::StartStyling,
101 "Set the current styling position to pos and the styling mask to mask.
102 The styling mask can be used to protect some bits in each styling byte from modification.", "");
103
104 DocStr(wxStyledTextCtrl::SetStyling,
105 "Change style from current styling position for length characters to a style
106 and move the current styling position to after this newly styled segment.", "");
107
108 DocStr(wxStyledTextCtrl::GetBufferedDraw,
109 "Is drawing done first into a buffer or direct to the screen?", "");
110
111 DocStr(wxStyledTextCtrl::SetBufferedDraw,
112 "If drawing is buffered then each line of text is drawn into a bitmap buffer
113 before drawing it to the screen to avoid flicker.", "");
114
115 DocStr(wxStyledTextCtrl::SetTabWidth,
116 "Change the visible size of a tab to be a multiple of the width of a space character.", "");
117
118 DocStr(wxStyledTextCtrl::GetTabWidth,
119 "Retrieve the visible size of a tab.", "");
120
121 DocStr(wxStyledTextCtrl::SetCodePage,
122 "Set the code page used to interpret the bytes of the document as characters.", "");
123
124 DocStr(wxStyledTextCtrl::MarkerDefine,
125 "Set the symbol used for a particular marker number,
126 and optionally the fore and background colours.", "");
127
128 DocStr(wxStyledTextCtrl::MarkerSetForeground,
129 "Set the foreground colour used for a particular marker number.", "");
130
131 DocStr(wxStyledTextCtrl::MarkerSetBackground,
132 "Set the background colour used for a particular marker number.", "");
133
134 DocStr(wxStyledTextCtrl::MarkerAdd,
135 "Add a marker to a line, returning an ID which can be used to find or delete the marker.", "");
136
137 DocStr(wxStyledTextCtrl::MarkerDelete,
138 "Delete a marker from a line.", "");
139
140 DocStr(wxStyledTextCtrl::MarkerDeleteAll,
141 "Delete all markers with a particular number from all lines.", "");
142
143 DocStr(wxStyledTextCtrl::MarkerGet,
144 "Get a bit mask of all the markers set on a line.", "");
145
146 DocStr(wxStyledTextCtrl::MarkerNext,
147 "Find the next line after lineStart that includes a marker in mask.", "");
148
149 DocStr(wxStyledTextCtrl::MarkerPrevious,
150 "Find the previous line before lineStart that includes a marker in mask.", "");
151
152 DocStr(wxStyledTextCtrl::MarkerDefineBitmap,
153 "Define a marker from a bitmap", "");
154
155 DocStr(wxStyledTextCtrl::SetMarginType,
156 "Set a margin to be either numeric or symbolic.", "");
157
158 DocStr(wxStyledTextCtrl::GetMarginType,
159 "Retrieve the type of a margin.", "");
160
161 DocStr(wxStyledTextCtrl::SetMarginWidth,
162 "Set the width of a margin to a width expressed in pixels.", "");
163
164 DocStr(wxStyledTextCtrl::GetMarginWidth,
165 "Retrieve the width of a margin in pixels.", "");
166
167 DocStr(wxStyledTextCtrl::SetMarginMask,
168 "Set a mask that determines which markers are displayed in a margin.", "");
169
170 DocStr(wxStyledTextCtrl::GetMarginMask,
171 "Retrieve the marker mask of a margin.", "");
172
173 DocStr(wxStyledTextCtrl::SetMarginSensitive,
174 "Make a margin sensitive or insensitive to mouse clicks.", "");
175
176 DocStr(wxStyledTextCtrl::GetMarginSensitive,
177 "Retrieve the mouse click sensitivity of a margin.", "");
178
179 DocStr(wxStyledTextCtrl::StyleClearAll,
180 "Clear all the styles and make equivalent to the global default style.", "");
181
182 DocStr(wxStyledTextCtrl::StyleSetForeground,
183 "Set the foreground colour of a style.", "");
184
185 DocStr(wxStyledTextCtrl::StyleSetBackground,
186 "Set the background colour of a style.", "");
187
188 DocStr(wxStyledTextCtrl::StyleSetBold,
189 "Set a style to be bold or not.", "");
190
191 DocStr(wxStyledTextCtrl::StyleSetItalic,
192 "Set a style to be italic or not.", "");
193
194 DocStr(wxStyledTextCtrl::StyleSetSize,
195 "Set the size of characters of a style.", "");
196
197 DocStr(wxStyledTextCtrl::StyleSetFaceName,
198 "Set the font of a style.", "");
199
200 DocStr(wxStyledTextCtrl::StyleSetEOLFilled,
201 "Set a style to have its end of line filled or not.", "");
202
203 DocStr(wxStyledTextCtrl::StyleResetDefault,
204 "Reset the default style to its state at startup", "");
205
206 DocStr(wxStyledTextCtrl::StyleSetUnderline,
207 "Set a style to be underlined or not.", "");
208
209 DocStr(wxStyledTextCtrl::StyleSetCase,
210 "Set a style to be mixed case, or to force upper or lower case.", "");
211
212 DocStr(wxStyledTextCtrl::StyleSetCharacterSet,
213 "Set the character set of the font in a style.", "");
214
215 DocStr(wxStyledTextCtrl::StyleSetHotSpot,
216 "Set a style to be a hotspot or not.", "");
217
218 DocStr(wxStyledTextCtrl::SetSelForeground,
219 "Set the foreground colour of the selection and whether to use this setting.", "");
220
221 DocStr(wxStyledTextCtrl::SetSelBackground,
222 "Set the background colour of the selection and whether to use this setting.", "");
223
224 DocStr(wxStyledTextCtrl::SetCaretForeground,
225 "Set the foreground colour of the caret.", "");
226
227 DocStr(wxStyledTextCtrl::CmdKeyAssign,
228 "When key+modifier combination km is pressed perform msg.", "");
229
230 DocStr(wxStyledTextCtrl::CmdKeyClear,
231 "When key+modifier combination km is pressed do nothing.", "");
232
233 DocStr(wxStyledTextCtrl::CmdKeyClearAll,
234 "Drop all key mappings.", "");
235
236 DocStr(wxStyledTextCtrl::SetStyleBytes,
237 "Set the styles for a segment of the document.", "");
238
239 DocStr(wxStyledTextCtrl::StyleSetVisible,
240 "Set a style to be visible or not.", "");
241
242 DocStr(wxStyledTextCtrl::GetCaretPeriod,
243 "Get the time in milliseconds that the caret is on and off.", "");
244
245 DocStr(wxStyledTextCtrl::SetCaretPeriod,
246 "Get the time in milliseconds that the caret is on and off. 0 = steady on.", "");
247
248 DocStr(wxStyledTextCtrl::SetWordChars,
249 "Set the set of characters making up words for when moving or selecting by word.
250 First sets deaults like SetCharsDefault.", "");
251
252 DocStr(wxStyledTextCtrl::BeginUndoAction,
253 "Start a sequence of actions that is undone and redone as a unit.
254 May be nested.", "");
255
256 DocStr(wxStyledTextCtrl::EndUndoAction,
257 "End a sequence of actions that is undone and redone as a unit.", "");
258
259 DocStr(wxStyledTextCtrl::IndicatorSetStyle,
260 "Set an indicator to plain, squiggle or TT.", "");
261
262 DocStr(wxStyledTextCtrl::IndicatorGetStyle,
263 "Retrieve the style of an indicator.", "");
264
265 DocStr(wxStyledTextCtrl::IndicatorSetForeground,
266 "Set the foreground colour of an indicator.", "");
267
268 DocStr(wxStyledTextCtrl::IndicatorGetForeground,
269 "Retrieve the foreground colour of an indicator.", "");
270
271 DocStr(wxStyledTextCtrl::SetWhitespaceForeground,
272 "Set the foreground colour of all whitespace and whether to use this setting.", "");
273
274 DocStr(wxStyledTextCtrl::SetWhitespaceBackground,
275 "Set the background colour of all whitespace and whether to use this setting.", "");
276
277 DocStr(wxStyledTextCtrl::SetStyleBits,
278 "Divide each styling byte into lexical class bits (default: 5) and indicator
279 bits (default: 3). If a lexer requires more than 32 lexical states, then this
280 is used to expand the possible states.", "");
281
282 DocStr(wxStyledTextCtrl::GetStyleBits,
283 "Retrieve number of bits in style bytes used to hold the lexical state.", "");
284
285 DocStr(wxStyledTextCtrl::SetLineState,
286 "Used to hold extra styling information for each line.", "");
287
288 DocStr(wxStyledTextCtrl::GetLineState,
289 "Retrieve the extra styling information for a line.", "");
290
291 DocStr(wxStyledTextCtrl::GetMaxLineState,
292 "Retrieve the last line number that has line state.", "");
293
294 DocStr(wxStyledTextCtrl::GetCaretLineVisible,
295 "Is the background of the line containing the caret in a different colour?", "");
296
297 DocStr(wxStyledTextCtrl::SetCaretLineVisible,
298 "Display the background of the line containing the caret in a different colour.", "");
299
300 DocStr(wxStyledTextCtrl::GetCaretLineBack,
301 "Get the colour of the background of the line containing the caret.", "");
302
303 DocStr(wxStyledTextCtrl::SetCaretLineBack,
304 "Set the colour of the background of the line containing the caret.", "");
305
306 DocStr(wxStyledTextCtrl::StyleSetChangeable,
307 "Set a style to be changeable or not (read only).
308 Experimental feature, currently buggy.", "");
309
310 DocStr(wxStyledTextCtrl::AutoCompShow,
311 "Display a auto-completion list.
312 The lenEntered parameter indicates how many characters before
313 the caret should be used to provide context.", "");
314
315 DocStr(wxStyledTextCtrl::AutoCompCancel,
316 "Remove the auto-completion list from the screen.", "");
317
318 DocStr(wxStyledTextCtrl::AutoCompActive,
319 "Is there an auto-completion list visible?", "");
320
321 DocStr(wxStyledTextCtrl::AutoCompPosStart,
322 "Retrieve the position of the caret when the auto-completion list was displayed.", "");
323
324 DocStr(wxStyledTextCtrl::AutoCompComplete,
325 "User has selected an item so remove the list and insert the selection.", "");
326
327 DocStr(wxStyledTextCtrl::AutoCompStops,
328 "Define a set of character that when typed cancel the auto-completion list.", "");
329
330 DocStr(wxStyledTextCtrl::AutoCompSetSeparator,
331 "Change the separator character in the string setting up an auto-completion list.
332 Default is space but can be changed if items contain space.", "");
333
334 DocStr(wxStyledTextCtrl::AutoCompGetSeparator,
335 "Retrieve the auto-completion list separator character.", "");
336
337 DocStr(wxStyledTextCtrl::AutoCompSelect,
338 "Select the item in the auto-completion list that starts with a string.", "");
339
340 DocStr(wxStyledTextCtrl::AutoCompSetCancelAtStart,
341 "Should the auto-completion list be cancelled if the user backspaces to a
342 position before where the box was created.", "");
343
344 DocStr(wxStyledTextCtrl::AutoCompGetCancelAtStart,
345 "Retrieve whether auto-completion cancelled by backspacing before start.", "");
346
347 DocStr(wxStyledTextCtrl::AutoCompSetFillUps,
348 "Define a set of characters that when typed will cause the autocompletion to
349 choose the selected item.", "");
350
351 DocStr(wxStyledTextCtrl::AutoCompSetChooseSingle,
352 "Should a single item auto-completion list automatically choose the item.", "");
353
354 DocStr(wxStyledTextCtrl::AutoCompGetChooseSingle,
355 "Retrieve whether a single item auto-completion list automatically choose the item.", "");
356
357 DocStr(wxStyledTextCtrl::AutoCompSetIgnoreCase,
358 "Set whether case is significant when performing auto-completion searches.", "");
359
360 DocStr(wxStyledTextCtrl::AutoCompGetIgnoreCase,
361 "Retrieve state of ignore case flag.", "");
362
363 DocStr(wxStyledTextCtrl::UserListShow,
364 "Display a list of strings and send notification when user chooses one.", "");
365
366 DocStr(wxStyledTextCtrl::AutoCompSetAutoHide,
367 "Set whether or not autocompletion is hidden automatically when nothing matches.", "");
368
369 DocStr(wxStyledTextCtrl::AutoCompGetAutoHide,
370 "Retrieve whether or not autocompletion is hidden automatically when nothing matches.", "");
371
372 DocStr(wxStyledTextCtrl::AutoCompSetDropRestOfWord,
373 "Set whether or not autocompletion deletes any word characters
374 after the inserted text upon completion.", "");
375
376 DocStr(wxStyledTextCtrl::AutoCompGetDropRestOfWord,
377 "Retrieve whether or not autocompletion deletes any word characters
378 after the inserted text upon completion.", "");
379
380 DocStr(wxStyledTextCtrl::RegisterImage,
381 "Register an image for use in autocompletion lists.", "");
382
383 DocStr(wxStyledTextCtrl::ClearRegisteredImages,
384 "Clear all the registered images.", "");
385
386 DocStr(wxStyledTextCtrl::AutoCompGetTypeSeparator,
387 "Retrieve the auto-completion list type-separator character.", "");
388
389 DocStr(wxStyledTextCtrl::AutoCompSetTypeSeparator,
390 "Change the type-separator character in the string setting up an auto-completion list.
391 Default is '?' but can be changed if items contain '?'.", "");
392
393 DocStr(wxStyledTextCtrl::SetIndent,
394 "Set the number of spaces used for one level of indentation.", "");
395
396 DocStr(wxStyledTextCtrl::GetIndent,
397 "Retrieve indentation size.", "");
398
399 DocStr(wxStyledTextCtrl::SetUseTabs,
400 "Indentation will only use space characters if useTabs is false, otherwise
401 it will use a combination of tabs and spaces.", "");
402
403 DocStr(wxStyledTextCtrl::GetUseTabs,
404 "Retrieve whether tabs will be used in indentation.", "");
405
406 DocStr(wxStyledTextCtrl::SetLineIndentation,
407 "Change the indentation of a line to a number of columns.", "");
408
409 DocStr(wxStyledTextCtrl::GetLineIndentation,
410 "Retrieve the number of columns that a line is indented.", "");
411
412 DocStr(wxStyledTextCtrl::GetLineIndentPosition,
413 "Retrieve the position before the first non indentation character on a line.", "");
414
415 DocStr(wxStyledTextCtrl::GetColumn,
416 "Retrieve the column number of a position, taking tab width into account.", "");
417
418 DocStr(wxStyledTextCtrl::SetUseHorizontalScrollBar,
419 "Show or hide the horizontal scroll bar.", "");
420
421 DocStr(wxStyledTextCtrl::GetUseHorizontalScrollBar,
422 "Is the horizontal scroll bar visible?", "");
423
424 DocStr(wxStyledTextCtrl::SetIndentationGuides,
425 "Show or hide indentation guides.", "");
426
427 DocStr(wxStyledTextCtrl::GetIndentationGuides,
428 "Are the indentation guides visible?", "");
429
430 DocStr(wxStyledTextCtrl::SetHighlightGuide,
431 "Set the highlighted indentation guide column.
432 0 = no highlighted guide.", "");
433
434 DocStr(wxStyledTextCtrl::GetHighlightGuide,
435 "Get the highlighted indentation guide column.", "");
436
437 DocStr(wxStyledTextCtrl::GetLineEndPosition,
438 "Get the position after the last visible characters on a line.", "");
439
440 DocStr(wxStyledTextCtrl::GetCodePage,
441 "Get the code page used to interpret the bytes of the document as characters.", "");
442
443 DocStr(wxStyledTextCtrl::GetCaretForeground,
444 "Get the foreground colour of the caret.", "");
445
446 DocStr(wxStyledTextCtrl::GetReadOnly,
447 "In read-only mode?", "");
448
449 DocStr(wxStyledTextCtrl::SetCurrentPos,
450 "Sets the position of the caret.", "");
451
452 DocStr(wxStyledTextCtrl::SetSelectionStart,
453 "Sets the position that starts the selection - this becomes the anchor.", "");
454
455 DocStr(wxStyledTextCtrl::GetSelectionStart,
456 "Returns the position at the start of the selection.", "");
457
458 DocStr(wxStyledTextCtrl::SetSelectionEnd,
459 "Sets the position that ends the selection - this becomes the currentPosition.", "");
460
461 DocStr(wxStyledTextCtrl::GetSelectionEnd,
462 "Returns the position at the end of the selection.", "");
463
464 DocStr(wxStyledTextCtrl::SetPrintMagnification,
465 "Sets the print magnification added to the point size of each style for printing.", "");
466
467 DocStr(wxStyledTextCtrl::GetPrintMagnification,
468 "Returns the print magnification.", "");
469
470 DocStr(wxStyledTextCtrl::SetPrintColourMode,
471 "Modify colours when printing for clearer printed text.", "");
472
473 DocStr(wxStyledTextCtrl::GetPrintColourMode,
474 "Returns the print colour mode.", "");
475
476 DocStr(wxStyledTextCtrl::FindText,
477 "Find some text in the document.", "");
478
479 DocStr(wxStyledTextCtrl::FormatRange,
480 "On Windows, will draw the document into a display context such as a printer.", "");
481
482 DocStr(wxStyledTextCtrl::GetFirstVisibleLine,
483 "Retrieve the display line at the top of the display.", "");
484
485 DocStr(wxStyledTextCtrl::GetLine,
486 "Retrieve the contents of a line.", "");
487
488 DocStr(wxStyledTextCtrl::GetLineCount,
489 "Returns the number of lines in the document. There is always at least one.", "");
490
491 DocStr(wxStyledTextCtrl::SetMarginLeft,
492 "Sets the size in pixels of the left margin.", "");
493
494 DocStr(wxStyledTextCtrl::GetMarginLeft,
495 "Returns the size in pixels of the left margin.", "");
496
497 DocStr(wxStyledTextCtrl::SetMarginRight,
498 "Sets the size in pixels of the right margin.", "");
499
500 DocStr(wxStyledTextCtrl::GetMarginRight,
501 "Returns the size in pixels of the right margin.", "");
502
503 DocStr(wxStyledTextCtrl::GetModify,
504 "Is the document different from when it was last saved?", "");
505
506 DocStr(wxStyledTextCtrl::SetSelection,
507 "Select a range of text.", "");
508
509 DocStr(wxStyledTextCtrl::GetSelectedText,
510 "Retrieve the selected text.", "");
511
512 DocStr(wxStyledTextCtrl::GetTextRange,
513 "Retrieve a range of text.", "");
514
515 DocStr(wxStyledTextCtrl::HideSelection,
516 "Draw the selection in normal style or with selection highlighted.", "");
517
518 DocStr(wxStyledTextCtrl::LineFromPosition,
519 "Retrieve the line containing a position.", "");
520
521 DocStr(wxStyledTextCtrl::PositionFromLine,
522 "Retrieve the position at the start of a line.", "");
523
524 DocStr(wxStyledTextCtrl::LineScroll,
525 "Scroll horizontally and vertically.", "");
526
527 DocStr(wxStyledTextCtrl::EnsureCaretVisible,
528 "Ensure the caret is visible.", "");
529
530 DocStr(wxStyledTextCtrl::ReplaceSelection,
531 "Replace the selected text with the argument text.", "");
532
533 DocStr(wxStyledTextCtrl::SetReadOnly,
534 "Set to read only or read write.", "");
535
536 DocStr(wxStyledTextCtrl::CanPaste,
537 "Will a paste succeed?", "");
538
539 DocStr(wxStyledTextCtrl::CanUndo,
540 "Are there any undoable actions in the undo history?", "");
541
542 DocStr(wxStyledTextCtrl::EmptyUndoBuffer,
543 "Delete the undo history.", "");
544
545 DocStr(wxStyledTextCtrl::Undo,
546 "Undo one action in the undo history.", "");
547
548 DocStr(wxStyledTextCtrl::Cut,
549 "Cut the selection to the clipboard.", "");
550
551 DocStr(wxStyledTextCtrl::Copy,
552 "Copy the selection to the clipboard.", "");
553
554 DocStr(wxStyledTextCtrl::Paste,
555 "Paste the contents of the clipboard into the document replacing the selection.", "");
556
557 DocStr(wxStyledTextCtrl::Clear,
558 "Clear the selection.", "");
559
560 DocStr(wxStyledTextCtrl::SetText,
561 "Replace the contents of the document with the argument text.", "");
562
563 DocStr(wxStyledTextCtrl::GetText,
564 "Retrieve all the text in the document.", "");
565
566 DocStr(wxStyledTextCtrl::GetTextLength,
567 "Retrieve the number of characters in the document.", "");
568
569 DocStr(wxStyledTextCtrl::SetOvertype,
570 "Set to overtype (true) or insert mode.", "");
571
572 DocStr(wxStyledTextCtrl::GetOvertype,
573 "Returns true if overtype mode is active otherwise false is returned.", "");
574
575 DocStr(wxStyledTextCtrl::SetCaretWidth,
576 "Set the width of the insert mode caret.", "");
577
578 DocStr(wxStyledTextCtrl::GetCaretWidth,
579 "Returns the width of the insert mode caret.", "");
580
581 DocStr(wxStyledTextCtrl::SetTargetStart,
582 "Sets the position that starts the target which is used for updating the
583 document without affecting the scroll position.", "");
584
585 DocStr(wxStyledTextCtrl::GetTargetStart,
586 "Get the position that starts the target.", "");
587
588 DocStr(wxStyledTextCtrl::SetTargetEnd,
589 "Sets the position that ends the target which is used for updating the
590 document without affecting the scroll position.", "");
591
592 DocStr(wxStyledTextCtrl::GetTargetEnd,
593 "Get the position that ends the target.", "");
594
595 DocStr(wxStyledTextCtrl::ReplaceTarget,
596 "Replace the target text with the argument text.
597 Text is counted so it can contain NULs.
598 Returns the length of the replacement text.", "");
599
600 DocStr(wxStyledTextCtrl::ReplaceTargetRE,
601 "Replace the target text with the argument text after \d processing.
602 Text is counted so it can contain NULs.
603 Looks for \d where d is between 1 and 9 and replaces these with the strings
604 matched in the last search operation which were surrounded by \( and \).
605 Returns the length of the replacement text including any change
606 caused by processing the \d patterns.", "");
607
608 DocStr(wxStyledTextCtrl::SearchInTarget,
609 "Search for a counted string in the target and set the target to the found
610 range. Text is counted so it can contain NULs.
611 Returns length of range or -1 for failure in which case target is not moved.", "");
612
613 DocStr(wxStyledTextCtrl::SetSearchFlags,
614 "Set the search flags used by SearchInTarget.", "");
615
616 DocStr(wxStyledTextCtrl::GetSearchFlags,
617 "Get the search flags used by SearchInTarget.", "");
618
619 DocStr(wxStyledTextCtrl::CallTipShow,
620 "Show a call tip containing a definition near position pos.", "");
621
622 DocStr(wxStyledTextCtrl::CallTipCancel,
623 "Remove the call tip from the screen.", "");
624
625 DocStr(wxStyledTextCtrl::CallTipActive,
626 "Is there an active call tip?", "");
627
628 DocStr(wxStyledTextCtrl::CallTipPosAtStart,
629 "Retrieve the position where the caret was before displaying the call tip.", "");
630
631 DocStr(wxStyledTextCtrl::CallTipSetHighlight,
632 "Highlight a segment of the definition.", "");
633
634 DocStr(wxStyledTextCtrl::CallTipSetBackground,
635 "Set the background colour for the call tip.", "");
636
637 DocStr(wxStyledTextCtrl::CallTipSetForeground,
638 "Set the foreground colour for the call tip.", "");
639
640 DocStr(wxStyledTextCtrl::CallTipSetForegroundHighlight,
641 "Set the foreground colour for the highlighted part of the call tip.", "");
642
643 DocStr(wxStyledTextCtrl::VisibleFromDocLine,
644 "Find the display line of a document line taking hidden lines into account.", "");
645
646 DocStr(wxStyledTextCtrl::DocLineFromVisible,
647 "Find the document line of a display line taking hidden lines into account.", "");
648
649 DocStr(wxStyledTextCtrl::SetFoldLevel,
650 "Set the fold level of a line.
651 This encodes an integer level along with flags indicating whether the
652 line is a header and whether it is effectively white space.", "");
653
654 DocStr(wxStyledTextCtrl::GetFoldLevel,
655 "Retrieve the fold level of a line.", "");
656
657 DocStr(wxStyledTextCtrl::GetLastChild,
658 "Find the last child line of a header line.", "");
659
660 DocStr(wxStyledTextCtrl::GetFoldParent,
661 "Find the parent line of a child line.", "");
662
663 DocStr(wxStyledTextCtrl::ShowLines,
664 "Make a range of lines visible.", "");
665
666 DocStr(wxStyledTextCtrl::HideLines,
667 "Make a range of lines invisible.", "");
668
669 DocStr(wxStyledTextCtrl::GetLineVisible,
670 "Is a line visible?", "");
671
672 DocStr(wxStyledTextCtrl::SetFoldExpanded,
673 "Show the children of a header line.", "");
674
675 DocStr(wxStyledTextCtrl::GetFoldExpanded,
676 "Is a header line expanded?", "");
677
678 DocStr(wxStyledTextCtrl::ToggleFold,
679 "Switch a header line between expanded and contracted.", "");
680
681 DocStr(wxStyledTextCtrl::EnsureVisible,
682 "Ensure a particular line is visible by expanding any header line hiding it.", "");
683
684 DocStr(wxStyledTextCtrl::SetFoldFlags,
685 "Set some style options for folding.", "");
686
687 DocStr(wxStyledTextCtrl::EnsureVisibleEnforcePolicy,
688 "Ensure a particular line is visible by expanding any header line hiding it.
689 Use the currently set visibility policy to determine which range to display.", "");
690
691 DocStr(wxStyledTextCtrl::SetTabIndents,
692 "Sets whether a tab pressed when caret is within indentation indents.", "");
693
694 DocStr(wxStyledTextCtrl::GetTabIndents,
695 "Does a tab pressed when caret is within indentation indent?", "");
696
697 DocStr(wxStyledTextCtrl::SetBackSpaceUnIndents,
698 "Sets whether a backspace pressed when caret is within indentation unindents.", "");
699
700 DocStr(wxStyledTextCtrl::GetBackSpaceUnIndents,
701 "Does a backspace pressed when caret is within indentation unindent?", "");
702
703 DocStr(wxStyledTextCtrl::SetMouseDwellTime,
704 "Sets the time the mouse must sit still to generate a mouse dwell event.", "");
705
706 DocStr(wxStyledTextCtrl::GetMouseDwellTime,
707 "Retrieve the time the mouse must sit still to generate a mouse dwell event.", "");
708
709 DocStr(wxStyledTextCtrl::WordStartPosition,
710 "Get position of start of word.", "");
711
712 DocStr(wxStyledTextCtrl::WordEndPosition,
713 "Get position of end of word.", "");
714
715 DocStr(wxStyledTextCtrl::SetWrapMode,
716 "Sets whether text is word wrapped.", "");
717
718 DocStr(wxStyledTextCtrl::GetWrapMode,
719 "Retrieve whether text is word wrapped.", "");
720
721 DocStr(wxStyledTextCtrl::SetWrapVisualFlags,
722 "Set the display mode of visual flags for wrapped lines.", "");
723
724 DocStr(wxStyledTextCtrl::GetWrapVisualFlags,
725 "Retrive the display mode of visual flags for wrapped lines.", "");
726
727 DocStr(wxStyledTextCtrl::SetWrapVisualFlagsLocation,
728 "Set the location of visual flags for wrapped lines.", "");
729
730 DocStr(wxStyledTextCtrl::GetWrapVisualFlagsLocation,
731 "Retrive the location of visual flags for wrapped lines.", "");
732
733 DocStr(wxStyledTextCtrl::SetWrapStartIndent,
734 "Set the start indent for wrapped lines.", "");
735
736 DocStr(wxStyledTextCtrl::GetWrapStartIndent,
737 "Retrive the start indent for wrapped lines.", "");
738
739 DocStr(wxStyledTextCtrl::SetLayoutCache,
740 "Sets the degree of caching of layout information.", "");
741
742 DocStr(wxStyledTextCtrl::GetLayoutCache,
743 "Retrieve the degree of caching of layout information.", "");
744
745 DocStr(wxStyledTextCtrl::SetScrollWidth,
746 "Sets the document width assumed for scrolling.", "");
747
748 DocStr(wxStyledTextCtrl::GetScrollWidth,
749 "Retrieve the document width assumed for scrolling.", "");
750
751 DocStr(wxStyledTextCtrl::TextWidth,
752 "Measure the pixel width of some text in a particular style.
753 NUL terminated text argument.
754 Does not handle tab or control characters.", "");
755
756 DocStr(wxStyledTextCtrl::SetEndAtLastLine,
757 "Sets the scroll range so that maximum scroll position has
758 the last line at the bottom of the view (default).
759 Setting this to false allows scrolling one page below the last line.", "");
760
761 DocStr(wxStyledTextCtrl::GetEndAtLastLine,
762 "Retrieve whether the maximum scroll position has the last
763 line at the bottom of the view.", "");
764
765 DocStr(wxStyledTextCtrl::TextHeight,
766 "Retrieve the height of a particular line of text in pixels.", "");
767
768 DocStr(wxStyledTextCtrl::SetUseVerticalScrollBar,
769 "Show or hide the vertical scroll bar.", "");
770
771 DocStr(wxStyledTextCtrl::GetUseVerticalScrollBar,
772 "Is the vertical scroll bar visible?", "");
773
774 DocStr(wxStyledTextCtrl::AppendText,
775 "Append a string to the end of the document without changing the selection.", "");
776
777 DocStr(wxStyledTextCtrl::GetTwoPhaseDraw,
778 "Is drawing done in two phases with backgrounds drawn before foregrounds?", "");
779
780 DocStr(wxStyledTextCtrl::SetTwoPhaseDraw,
781 "In twoPhaseDraw mode, drawing is performed in two phases, first the background
782 and then the foreground. This avoids chopping off characters that overlap the next run.", "");
783
784 DocStr(wxStyledTextCtrl::TargetFromSelection,
785 "Make the target range start and end be the same as the selection range start and end.", "");
786
787 DocStr(wxStyledTextCtrl::LinesJoin,
788 "Join the lines in the target.", "");
789
790 DocStr(wxStyledTextCtrl::LinesSplit,
791 "Split the lines in the target into lines that are less wide than pixelWidth
792 where possible.", "");
793
794 DocStr(wxStyledTextCtrl::SetFoldMarginColour,
795 "Set the colours used as a chequerboard pattern in the fold margin", "");
796
797 DocStr(wxStyledTextCtrl::SetFoldMarginHiColour,
798 "", "");
799
800 DocStr(wxStyledTextCtrl::LineDown,
801 "Move caret down one line.", "");
802
803 DocStr(wxStyledTextCtrl::LineDownExtend,
804 "Move caret down one line extending selection to new caret position.", "");
805
806 DocStr(wxStyledTextCtrl::LineUp,
807 "Move caret up one line.", "");
808
809 DocStr(wxStyledTextCtrl::LineUpExtend,
810 "Move caret up one line extending selection to new caret position.", "");
811
812 DocStr(wxStyledTextCtrl::CharLeft,
813 "Move caret left one character.", "");
814
815 DocStr(wxStyledTextCtrl::CharLeftExtend,
816 "Move caret left one character extending selection to new caret position.", "");
817
818 DocStr(wxStyledTextCtrl::CharRight,
819 "Move caret right one character.", "");
820
821 DocStr(wxStyledTextCtrl::CharRightExtend,
822 "Move caret right one character extending selection to new caret position.", "");
823
824 DocStr(wxStyledTextCtrl::WordLeft,
825 "Move caret left one word.", "");
826
827 DocStr(wxStyledTextCtrl::WordLeftExtend,
828 "Move caret left one word extending selection to new caret position.", "");
829
830 DocStr(wxStyledTextCtrl::WordRight,
831 "Move caret right one word.", "");
832
833 DocStr(wxStyledTextCtrl::WordRightExtend,
834 "Move caret right one word extending selection to new caret position.", "");
835
836 DocStr(wxStyledTextCtrl::Home,
837 "Move caret to first position on line.", "");
838
839 DocStr(wxStyledTextCtrl::HomeExtend,
840 "Move caret to first position on line extending selection to new caret position.", "");
841
842 DocStr(wxStyledTextCtrl::LineEnd,
843 "Move caret to last position on line.", "");
844
845 DocStr(wxStyledTextCtrl::LineEndExtend,
846 "Move caret to last position on line extending selection to new caret position.", "");
847
848 DocStr(wxStyledTextCtrl::DocumentStart,
849 "Move caret to first position in document.", "");
850
851 DocStr(wxStyledTextCtrl::DocumentStartExtend,
852 "Move caret to first position in document extending selection to new caret position.", "");
853
854 DocStr(wxStyledTextCtrl::DocumentEnd,
855 "Move caret to last position in document.", "");
856
857 DocStr(wxStyledTextCtrl::DocumentEndExtend,
858 "Move caret to last position in document extending selection to new caret position.", "");
859
860 DocStr(wxStyledTextCtrl::PageUp,
861 "Move caret one page up.", "");
862
863 DocStr(wxStyledTextCtrl::PageUpExtend,
864 "Move caret one page up extending selection to new caret position.", "");
865
866 DocStr(wxStyledTextCtrl::PageDown,
867 "Move caret one page down.", "");
868
869 DocStr(wxStyledTextCtrl::PageDownExtend,
870 "Move caret one page down extending selection to new caret position.", "");
871
872 DocStr(wxStyledTextCtrl::EditToggleOvertype,
873 "Switch from insert to overtype mode or the reverse.", "");
874
875 DocStr(wxStyledTextCtrl::Cancel,
876 "Cancel any modes such as call tip or auto-completion list display.", "");
877
878 DocStr(wxStyledTextCtrl::DeleteBack,
879 "Delete the selection or if no selection, the character before the caret.", "");
880
881 DocStr(wxStyledTextCtrl::Tab,
882 "If selection is empty or all on one line replace the selection with a tab character.
883 If more than one line selected, indent the lines.", "");
884
885 DocStr(wxStyledTextCtrl::BackTab,
886 "Dedent the selected lines.", "");
887
888 DocStr(wxStyledTextCtrl::NewLine,
889 "Insert a new line, may use a CRLF, CR or LF depending on EOL mode.", "");
890
891 DocStr(wxStyledTextCtrl::FormFeed,
892 "Insert a Form Feed character.", "");
893
894 DocStr(wxStyledTextCtrl::VCHome,
895 "Move caret to before first visible character on line.
896 If already there move to first character on line.", "");
897
898 DocStr(wxStyledTextCtrl::VCHomeExtend,
899 "Like VCHome but extending selection to new caret position.", "");
900
901 DocStr(wxStyledTextCtrl::ZoomIn,
902 "Magnify the displayed text by increasing the sizes by 1 point.", "");
903
904 DocStr(wxStyledTextCtrl::ZoomOut,
905 "Make the displayed text smaller by decreasing the sizes by 1 point.", "");
906
907 DocStr(wxStyledTextCtrl::DelWordLeft,
908 "Delete the word to the left of the caret.", "");
909
910 DocStr(wxStyledTextCtrl::DelWordRight,
911 "Delete the word to the right of the caret.", "");
912
913 DocStr(wxStyledTextCtrl::LineCut,
914 "Cut the line containing the caret.", "");
915
916 DocStr(wxStyledTextCtrl::LineDelete,
917 "Delete the line containing the caret.", "");
918
919 DocStr(wxStyledTextCtrl::LineTranspose,
920 "Switch the current line with the previous.", "");
921
922 DocStr(wxStyledTextCtrl::LineDuplicate,
923 "Duplicate the current line.", "");
924
925 DocStr(wxStyledTextCtrl::LowerCase,
926 "Transform the selection to lower case.", "");
927
928 DocStr(wxStyledTextCtrl::UpperCase,
929 "Transform the selection to upper case.", "");
930
931 DocStr(wxStyledTextCtrl::LineScrollDown,
932 "Scroll the document down, keeping the caret visible.", "");
933
934 DocStr(wxStyledTextCtrl::LineScrollUp,
935 "Scroll the document up, keeping the caret visible.", "");
936
937 DocStr(wxStyledTextCtrl::DeleteBackNotLine,
938 "Delete the selection or if no selection, the character before the caret.
939 Will not delete the character before at the start of a line.", "");
940
941 DocStr(wxStyledTextCtrl::HomeDisplay,
942 "Move caret to first position on display line.", "");
943
944 DocStr(wxStyledTextCtrl::HomeDisplayExtend,
945 "Move caret to first position on display line extending selection to
946 new caret position.", "");
947
948 DocStr(wxStyledTextCtrl::LineEndDisplay,
949 "Move caret to last position on display line.", "");
950
951 DocStr(wxStyledTextCtrl::LineEndDisplayExtend,
952 "Move caret to last position on display line extending selection to new
953 caret position.", "");
954
955 DocStr(wxStyledTextCtrl::HomeWrap,
956 "These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)?
957 except they behave differently when word-wrap is enabled:
958 They go first to the start / end of the display line, like (Home|LineEnd)Display
959 The difference is that, the cursor is already at the point, it goes on to the start
960 or end of the document line, as appropriate for (Home|LineEnd|VCHome)(Extend)?.", "");
961
962 DocStr(wxStyledTextCtrl::HomeWrapExtend,
963 "", "");
964
965 DocStr(wxStyledTextCtrl::LineEndWrap,
966 "", "");
967
968 DocStr(wxStyledTextCtrl::LineEndWrapExtend,
969 "", "");
970
971 DocStr(wxStyledTextCtrl::VCHomeWrap,
972 "", "");
973
974 DocStr(wxStyledTextCtrl::VCHomeWrapExtend,
975 "", "");
976
977 DocStr(wxStyledTextCtrl::LineCopy,
978 "Copy the line containing the caret.", "");
979
980 DocStr(wxStyledTextCtrl::MoveCaretInsideView,
981 "Move the caret inside current view if it's not there already.", "");
982
983 DocStr(wxStyledTextCtrl::LineLength,
984 "How many characters are on a line, not including end of line characters?", "");
985
986 DocStr(wxStyledTextCtrl::BraceHighlight,
987 "Highlight the characters at two positions.", "");
988
989 DocStr(wxStyledTextCtrl::BraceBadLight,
990 "Highlight the character at a position indicating there is no matching brace.", "");
991
992 DocStr(wxStyledTextCtrl::BraceMatch,
993 "Find the position of a matching brace or INVALID_POSITION if no match.", "");
994
995 DocStr(wxStyledTextCtrl::GetViewEOL,
996 "Are the end of line characters visible?", "");
997
998 DocStr(wxStyledTextCtrl::SetViewEOL,
999 "Make the end of line characters visible or invisible.", "");
1000
1001 DocStr(wxStyledTextCtrl::GetDocPointer,
1002 "Retrieve a pointer to the document object.", "");
1003
1004 DocStr(wxStyledTextCtrl::SetDocPointer,
1005 "Change the document object used.", "");
1006
1007 DocStr(wxStyledTextCtrl::SetModEventMask,
1008 "Set which document modification events are sent to the container.", "");
1009
1010 DocStr(wxStyledTextCtrl::GetEdgeColumn,
1011 "Retrieve the column number which text should be kept within.", "");
1012
1013 DocStr(wxStyledTextCtrl::SetEdgeColumn,
1014 "Set the column number of the edge.
1015 If text goes past the edge then it is highlighted.", "");
1016
1017 DocStr(wxStyledTextCtrl::GetEdgeMode,
1018 "Retrieve the edge highlight mode.", "");
1019
1020 DocStr(wxStyledTextCtrl::SetEdgeMode,
1021 "The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
1022 goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).", "");
1023
1024 DocStr(wxStyledTextCtrl::GetEdgeColour,
1025 "Retrieve the colour used in edge indication.", "");
1026
1027 DocStr(wxStyledTextCtrl::SetEdgeColour,
1028 "Change the colour used in edge indication.", "");
1029
1030 DocStr(wxStyledTextCtrl::SearchAnchor,
1031 "Sets the current caret position to be the search anchor.", "");
1032
1033 DocStr(wxStyledTextCtrl::SearchNext,
1034 "Find some text starting at the search anchor.
1035 Does not ensure the selection is visible.", "");
1036
1037 DocStr(wxStyledTextCtrl::SearchPrev,
1038 "Find some text starting at the search anchor and moving backwards.
1039 Does not ensure the selection is visible.", "");
1040
1041 DocStr(wxStyledTextCtrl::LinesOnScreen,
1042 "Retrieves the number of lines completely visible.", "");
1043
1044 DocStr(wxStyledTextCtrl::UsePopUp,
1045 "Set whether a pop up menu is displayed automatically when the user presses
1046 the wrong mouse button.", "");
1047
1048 DocStr(wxStyledTextCtrl::SelectionIsRectangle,
1049 "Is the selection rectangular? The alternative is the more common stream selection.", "");
1050
1051 DocStr(wxStyledTextCtrl::SetZoom,
1052 "Set the zoom level. This number of points is added to the size of all fonts.
1053 It may be positive to magnify or negative to reduce.", "");
1054
1055 DocStr(wxStyledTextCtrl::GetZoom,
1056 "Retrieve the zoom level.", "");
1057
1058 DocStr(wxStyledTextCtrl::CreateDocument,
1059 "Create a new document object.
1060 Starts with reference count of 1 and not selected into editor.", "");
1061
1062 DocStr(wxStyledTextCtrl::AddRefDocument,
1063 "Extend life of document.", "");
1064
1065 DocStr(wxStyledTextCtrl::ReleaseDocument,
1066 "Release a reference to the document, deleting document if it fades to black.", "");
1067
1068 DocStr(wxStyledTextCtrl::GetModEventMask,
1069 "Get which document modification events are sent to the container.", "");
1070
1071 DocStr(wxStyledTextCtrl::SetSTCFocus,
1072 "Change internal focus flag.", "");
1073
1074 DocStr(wxStyledTextCtrl::GetSTCFocus,
1075 "Get internal focus flag.", "");
1076
1077 DocStr(wxStyledTextCtrl::SetStatus,
1078 "Change error status - 0 = OK.", "");
1079
1080 DocStr(wxStyledTextCtrl::GetStatus,
1081 "Get error status.", "");
1082
1083 DocStr(wxStyledTextCtrl::SetMouseDownCaptures,
1084 "Set whether the mouse is captured when its button is pressed.", "");
1085
1086 DocStr(wxStyledTextCtrl::GetMouseDownCaptures,
1087 "Get whether mouse gets captured.", "");
1088
1089 DocStr(wxStyledTextCtrl::SetSTCCursor,
1090 "Sets the cursor to one of the SC_CURSOR* values.", "");
1091
1092 DocStr(wxStyledTextCtrl::GetSTCCursor,
1093 "Get cursor type.", "");
1094
1095 DocStr(wxStyledTextCtrl::SetControlCharSymbol,
1096 "Change the way control characters are displayed:
1097 If symbol is < 32, keep the drawn way, else, use the given character.", "");
1098
1099 DocStr(wxStyledTextCtrl::GetControlCharSymbol,
1100 "Get the way control characters are displayed.", "");
1101
1102 DocStr(wxStyledTextCtrl::WordPartLeft,
1103 "Move to the previous change in capitalisation.", "");
1104
1105 DocStr(wxStyledTextCtrl::WordPartLeftExtend,
1106 "Move to the previous change in capitalisation extending selection
1107 to new caret position.", "");
1108
1109 DocStr(wxStyledTextCtrl::WordPartRight,
1110 "Move to the change next in capitalisation.", "");
1111
1112 DocStr(wxStyledTextCtrl::WordPartRightExtend,
1113 "Move to the next change in capitalisation extending selection
1114 to new caret position.", "");
1115
1116 DocStr(wxStyledTextCtrl::SetVisiblePolicy,
1117 "Set the way the display area is determined when a particular line
1118 is to be moved to by Find, FindNext, GotoLine, etc.", "");
1119
1120 DocStr(wxStyledTextCtrl::DelLineLeft,
1121 "Delete back from the current position to the start of the line.", "");
1122
1123 DocStr(wxStyledTextCtrl::DelLineRight,
1124 "Delete forwards from the current position to the end of the line.", "");
1125
1126 DocStr(wxStyledTextCtrl::SetXOffset,
1127 "Get and Set the xOffset (ie, horizonal scroll position).", "");
1128
1129 DocStr(wxStyledTextCtrl::GetXOffset,
1130 "", "");
1131
1132 DocStr(wxStyledTextCtrl::ChooseCaretX,
1133 "Set the last x chosen value to be the caret x position.", "");
1134
1135 DocStr(wxStyledTextCtrl::SetXCaretPolicy,
1136 "Set the way the caret is kept visible when going sideway.
1137 The exclusion zone is given in pixels.", "");
1138
1139 DocStr(wxStyledTextCtrl::SetYCaretPolicy,
1140 "Set the way the line the caret is on is kept visible.
1141 The exclusion zone is given in lines.", "");
1142
1143 DocStr(wxStyledTextCtrl::SetPrintWrapMode,
1144 "Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).", "");
1145
1146 DocStr(wxStyledTextCtrl::GetPrintWrapMode,
1147 "Is printing line wrapped?", "");
1148
1149 DocStr(wxStyledTextCtrl::SetHotspotActiveForeground,
1150 "Set a fore colour for active hotspots.", "");
1151
1152 DocStr(wxStyledTextCtrl::SetHotspotActiveBackground,
1153 "Set a back colour for active hotspots.", "");
1154
1155 DocStr(wxStyledTextCtrl::SetHotspotActiveUnderline,
1156 "Enable / Disable underlining active hotspots.", "");
1157
1158 DocStr(wxStyledTextCtrl::SetHotspotSingleLine,
1159 "Limit hotspots to single line so hotspots on two lines don't merge.", "");
1160
1161 DocStr(wxStyledTextCtrl::ParaDown,
1162 "Move caret between paragraphs (delimited by empty lines).", "");
1163
1164 DocStr(wxStyledTextCtrl::ParaDownExtend,
1165 "", "");
1166
1167 DocStr(wxStyledTextCtrl::ParaUp,
1168 "", "");
1169
1170 DocStr(wxStyledTextCtrl::ParaUpExtend,
1171 "", "");
1172
1173 DocStr(wxStyledTextCtrl::PositionBefore,
1174 "Given a valid document position, return the previous position taking code
1175 page into account. Returns 0 if passed 0.", "");
1176
1177 DocStr(wxStyledTextCtrl::PositionAfter,
1178 "Given a valid document position, return the next position taking code
1179 page into account. Maximum value returned is the last position in the document.", "");
1180
1181 DocStr(wxStyledTextCtrl::CopyRange,
1182 "Copy a range of text to the clipboard. Positions are clipped into the document.", "");
1183
1184 DocStr(wxStyledTextCtrl::CopyText,
1185 "Copy argument text to the clipboard.", "");
1186
1187 DocStr(wxStyledTextCtrl::SetSelectionMode,
1188 "Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE) or
1189 by lines (SC_SEL_LINES).", "");
1190
1191 DocStr(wxStyledTextCtrl::GetSelectionMode,
1192 "Get the mode of the current selection.", "");
1193
1194 DocStr(wxStyledTextCtrl::GetLineSelStartPosition,
1195 "Retrieve the position of the start of the selection at the given line (INVALID_POSITION if no selection on this line).", "");
1196
1197 DocStr(wxStyledTextCtrl::GetLineSelEndPosition,
1198 "Retrieve the position of the end of the selection at the given line (INVALID_POSITION if no selection on this line).", "");
1199
1200 DocStr(wxStyledTextCtrl::LineDownRectExtend,
1201 "Move caret down one line, extending rectangular selection to new caret position.", "");
1202
1203 DocStr(wxStyledTextCtrl::LineUpRectExtend,
1204 "Move caret up one line, extending rectangular selection to new caret position.", "");
1205
1206 DocStr(wxStyledTextCtrl::CharLeftRectExtend,
1207 "Move caret left one character, extending rectangular selection to new caret position.", "");
1208
1209 DocStr(wxStyledTextCtrl::CharRightRectExtend,
1210 "Move caret right one character, extending rectangular selection to new caret position.", "");
1211
1212 DocStr(wxStyledTextCtrl::HomeRectExtend,
1213 "Move caret to first position on line, extending rectangular selection to new caret position.", "");
1214
1215 DocStr(wxStyledTextCtrl::VCHomeRectExtend,
1216 "Move caret to before first visible character on line.
1217 If already there move to first character on line.
1218 In either case, extend rectangular selection to new caret position.", "");
1219
1220 DocStr(wxStyledTextCtrl::LineEndRectExtend,
1221 "Move caret to last position on line, extending rectangular selection to new caret position.", "");
1222
1223 DocStr(wxStyledTextCtrl::PageUpRectExtend,
1224 "Move caret one page up, extending rectangular selection to new caret position.", "");
1225
1226 DocStr(wxStyledTextCtrl::PageDownRectExtend,
1227 "Move caret one page down, extending rectangular selection to new caret position.", "");
1228
1229 DocStr(wxStyledTextCtrl::StutteredPageUp,
1230 "Move caret to top of page, or one page up if already at top of page.", "");
1231
1232 DocStr(wxStyledTextCtrl::StutteredPageUpExtend,
1233 "Move caret to top of page, or one page up if already at top of page, extending selection to new caret position.", "");
1234
1235 DocStr(wxStyledTextCtrl::StutteredPageDown,
1236 "Move caret to bottom of page, or one page down if already at bottom of page.", "");
1237
1238 DocStr(wxStyledTextCtrl::StutteredPageDownExtend,
1239 "Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position.", "");
1240
1241 DocStr(wxStyledTextCtrl::WordLeftEnd,
1242 "Move caret left one word, position cursor at end of word.", "");
1243
1244 DocStr(wxStyledTextCtrl::WordLeftEndExtend,
1245 "Move caret left one word, position cursor at end of word, extending selection to new caret position.", "");
1246
1247 DocStr(wxStyledTextCtrl::WordRightEnd,
1248 "Move caret right one word, position cursor at end of word.", "");
1249
1250 DocStr(wxStyledTextCtrl::WordRightEndExtend,
1251 "Move caret right one word, position cursor at end of word, extending selection to new caret position.", "");
1252
1253 DocStr(wxStyledTextCtrl::SetWhitespaceChars,
1254 "Set the set of characters making up whitespace for when moving or selecting by word.
1255 Should be called after SetWordChars.", "");
1256
1257 DocStr(wxStyledTextCtrl::SetCharsDefault,
1258 "Reset the set of characters for whitespace and word characters to the defaults.", "");
1259
1260 DocStr(wxStyledTextCtrl::AutoCompGetCurrent,
1261 "Get currently selected item position in the auto-completion list", "");
1262
1263 DocStr(wxStyledTextCtrl::Allocate,
1264 "Enlarge the document to a particular size of text bytes.", "");
1265
1266 DocStr(wxStyledTextCtrl::FindColumn,
1267 "Find the position of a column on a line taking into account tabs and
1268 multi-byte characters. If beyond end of line, return line end position.", "");
1269
1270 DocStr(wxStyledTextCtrl::StartRecord,
1271 "Start notifying the container of all key presses and commands.", "");
1272
1273 DocStr(wxStyledTextCtrl::StopRecord,
1274 "Stop notifying the container of all key presses and commands.", "");
1275
1276 DocStr(wxStyledTextCtrl::SetLexer,
1277 "Set the lexing language of the document.", "");
1278
1279 DocStr(wxStyledTextCtrl::GetLexer,
1280 "Retrieve the lexing language of the document.", "");
1281
1282 DocStr(wxStyledTextCtrl::Colourise,
1283 "Colourise a segment of the document using the current lexing language.", "");
1284
1285 DocStr(wxStyledTextCtrl::SetProperty,
1286 "Set up a value that may be used by a lexer for some optional feature.", "");
1287
1288 DocStr(wxStyledTextCtrl::SetKeyWords,
1289 "Set up the key words used by the lexer.", "");
1290
1291 DocStr(wxStyledTextCtrl::SetLexerLanguage,
1292 "Set the lexing language of the document based on string name.", "");