X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f2ccce28add4d71f5b2a7456d60c08e1d3b45abf..b4eecebd423df0c6efe86d7658cd3df818d67ed8:/wxPython/contrib/stc/_stc_gendocs.i?ds=sidebyside diff --git a/wxPython/contrib/stc/_stc_gendocs.i b/wxPython/contrib/stc/_stc_gendocs.i index 0678e44e11..e109b07ddf 100644 --- a/wxPython/contrib/stc/_stc_gendocs.i +++ b/wxPython/contrib/stc/_stc_gendocs.i @@ -152,6 +152,12 @@ DocStr(wxStyledTextCtrl::MarkerPrevious, DocStr(wxStyledTextCtrl::MarkerDefineBitmap, "Define a marker from a bitmap", ""); +DocStr(wxStyledTextCtrl::MarkerAddSet, +"Add a set of markers to a line.", ""); + +DocStr(wxStyledTextCtrl::MarkerSetAlpha, +"Set the alpha used for a marker that is drawn in the text area, not the margin.", ""); + DocStr(wxStyledTextCtrl::SetMarginType, "Set a margin to be either numeric or symbolic.", ""); @@ -209,9 +215,6 @@ DocStr(wxStyledTextCtrl::StyleSetUnderline, DocStr(wxStyledTextCtrl::StyleSetCase, "Set a style to be mixed case, or to force upper or lower case.", ""); -DocStr(wxStyledTextCtrl::StyleSetCharacterSet, -"Set the character set of the font in a style.", ""); - DocStr(wxStyledTextCtrl::StyleSetHotSpot, "Set a style to be a hotspot or not.", ""); @@ -221,6 +224,12 @@ DocStr(wxStyledTextCtrl::SetSelForeground, DocStr(wxStyledTextCtrl::SetSelBackground, "Set the background colour of the selection and whether to use this setting.", ""); +DocStr(wxStyledTextCtrl::GetSelAlpha, +"Get the alpha of the selection.", ""); + +DocStr(wxStyledTextCtrl::SetSelAlpha, +"Set the alpha of the selection.", ""); + DocStr(wxStyledTextCtrl::SetCaretForeground, "Set the foreground colour of the caret.", ""); @@ -297,10 +306,10 @@ DocStr(wxStyledTextCtrl::GetCaretLineVisible, DocStr(wxStyledTextCtrl::SetCaretLineVisible, "Display the background of the line containing the caret in a different colour.", ""); -DocStr(wxStyledTextCtrl::GetCaretLineBack, +DocStr(wxStyledTextCtrl::GetCaretLineBackground, "Get the colour of the background of the line containing the caret.", ""); -DocStr(wxStyledTextCtrl::SetCaretLineBack, +DocStr(wxStyledTextCtrl::SetCaretLineBackground, "Set the colour of the background of the line containing the caret.", ""); DocStr(wxStyledTextCtrl::StyleSetChangeable, @@ -390,6 +399,20 @@ DocStr(wxStyledTextCtrl::AutoCompSetTypeSeparator, "Change the type-separator character in the string setting up an auto-completion list. Default is '?' but can be changed if items contain '?'.", ""); +DocStr(wxStyledTextCtrl::AutoCompSetMaxWidth, +"Set the maximum width, in characters, of auto-completion and user lists. +Set to 0 to autosize to fit longest item, which is the default.", ""); + +DocStr(wxStyledTextCtrl::AutoCompGetMaxWidth, +"Get the maximum width, in characters, of auto-completion and user lists.", ""); + +DocStr(wxStyledTextCtrl::AutoCompSetMaxHeight, +"Set the maximum height, in rows, of auto-completion and user lists. +The default is 5 rows.", ""); + +DocStr(wxStyledTextCtrl::AutoCompGetMaxHeight, +"Set the maximum height, in rows, of auto-completion and user lists.", ""); + DocStr(wxStyledTextCtrl::SetIndent, "Set the number of spaces used for one level of indentation.", ""); @@ -640,12 +663,18 @@ DocStr(wxStyledTextCtrl::CallTipSetForeground, DocStr(wxStyledTextCtrl::CallTipSetForegroundHighlight, "Set the foreground colour for the highlighted part of the call tip.", ""); +DocStr(wxStyledTextCtrl::CallTipUseStyle, +"Enable use of STYLE_CALLTIP and set call tip tab size in pixels.", ""); + DocStr(wxStyledTextCtrl::VisibleFromDocLine, "Find the display line of a document line taking hidden lines into account.", ""); DocStr(wxStyledTextCtrl::DocLineFromVisible, "Find the document line of a display line taking hidden lines into account.", ""); +DocStr(wxStyledTextCtrl::WrapCount, +"The number of display lines needed to wrap a document line", ""); + DocStr(wxStyledTextCtrl::SetFoldLevel, "Set the fold level of a line. This encodes an integer level along with flags indicating whether the @@ -1264,9 +1293,33 @@ DocStr(wxStyledTextCtrl::Allocate, "Enlarge the document to a particular size of text bytes.", ""); DocStr(wxStyledTextCtrl::FindColumn, -"Find the position of a column on a line taking into account tabs and +"Find the position of a column on a line taking into account tabs and multi-byte characters. If beyond end of line, return line end position.", ""); +DocStr(wxStyledTextCtrl::GetCaretSticky, +"Can the caret preferred x position only be changed by explicit movement commands?", ""); + +DocStr(wxStyledTextCtrl::SetCaretSticky, +"Stop the caret preferred x position changing when the user types.", ""); + +DocStr(wxStyledTextCtrl::ToggleCaretSticky, +"Switch between sticky and non-sticky: meant to be bound to a key.", ""); + +DocStr(wxStyledTextCtrl::SetPasteConvertEndings, +"Enable/Disable convert-on-paste for line endings", ""); + +DocStr(wxStyledTextCtrl::GetPasteConvertEndings, +"Get convert-on-paste setting", ""); + +DocStr(wxStyledTextCtrl::SelectionDuplicate, +"Duplicate the selection. If selection empty duplicate the line containing the caret.", ""); + +DocStr(wxStyledTextCtrl::SetCaretLineBackAlpha, +"Set background alpha of the caret line.", ""); + +DocStr(wxStyledTextCtrl::GetCaretLineBackAlpha, +"Get the background alpha of the caret line.", ""); + DocStr(wxStyledTextCtrl::StartRecord, "Start notifying the container of all key presses and commands.", ""); @@ -1290,3 +1343,17 @@ DocStr(wxStyledTextCtrl::SetKeyWords, DocStr(wxStyledTextCtrl::SetLexerLanguage, "Set the lexing language of the document based on string name.", ""); + +DocStr(wxStyledTextCtrl::GetProperty, +"Retrieve a 'property' value previously set with SetProperty.", ""); + +DocStr(wxStyledTextCtrl::GetPropertyExpanded, +"Retrieve a 'property' value previously set with SetProperty, +with '$()' variable replacement on returned buffer.", ""); + +DocStr(wxStyledTextCtrl::GetPropertyInt, +"Retrieve a 'property' value previously set with SetProperty, +interpreted as an int AFTER any '$()' variable replacement.", ""); + +DocStr(wxStyledTextCtrl::GetStyleBitsNeeded, +"Retrieve the number of bits the current lexer needs for styling.", "");