Last active
July 9, 2024 19:22
-
-
Save tooruu/0d276866d4df500c5a21e2b8d773541f to your computer and use it in GitHub Desktop.
Notepad++ PythonScript type stubs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ruff: noqa: N802, N803, A002 | |
import re | |
from collections.abc import Callable | |
from enum import IntEnum, IntFlag | |
from typing import ClassVar, Literal, overload | |
from _typeshed import SupportsWrite | |
type _SearchCallback = Callable[[NppReMatch], None] | |
type _ReplaceCallback = Callable[[NppReMatch], _Text] | _Text | |
type _NotificationCallback = Callable[[dict], None] | |
type _Text = object # Has to be bound for __str__() call to work. | |
type _Color = tuple[int, int, int] | |
type _IntOr[T] = int | T | |
type _View = Literal[0, 1] | |
type _Margin = Literal[0, 1, 3, 4] | |
console: Console | |
editor: Editor | |
editor1: Editor | |
editor2: Editor | |
notepad: Notepad | |
class NppReMatch: | |
@property | |
def lastindex(self, /) -> int | None: ... | |
def expand(self, template: str, /) -> str: ... | |
@overload | |
def group(self, group: str | int = 0, /) -> str: ... | |
@overload | |
def group( | |
self, group1: str | int, group2: str | int, /, *groups: str | int | |
) -> tuple[str | None, ...]: ... | |
def groups(self, /) -> tuple[str, ...]: ... | |
def start(self, group: int | str = 0, /) -> int: ... | |
def end(self, group: int | str = 0, /) -> int: ... | |
def span(self, group: int | str = 0, /) -> tuple[int, int]: ... | |
class Console(SupportsWrite[_Text]): | |
@property | |
def hwnd(self, /) -> int: ... | |
@property | |
def editor(self, /) -> Editor: ... | |
def write(self, string: _Text, /) -> None: ... | |
def writeError(self, string: _Text, /) -> None: ... | |
def clear(self, /) -> None: ... | |
def show(self, /) -> None: ... | |
def hide(self, /) -> None: ... | |
def run( | |
self, | |
commandLine: str, | |
stdout: SupportsWrite[_Text] = ..., | |
stderr: SupportsWrite[_Text] = ..., | |
/, | |
) -> None: ... | |
class Notepad: | |
@property | |
def hwnd(self, /) -> int: ... | |
def activateBufferID(self, bufferID: int, /) -> None: ... | |
def activateFile(self, filename: str, /) -> bool: ... | |
def activateIndex(self, view: _View, index: int, /) -> None: ... | |
def allocateCmdID(self, numberRequested: int, /) -> int: ... | |
def allocateMarker(self, numberRequested: int, /) -> bool: ... | |
def allocateIndicator(self, numberRequested: int, /) -> bool: ... | |
def allocateSupported(self, /) -> bool: ... | |
def callback( | |
self, function: _NotificationCallback, notifications: list[_IntOr[NOTIFICATION]], / | |
) -> bool: ... | |
@overload | |
def clearCallbacks(self, /) -> None: ... | |
@overload | |
def clearCallbacks(self, function: _NotificationCallback, /) -> None: ... | |
@overload | |
def clearCallbacks(self, eventsList: list[_IntOr[NOTIFICATION]], /) -> None: ... | |
@overload | |
def clearCallbacks( | |
self, function: _NotificationCallback, eventsList: list[_IntOr[NOTIFICATION]], / | |
) -> None: ... | |
def close(self, /) -> None: ... | |
def closeAll(self, /) -> None: ... | |
def closeAllButCurrent(self, /) -> None: ... | |
def createScintilla(self, /) -> Editor: ... | |
def decodeSci(self, view: _View, /) -> int: ... | |
def destroyScintilla(self, editor: Editor, /) -> None: ... | |
def disableAutoUpdate(self, /) -> None: ... | |
def docSwitcherDisableExtColumn(self, boolean: bool, /) -> None: ... | |
def encodeSci(self, view: _View, /) -> int: ... | |
def flashWindow(self, count: int, milliseconds: int, /) -> None: ... | |
def getAppdataPluginsAllowed(self, /) -> bool: ... | |
def getBookMarkID(self, /) -> int: ... | |
def getBufferFilename(self, bufferID: int, /) -> str: ... | |
def getCommandLine(self, /) -> str: ... | |
def getCurrentBufferID(self, /) -> int: ... | |
def getCurrentDocIndex(self, view: _View, /) -> int: ... | |
def getCurrentFilename(self, /) -> str: ... | |
def getCurrentLang(self, /) -> LANGTYPE: ... | |
def getCurrentNativeLangEncoding(self, /) -> int: ... | |
def getCurrentView(self, /) -> int: ... | |
def getEditorDefaultBackgroundColor(self, /) -> _Color: ... | |
def getEditorDefaultForegroundColor(self, /) -> _Color: ... | |
def getEnableThemeTextureFunc(self, /) -> bool: ... | |
def getEncoding(self, bufferID: int = ..., /) -> BUFFERENCODING: ... | |
def getFiles(self, /) -> list: ... | |
def getFormatType(self, bufferID: int = ..., /) -> FORMATTYPE: ... | |
def getLanguageDesc(self, langType: _IntOr[LANGTYPE], /) -> str: ... | |
def getLanguageName(self, langType: _IntOr[LANGTYPE], /) -> str: ... | |
def getLangType(self, bufferID: int = ..., /) -> LANGTYPE: ... | |
def getNppDir(self, /) -> str: ... | |
def getMenuHandle(self, menu: Literal[0, 1], /) -> int: ... | |
def getNbUserLang(self, /) -> int: ... | |
def getPluginConfigDir(self, /) -> str: ... | |
def getPluginMenuHandle(self, /) -> int: ... | |
def getPluginVersion(self, /) -> str: ... | |
def getSessionFiles(self, sessionFileName: str, /) -> list[str]: ... | |
def getVersion(self, /) -> tuple[int, int, int]: ... | |
def getWindowsVersion(self, /) -> WINVER: ... | |
def hideMenu(self, boolean: bool, /) -> bool: ... | |
def hideStatusBar(self, boolean: bool, /) -> bool: ... | |
def hideTabBar(self, /) -> bool: ... | |
def hideToolBar(self, boolean: bool, /) -> bool: ... | |
def isDarkModeEnabled(self, /) -> bool: ... | |
def isDocSwitcherShown(self, /) -> bool: ... | |
def isMenuHidden(self, /) -> bool: ... | |
def isSingleView(self, /) -> bool: ... | |
def isStatusBarHidden(self, /) -> bool: ... | |
def isTabBarHidden(self, /) -> bool: ... | |
def isToolBarHidden(self, /) -> bool: ... | |
def launchFindInFilesDlg(self, dir2Search: str, filter: str, /) -> None: ... | |
def loadSession(self, sessionFileName: str, /) -> None: ... | |
def makeCurrentBufferDirty(self, /) -> bool: ... | |
def menuCommand(self, menuCommand: _IntOr[MENUCOMMAND], /) -> None: ... | |
def messageBox( | |
self, | |
message: str, | |
title: str = "Python Script for Notepad++", | |
flags: _IntOr[MESSAGEBOXFLAGS] = 0, | |
/, | |
) -> MESSAGEBOXFLAGS: ... | |
def new(self, /) -> None: ... | |
def open(self, filename: str, /) -> None: ... | |
def prompt(self, prompt: _Text, title: _Text, defaultText: _Text = None, /) -> str: ... | |
def reloadBuffer(self, bufferID: int, /) -> None: ... | |
def reloadCurrentDocument(self, /) -> None: ... | |
def reloadFile(self, filename: str, alertUser: bool, /) -> bool: ... | |
def runMenuCommand( | |
self, menuName: str, menuOption: str, refreshCache: bool = False, / | |
) -> bool: ... | |
def runPluginCommand( | |
self, pluginName: str, menuOption: str, refreshCache: bool = False, / | |
) -> bool: ... | |
def save(self, /) -> bool: ... | |
def saveAllFiles(self, /) -> bool: ... | |
def saveAs(self, filename: str, /) -> bool: ... | |
def saveAsCopy(self, filename: str, /) -> bool: ... | |
def saveFile(self, filename: str, /) -> bool: ... | |
def saveCurrentSession(self, filename: str, /) -> None: ... | |
def saveSession(self, filename: str, filesList: list[str], /) -> None: ... | |
def setCurrentLang(self, langType: _IntOr[LANGTYPE], /) -> None: ... | |
def setEditorBorderEdge(self, boolean: bool, /) -> None: ... | |
def setEncoding(self, encoding: _Text, bufferID: int = ..., /) -> None: ... | |
def setFormatType(self, formatType: _IntOr[FORMATTYPE], bufferID: int = ..., /) -> None: ... | |
def setLangType(self, langType: _IntOr[LANGTYPE], bufferID: int = ..., /) -> None: ... | |
def setSmoothFont(self, boolean: bool, /) -> None: ... | |
def setStatusBar(self, statusBarSection: _IntOr[STATUSBARSECTION], text: str, /) -> None: ... | |
def showDocSwitcher(self, boolean: bool, /) -> None: ... | |
def showTabBar(self, /) -> bool: ... | |
def triggerTabbarContextMenu(self, view: _View, index2Activate: int, /) -> None: ... | |
class Editor(SupportsWrite[_Text]): | |
WHOLEDOC: ClassVar[int] | |
def __getattr__(self, line: int) -> str: ... | |
def __len__(self, /) -> int: ... | |
@property | |
def hwnd(self, /) -> int: ... | |
def getCharacterPointer(self, /) -> str: ... | |
def addText(self, text: _Text, /) -> int: ... | |
def addStyledText(self, c: str, /) -> int: ... | |
def insertText(self, pos: int, text: _Text, /) -> None: ... | |
def changeInsertion(self, text: _Text, /) -> int: ... | |
def clearAll(self, /) -> None: ... | |
def deleteRange(self, start: int, lengthDelete: int, /) -> None: ... | |
def clearDocumentStyle(self, /) -> None: ... | |
def getLength(self, /) -> int: ... | |
def getCharAt(self, pos: int, /) -> int: ... | |
def getCurrentPos(self, /) -> int: ... | |
def getAnchor(self, /) -> int: ... | |
def getStyleAt(self, pos: int, /) -> int: ... | |
def getStyleIndexAt(self, pos: int, /) -> int: ... | |
def redo(self, /) -> None: ... | |
def setUndoCollection(self, collectUndo: bool, /) -> None: ... | |
def selectAll(self, /) -> None: ... | |
def setSavePoint(self, /) -> None: ... | |
def getStyledText(self, start: int, end: int, /) -> tuple[str, list[int]]: ... | |
def getStyledTextFull(self, start: int, end: int, /) -> tuple[str, list[int]]: ... | |
def canRedo(self, /) -> bool: ... | |
def markerLineFromHandle(self, markerHandle: int, /) -> int: ... | |
def markerDeleteHandle(self, markerHandle: int, /) -> None: ... | |
def markerHandleFromLine(self, line: int, which: int, /) -> int: ... | |
def markerNumberFromLine(self, line: int, which: int, /) -> int: ... | |
def getUndoCollection(self, /) -> bool: ... | |
def getViewWS(self, /) -> int: ... | |
def setViewWS(self, viewWS: _IntOr[WHITESPACE], /) -> None: ... | |
def getTabDrawMode(self, /) -> int: ... | |
def setTabDrawMode(self, tabDrawMode: _IntOr[TABDRAWMODE], /) -> None: ... | |
def positionFromPoint(self, x: int, y: int, /) -> int: ... | |
def positionFromPointClose(self, x: int, y: int, /) -> int: ... | |
def gotoLine(self, line: int, /) -> None: ... | |
def gotoPos(self, caret: int, /) -> None: ... | |
def setAnchor(self, anchor: int, /) -> None: ... | |
def getCurLine(self, /) -> str: ... | |
def getEndStyled(self, /) -> int: ... | |
def convertEOLs(self, eolMode: _IntOr[ENDOFLINE], /) -> None: ... | |
def getEOLMode(self, /) -> int: ... | |
def setEOLMode(self, eolMode: _IntOr[ENDOFLINE], /) -> None: ... | |
def startStyling(self, start: int, unused: int, /) -> None: ... | |
def setStyling(self, length: int, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def getBufferedDraw(self, /) -> bool: ... | |
def setBufferedDraw(self, buffered: bool, /) -> None: ... | |
def setTabWidth(self, tabWidth: int, /) -> None: ... | |
def getTabWidth(self, /) -> int: ... | |
def setTabMinimumWidth(self, pixels: int, /) -> None: ... | |
def getTabMinimumWidth(self, /) -> int: ... | |
def clearTabStops(self, line: int, /) -> None: ... | |
def addTabStop(self, line: int, x: int, /) -> None: ... | |
def getNextTabStop(self, line: int, x: int, /) -> int: ... | |
def setCodePage(self, codePage: int, /) -> None: ... | |
def setFontLocale(self, localeName: _Text, /) -> None: ... | |
def getFontLocale(self, /) -> str: ... | |
def getIMEInteraction(self, /) -> int: ... | |
def setIMEInteraction(self, imeInteraction: _IntOr[IMEINTERACTION], /) -> None: ... | |
def markerDefine(self, markerNumber: int, markerSymbol: _IntOr[MARKERSYMBOL], /) -> None: ... | |
def markerSetFore(self, markerNumber: int, fore: _Color, /) -> None: ... | |
def markerSetBack(self, markerNumber: int, back: _Color, /) -> None: ... | |
def markerSetBackSelected(self, markerNumber: int, back: _Color, /) -> None: ... | |
def markerSetForeTranslucent(self, markerNumber: int, fore: _Color, /) -> None: ... | |
def markerSetBackTranslucent(self, markerNumber: int, back: _Color, /) -> None: ... | |
def markerSetBackSelectedTranslucent(self, markerNumber: int, back: _Color, /) -> None: ... | |
def markerSetStrokeWidth(self, markerNumber: int, hundredths: int, /) -> None: ... | |
def markerEnableHighlight(self, enabled: bool, /) -> None: ... | |
def markerAdd(self, line: int, markerNumber: int, /) -> int: ... | |
def markerDelete(self, line: int, markerNumber: int, /) -> None: ... | |
def markerDeleteAll(self, markerNumber: int, /) -> None: ... | |
def markerGet(self, line: int, /) -> int: ... | |
def markerNext(self, lineStart: int, markerMask: _IntOr[MARKERSYMBOL], /) -> int: ... | |
def markerPrevious(self, lineStart: int, markerMask: _IntOr[MARKERSYMBOL], /) -> int: ... | |
def markerDefinePixmap(self, markerNumber: int, pixmap: _Text, /) -> None: ... | |
def markerAddSet(self, line: int, markerSet: int, /) -> None: ... | |
def markerSetAlpha(self, markerNumber: int, alpha: _IntOr[ALPHA], /) -> None: ... | |
def markerGetLayer(self, markerNumber: int, /) -> int: ... | |
def markerSetLayer(self, markerNumber: int, layer: int, /) -> None: ... | |
def setMarginTypeN(self, margin: _Margin, marginType: _IntOr[MARGINTYPE], /) -> None: ... | |
def getMarginTypeN(self, margin: _Margin, /) -> int: ... | |
def setMarginWidthN(self, margin: _Margin, pixelWidth: int, /) -> None: ... | |
def getMarginWidthN(self, margin: _Margin, /) -> int: ... | |
def setMarginMaskN(self, margin: _Margin, mask: _IntOr[MARKERSYMBOL], /) -> None: ... | |
def getMarginMaskN(self, margin: _Margin, /) -> int: ... | |
def setMarginSensitiveN(self, margin: _Margin, sensitive: bool, /) -> None: ... | |
def getMarginSensitiveN(self, margin: _Margin, /) -> bool: ... | |
def setMarginCursorN(self, margin: _Margin, cursor: _IntOr[CURSORSHAPE], /) -> None: ... | |
def getMarginCursorN(self, margin: _Margin, /) -> int: ... | |
def setMarginBackN(self, margin: _Margin, back: _Color, /) -> None: ... | |
def getMarginBackN(self, margin: _Margin, /) -> _Color: ... | |
def setMargins(self, margins: int, /) -> None: ... | |
def getMargins(self, /) -> int: ... | |
def styleClearAll(self, /) -> None: ... | |
def styleSetFore(self, style: _IntOr[STYLESCOMMON], fore: _Color, /) -> None: ... | |
def styleSetBack(self, style: _IntOr[STYLESCOMMON], back: _Color, /) -> None: ... | |
def styleSetBold(self, style: _IntOr[STYLESCOMMON], bold: bool, /) -> None: ... | |
def styleSetItalic(self, style: _IntOr[STYLESCOMMON], italic: bool, /) -> None: ... | |
def styleSetSize(self, style: _IntOr[STYLESCOMMON], sizePoints: int, /) -> None: ... | |
def styleSetFont(self, style: _IntOr[STYLESCOMMON], fontName: _Text, /) -> None: ... | |
def styleSetEOLFilled(self, style: _IntOr[STYLESCOMMON], eolFilled: bool, /) -> None: ... | |
def styleResetDefault(self, /) -> None: ... | |
def styleSetUnderline(self, style: _IntOr[STYLESCOMMON], underline: bool, /) -> None: ... | |
def styleGetFore(self, style: _IntOr[STYLESCOMMON], /) -> _Color: ... | |
def styleGetBack(self, style: _IntOr[STYLESCOMMON], /) -> _Color: ... | |
def styleGetBold(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleGetItalic(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleGetSize(self, style: _IntOr[STYLESCOMMON], /) -> int: ... | |
def styleGetFont(self, style: _IntOr[STYLESCOMMON], /) -> str: ... | |
def styleGetEOLFilled(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleGetUnderline(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleGetCase(self, style: _IntOr[STYLESCOMMON], /) -> int: ... | |
def styleGetCharacterSet(self, style: _IntOr[STYLESCOMMON], /) -> int: ... | |
def styleGetVisible(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleGetChangeable(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleGetHotSpot(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleSetCase( | |
self, style: _IntOr[STYLESCOMMON], caseVisible: _IntOr[CASEVISIBLE], / | |
) -> None: ... | |
def styleSetSizeFractional( | |
self, style: _IntOr[STYLESCOMMON], sizeHundredthPoints: int, / | |
) -> None: ... | |
def styleGetSizeFractional(self, style: _IntOr[STYLESCOMMON], /) -> int: ... | |
def styleSetWeight(self, style: _IntOr[STYLESCOMMON], weigh: _IntOr[FONTWEIGHT], /) -> None: ... | |
def styleGetWeight(self, style: _IntOr[STYLESCOMMON], /) -> int: ... | |
def styleSetCharacterSet( | |
self, style: _IntOr[STYLESCOMMON], characterSet: _IntOr[CHARACTERSET], / | |
) -> None: ... | |
def styleSetHotSpot(self, style: _IntOr[STYLESCOMMON], hotspot: bool, /) -> None: ... | |
def styleSetCheckMonospaced( | |
self, style: _IntOr[STYLESCOMMON], checkMonospaced: bool, / | |
) -> None: ... | |
def styleGetCheckMonospaced(self, style: _IntOr[STYLESCOMMON], /) -> bool: ... | |
def styleSetInvisibleRepresentation( | |
self, style: _IntOr[STYLESCOMMON], representation: _Text, / | |
) -> None: ... | |
def styleGetInvisibleRepresentation(self, style: _IntOr[STYLESCOMMON], /) -> str: ... | |
def setElementColour(self, element: _IntOr[ELEMENT], colourElement: _Color, /) -> None: ... | |
def getElementColour(self, element: _IntOr[ELEMENT], /) -> _Color: ... | |
def resetElementColour(self, element: _IntOr[ELEMENT], /) -> None: ... | |
def getElementIsSet(self, element: _IntOr[ELEMENT], /) -> bool: ... | |
def getElementAllowsTranslucent(self, element: _IntOr[ELEMENT], /) -> bool: ... | |
def getElementBaseColour(self, element: _IntOr[ELEMENT], /) -> _Color: ... | |
def setSelFore(self, useSetting: bool, fore: _Color, /) -> None: ... | |
def setSelBack(self, useSetting: bool, back: _Color, /) -> None: ... | |
def getSelAlpha(self, /) -> int: ... | |
def setSelAlpha(self, alpha: _IntOr[ALPHA], /) -> None: ... | |
def getSelEOLFilled(self, /) -> bool: ... | |
def setSelEOLFilled(self, filled: bool, /) -> None: ... | |
def getSelectionLayer(self, /) -> int: ... | |
def setSelectionLayer(self, layer: _IntOr[LAYER], /) -> None: ... | |
def getCaretLineLayer(self, /) -> int: ... | |
def setCaretLineLayer(self, layer: _IntOr[LAYER], /) -> None: ... | |
def getCaretLineHighlightSubLine(self, /) -> bool: ... | |
def setCaretLineHighlightSubLine(self, subLine: bool, /) -> None: ... | |
def setCaretFore(self, fore: _Color, /) -> None: ... | |
def assignCmdKey( | |
self, keyDefinition: _IntOr[KEYS], sciCommand: _IntOr[SCINTILLAMESSAGE], / | |
) -> None: ... | |
def clearCmdKey(self, keyDefinition: _IntOr[KEYS], /) -> None: ... | |
def clearAllCmdKeys(self, /) -> None: ... | |
def setStylingEx(self, styles: list[_IntOr[STYLESCOMMON]], /) -> int: ... | |
def styleSetVisible(self, style: _IntOr[STYLESCOMMON], visible: bool, /) -> None: ... | |
def getCaretPeriod(self, /) -> int: ... | |
def setCaretPeriod(self, periodMilliseconds: int, /) -> None: ... | |
def setWordChars(self, characters: _Text, /) -> None: ... | |
def getWordChars(self, /) -> str: ... | |
def setCharacterCategoryOptimization(self, countCharacters: int, /) -> None: ... | |
def getCharacterCategoryOptimization(self, /) -> int: ... | |
def beginUndoAction(self, /) -> None: ... | |
def endUndoAction(self, /) -> None: ... | |
def getUndoActions(self, /) -> int: ... | |
def setUndoSavePoint(self, action: int, /) -> None: ... | |
def getUndoSavePoint(self, /) -> int: ... | |
def setUndoDetach(self, action: int, /) -> None: ... | |
def getUndoDetach(self, /) -> int: ... | |
def setUndoTentative(self, action: int, /) -> None: ... | |
def getUndoTentative(self, /) -> int: ... | |
def setUndoCurrent(self, action: int, /) -> None: ... | |
def getUndoCurrent(self, /) -> int: ... | |
def pushUndoActionType(self, type: int, pos: int, /) -> None: ... | |
def changeLastUndoActionText(self, text: _Text, /) -> int: ... | |
def getUndoActionType(self, action: int, /) -> int: ... | |
def getUndoActionPosition(self, action: int, /) -> int: ... | |
def getUndoActionText(self, action: int, /) -> str: ... | |
def indicSetStyle( | |
self, indicator: _IntOr[INDICATORNUMBERS], indicatorStyle: _IntOr[INDICATORSTYLE], / | |
) -> None: ... | |
def indicGetStyle(self, indicator: _IntOr[INDICATORNUMBERS], /) -> int: ... | |
def indicSetFore(self, indicator: _IntOr[INDICATORNUMBERS], fore: _Color, /) -> None: ... | |
def indicGetFore(self, indicator: _IntOr[INDICATORNUMBERS], /) -> _Color: ... | |
def indicSetUnder(self, indicator: _IntOr[INDICATORNUMBERS], under: bool, /) -> None: ... | |
def indicGetUnder(self, indicator: _IntOr[INDICATORNUMBERS], /) -> bool: ... | |
def indicSetHoverStyle( | |
self, indicator: _IntOr[INDICATORNUMBERS], indicatorStyle: _IntOr[INDICATORSTYLE], / | |
) -> None: ... | |
def indicGetHoverStyle(self, indicator: _IntOr[INDICATORNUMBERS], /) -> int: ... | |
def indicSetHoverFore(self, indicator: _IntOr[INDICATORNUMBERS], fore: _Color, /) -> None: ... | |
def indicGetHoverFore(self, indicator: _IntOr[INDICATORNUMBERS], /) -> _Color: ... | |
def indicSetFlags( | |
self, indicator: _IntOr[INDICATORNUMBERS], flags: _IntOr[INDICFLAG], / | |
) -> None: ... | |
def indicGetFlags(self, indicator: _IntOr[INDICATORNUMBERS], /) -> int: ... | |
def indicSetStrokeWidth( | |
self, indicator: _IntOr[INDICATORNUMBERS], hundredths: int, / | |
) -> None: ... | |
def indicGetStrokeWidth(self, indicator: _IntOr[INDICATORNUMBERS], /) -> int: ... | |
def setWhitespaceFore(self, useSetting: bool, fore: _Color, /) -> None: ... | |
def setWhitespaceBack(self, useSetting: bool, back: _Color, /) -> None: ... | |
def setWhitespaceSize(self, size: int, /) -> None: ... | |
def getWhitespaceSize(self, /) -> int: ... | |
def setLineState(self, line: int, state: int, /) -> None: ... | |
def getLineState(self, line: int, /) -> int: ... | |
def getMaxLineState(self, /) -> int: ... | |
def getCaretLineVisible(self, /) -> bool: ... | |
def setCaretLineVisible(self, show: bool, /) -> None: ... | |
def getCaretLineBack(self, /) -> _Color: ... | |
def setCaretLineBack(self, back: _Color, /) -> None: ... | |
def getCaretLineFrame(self, /) -> int: ... | |
def setCaretLineFrame(self, width: int, /) -> None: ... | |
def styleSetChangeable(self, style: _IntOr[STYLESCOMMON], changeable: bool, /) -> None: ... | |
def autoCShow(self, lengthEntered: int, itemList: _Text, /) -> None: ... | |
def autoCCancel(self, /) -> None: ... | |
def autoCActive(self, /) -> bool: ... | |
def autoCPosStart(self, /) -> int: ... | |
def autoCComplete(self, /) -> None: ... | |
def autoCStops(self, characterSet: _Text, /) -> None: ... | |
def autoCSetSeparator(self, separatorCharacter: int, /) -> None: ... | |
def autoCGetSeparator(self, /) -> int: ... | |
def autoCSelect(self, select: _Text, /) -> None: ... | |
def autoCSetCancelAtStart(self, cancel: bool, /) -> None: ... | |
def autoCGetCancelAtStart(self, /) -> bool: ... | |
def autoCSetFillUps(self, characterSet: _Text, /) -> None: ... | |
def autoCSetChooseSingle(self, chooseSingle: bool, /) -> None: ... | |
def autoCGetChooseSingle(self, /) -> bool: ... | |
def autoCSetIgnoreCase(self, ignoreCase: bool, /) -> None: ... | |
def autoCGetIgnoreCase(self, /) -> bool: ... | |
def userListShow(self, listType: int, itemList: _Text, /) -> None: ... | |
def autoCSetAutoHide(self, autoHide: bool, /) -> None: ... | |
def autoCGetAutoHide(self, /) -> bool: ... | |
def autoCSetOptions(self, options: _IntOr[AUTOCOMPLETEOPTION], /) -> None: ... | |
def autoCGetOptions(self, /) -> int: ... | |
def autoCSetDropRestOfWord(self, dropRestOfWord: bool, /) -> None: ... | |
def autoCGetDropRestOfWord(self, /) -> bool: ... | |
def registerImage(self, type: int, xpmData: _Text, /) -> None: ... | |
def clearRegisteredImages(self, /) -> None: ... | |
def autoCGetTypeSeparator(self, /) -> int: ... | |
def autoCSetTypeSeparator(self, separatorCharacter: int, /) -> None: ... | |
def autoCSetMaxWidth(self, characterCount: int, /) -> None: ... | |
def autoCGetMaxWidth(self, /) -> int: ... | |
def autoCSetMaxHeight(self, rowCount: int, /) -> None: ... | |
def autoCGetMaxHeight(self, /) -> int: ... | |
def setIndent(self, indentSize: int, /) -> None: ... | |
def getIndent(self, /) -> int: ... | |
def setUseTabs(self, useTabs: bool, /) -> None: ... | |
def getUseTabs(self, /) -> bool: ... | |
def setLineIndentation(self, line: int, indentation: int, /) -> None: ... | |
def getLineIndentation(self, line: int, /) -> int: ... | |
def getLineIndentPosition(self, line: int, /) -> int: ... | |
def getColumn(self, pos: int, /) -> int: ... | |
def countCharacters(self, start: int, end: int, /) -> int: ... | |
def countCodeUnits(self, start: int, end: int, /) -> int: ... | |
def setHScrollBar(self, visible: bool, /) -> None: ... | |
def getHScrollBar(self, /) -> bool: ... | |
def setIndentationGuides(self, indentView: _IntOr[INDENTVIEW], /) -> None: ... | |
def getIndentationGuides(self, /) -> int: ... | |
def setHighlightGuide(self, column: int, /) -> None: ... | |
def getHighlightGuide(self, /) -> int: ... | |
def getLineEndPosition(self, line: int, /) -> int: ... | |
def getCodePage(self, /) -> int: ... | |
def getCaretFore(self, /) -> _Color: ... | |
def getReadOnly(self, /) -> bool: ... | |
def setCurrentPos(self, caret: int, /) -> None: ... | |
def setSelectionStart(self, anchor: int, /) -> None: ... | |
def getSelectionStart(self, /) -> int: ... | |
def setSelectionEnd(self, caret: int, /) -> None: ... | |
def getSelectionEnd(self, /) -> int: ... | |
def setEmptySelection(self, caret: int, /) -> None: ... | |
def setPrintMagnification(self, magnification: int, /) -> None: ... | |
def getPrintMagnification(self, /) -> int: ... | |
def setPrintColourMode(self, mode: _IntOr[PRINTOPTION], /) -> None: ... | |
def getPrintColourMode(self, /) -> int: ... | |
def findText( | |
self, searchFlags: _IntOr[FINDOPTION], start: int, end: int, ft: _Text, / | |
) -> int: ... | |
def findTextFull( | |
self, searchFlags: _IntOr[FINDOPTION], start: int, end: int, ft: _Text, / | |
) -> int: ... | |
def setChangeHistory(self, changeHistory: _IntOr[CHANGEHISTORYOPTION], /) -> None: ... | |
def getChangeHistory(self, /) -> int: ... | |
def getFirstVisibleLine(self, /) -> int: ... | |
def getLine(self, line: int, /) -> str: ... | |
def getLineCount(self, /) -> int: ... | |
def allocateLines(self, lines: int, /) -> None: ... | |
def setMarginLeft(self, pixelWidth: int, /) -> None: ... | |
def getMarginLeft(self, /) -> int: ... | |
def setMarginRight(self, pixelWidth: int, /) -> None: ... | |
def getMarginRight(self, /) -> int: ... | |
def getModify(self, /) -> bool: ... | |
def setSel(self, anchor: int, caret: int, /) -> None: ... | |
def getSelText(self, /) -> str: ... | |
def getTextRange(self, start: int, end: int, /) -> str: ... | |
def getTextRangeFull(self, start: int, end: int, /) -> str: ... | |
def hideSelection(self, hide: bool, /) -> None: ... | |
def getSelectionHidden(self, /) -> bool: ... | |
def pointXFromPosition(self, pos: int, /) -> int: ... | |
def pointYFromPosition(self, pos: int, /) -> int: ... | |
def lineFromPosition(self, pos: int, /) -> int: ... | |
def positionFromLine(self, line: int, /) -> int: ... | |
def lineScroll(self, columns: int, lines: int, /) -> None: ... | |
def scrollCaret(self, /) -> None: ... | |
def scrollRange(self, secondary: int, primary: int, /) -> None: ... | |
def replaceSel(self, text: _Text, /) -> None: ... | |
def setReadOnly(self, readOnly: bool, /) -> None: ... | |
def null(self, /) -> None: ... | |
def canPaste(self, /) -> bool: ... | |
def canUndo(self, /) -> bool: ... | |
def emptyUndoBuffer(self, /) -> None: ... | |
def undo(self, /) -> None: ... | |
def cut(self, /) -> None: ... | |
def copy(self, /) -> None: ... | |
def paste(self, /) -> None: ... | |
def clear(self, /) -> None: ... | |
def setText(self, text: _Text, /) -> None: ... | |
def getText(self, /) -> str: ... | |
def getTextLength(self, /) -> int: ... | |
def getDirectFunction(self, /) -> int: ... | |
def getDirectStatusFunction(self, /) -> int: ... | |
def getDirectPointer(self, /) -> int: ... | |
def setOvertype(self, overType: bool, /) -> None: ... | |
def getOvertype(self, /) -> bool: ... | |
def setCaretWidth(self, pixelWidth: int, /) -> None: ... | |
def getCaretWidth(self, /) -> int: ... | |
def setTargetStart(self, start: int, /) -> None: ... | |
def getTargetStart(self, /) -> int: ... | |
def setTargetStartVirtualSpace(self, space: int, /) -> None: ... | |
def getTargetStartVirtualSpace(self, /) -> int: ... | |
def setTargetEnd(self, end: int, /) -> None: ... | |
def getTargetEnd(self, /) -> int: ... | |
def setTargetEndVirtualSpace(self, space: int, /) -> None: ... | |
def getTargetEndVirtualSpace(self, /) -> int: ... | |
def setTargetRange(self, start: int, end: int, /) -> None: ... | |
def getTargetText(self, /) -> str: ... | |
def targetFromSelection(self, /) -> None: ... | |
def targetWholeDocument(self, /) -> None: ... | |
def replaceTarget(self, text: _Text, /) -> int: ... | |
def replaceTargetRE(self, text: _Text, /) -> int: ... | |
def replaceTargetMinimal(self, text: _Text, /) -> int: ... | |
def searchInTarget(self, text: _Text, /) -> int: ... | |
def setSearchFlags(self, searchFlags: _IntOr[FINDOPTION], /) -> None: ... | |
def getSearchFlags(self, /) -> int: ... | |
def callTipShow(self, pos: int, definition: _Text, /) -> None: ... | |
def callTipCancel(self, /) -> None: ... | |
def callTipActive(self, /) -> bool: ... | |
def callTipPosStart(self, /) -> int: ... | |
def callTipSetPosStart(self, posStart: int, /) -> None: ... | |
def callTipSetHlt(self, highlightStart: int, highlightEnd: int, /) -> None: ... | |
def callTipSetBack(self, back: _Color, /) -> None: ... | |
def callTipSetFore(self, fore: _Color, /) -> None: ... | |
def callTipSetForeHlt(self, fore: _Color, /) -> None: ... | |
def callTipUseStyle(self, tabSize: int, /) -> None: ... | |
def callTipSetPosition(self, above: bool, /) -> None: ... | |
def visibleFromDocLine(self, docLine: int, /) -> int: ... | |
def docLineFromVisible(self, displayLine: int, /) -> int: ... | |
def wrapCount(self, docLine: int, /) -> int: ... | |
def setFoldLevel(self, line: int, level: _IntOr[FOLDLEVEL], /) -> None: ... | |
def getFoldLevel(self, line: int, /) -> int: ... | |
def getLastChild(self, line: int, level: int, /) -> int: ... | |
def getFoldParent(self, line: int, /) -> int: ... | |
def showLines(self, lineStart: int, lineEnd: int, /) -> None: ... | |
def hideLines(self, lineStart: int, lineEnd: int, /) -> None: ... | |
def getLineVisible(self, line: int, /) -> bool: ... | |
def getAllLinesVisible(self, /) -> bool: ... | |
def setFoldExpanded(self, line: int, expanded: bool, /) -> None: ... | |
def getFoldExpanded(self, line: int, /) -> bool: ... | |
def toggleFold(self, line: int, /) -> None: ... | |
def toggleFoldShowText(self, line: int, text: _Text, /) -> None: ... | |
def foldDisplayTextSetStyle(self, style: _IntOr[FOLDDISPLAYTEXTSTYLE], /) -> None: ... | |
def foldDisplayTextGetStyle(self, /) -> int: ... | |
def setDefaultFoldDisplayText(self, text: _Text, /) -> None: ... | |
def getDefaultFoldDisplayText(self, /) -> str: ... | |
def foldLine(self, line: int, action: _IntOr[FOLDACTION], /) -> None: ... | |
def foldChildren(self, line: int, action: _IntOr[FOLDACTION], /) -> None: ... | |
def expandChildren(self, line: int, level: int, /) -> None: ... | |
def foldAll(self, action: _IntOr[FOLDACTION], /) -> None: ... | |
def ensureVisible(self, line: int, /) -> None: ... | |
def setAutomaticFold(self, automaticFold: _IntOr[AUTOMATICFOLD], /) -> None: ... | |
def getAutomaticFold(self, /) -> int: ... | |
def setFoldFlags(self, flags: _IntOr[FOLDFLAG], /) -> None: ... | |
def ensureVisibleEnforcePolicy(self, line: int, /) -> None: ... | |
def setTabIndents(self, tabIndents: bool, /) -> None: ... | |
def getTabIndents(self, /) -> bool: ... | |
def setBackSpaceUnIndents(self, bsUnIndents: bool, /) -> None: ... | |
def getBackSpaceUnIndents(self, /) -> bool: ... | |
def setMouseDwellTime(self, periodMilliseconds: int, /) -> None: ... | |
def getMouseDwellTime(self, /) -> int: ... | |
def wordStartPosition(self, pos: int, onlyWordCharacters: bool, /) -> int: ... | |
def wordEndPosition(self, pos: int, onlyWordCharacters: bool, /) -> int: ... | |
def isRangeWord(self, start: int, end: int, /) -> bool: ... | |
def setIdleStyling(self, idleStyling: _IntOr[IDLESTYLING], /) -> None: ... | |
def getIdleStyling(self, /) -> int: ... | |
def setWrapMode(self, wrapMode: _IntOr[WRAP], /) -> None: ... | |
def getWrapMode(self, /) -> int: ... | |
def setWrapVisualFlags(self, wrapVisualFlags: _IntOr[WRAPVISUALFLAG], /) -> None: ... | |
def getWrapVisualFlags(self, /) -> int: ... | |
def setWrapVisualFlagsLocation( | |
self, wrapVisualFlagsLocation: _IntOr[WRAPVISUALLOCATION], / | |
) -> None: ... | |
def getWrapVisualFlagsLocation(self, /) -> int: ... | |
def setWrapStartIndent(self, indent: int, /) -> None: ... | |
def getWrapStartIndent(self, /) -> int: ... | |
def setWrapIndentMode(self, wrapIndentMode: _IntOr[WRAPINDENTMODE], /) -> None: ... | |
def getWrapIndentMode(self, /) -> int: ... | |
def setLayoutCache(self, cacheMode: _IntOr[LINECACHE], /) -> None: ... | |
def getLayoutCache(self, /) -> int: ... | |
def setScrollWidth(self, pixelWidth: int, /) -> None: ... | |
def getScrollWidth(self, /) -> int: ... | |
def setScrollWidthTracking(self, tracking: bool, /) -> None: ... | |
def getScrollWidthTracking(self, /) -> bool: ... | |
def textWidth(self, style: _IntOr[STYLESCOMMON], text: _Text, /) -> int: ... | |
def setEndAtLastLine(self, endAtLastLine: bool, /) -> None: ... | |
def getEndAtLastLine(self, /) -> bool: ... | |
def textHeight(self, line: int, /) -> int: ... | |
def setVScrollBar(self, visible: bool, /) -> None: ... | |
def getVScrollBar(self, /) -> bool: ... | |
def appendText(self, text: _Text, /) -> int: ... | |
def getPhasesDraw(self, /) -> int: ... | |
def setPhasesDraw(self, phases: _IntOr[PHASESDRAW], /) -> None: ... | |
def setFontQuality(self, fontQuality: _IntOr[FONTQUALITY], /) -> None: ... | |
def getFontQuality(self, /) -> int: ... | |
def setFirstVisibleLine(self, displayLine: int, /) -> None: ... | |
def setMultiPaste(self, multiPaste: _IntOr[MULTIPASTE], /) -> None: ... | |
def getMultiPaste(self, /) -> int: ... | |
def getTag(self, tagNumber: int, /) -> str: ... | |
def linesJoin(self, /) -> None: ... | |
def linesSplit(self, pixelWidth: int, /) -> None: ... | |
def setFoldMarginColour(self, useSetting: bool, back: _Color, /) -> None: ... | |
def setFoldMarginHiColour(self, useSetting: bool, fore: _Color, /) -> None: ... | |
def setAccessibility(self, accessibility: _IntOr[ACCESSIBILITY], /) -> None: ... | |
def getAccessibility(self, /) -> int: ... | |
def lineDown(self, /) -> None: ... | |
def lineDownExtend(self, /) -> None: ... | |
def lineUp(self, /) -> None: ... | |
def lineUpExtend(self, /) -> None: ... | |
def charLeft(self, /) -> None: ... | |
def charLeftExtend(self, /) -> None: ... | |
def charRight(self, /) -> None: ... | |
def charRightExtend(self, /) -> None: ... | |
def wordLeft(self, /) -> None: ... | |
def wordLeftExtend(self, /) -> None: ... | |
def wordRight(self, /) -> None: ... | |
def wordRightExtend(self, /) -> None: ... | |
def home(self, /) -> None: ... | |
def homeExtend(self, /) -> None: ... | |
def lineEnd(self, /) -> None: ... | |
def lineEndExtend(self, /) -> None: ... | |
def documentStart(self, /) -> None: ... | |
def documentStartExtend(self, /) -> None: ... | |
def documentEnd(self, /) -> None: ... | |
def documentEndExtend(self, /) -> None: ... | |
def pageUp(self, /) -> None: ... | |
def pageUpExtend(self, /) -> None: ... | |
def pageDown(self, /) -> None: ... | |
def pageDownExtend(self, /) -> None: ... | |
def editToggleOvertype(self, /) -> None: ... | |
def cancel(self, /) -> None: ... | |
def deleteBack(self, /) -> None: ... | |
def tab(self, /) -> None: ... | |
def backTab(self, /) -> None: ... | |
def newLine(self, /) -> None: ... | |
def formFeed(self, /) -> None: ... | |
def vCHome(self, /) -> None: ... | |
def vCHomeExtend(self, /) -> None: ... | |
def zoomIn(self, /) -> None: ... | |
def zoomOut(self, /) -> None: ... | |
def delWordLeft(self, /) -> None: ... | |
def delWordRight(self, /) -> None: ... | |
def delWordRightEnd(self, /) -> None: ... | |
def lineCut(self, /) -> None: ... | |
def lineDelete(self, /) -> None: ... | |
def lineTranspose(self, /) -> None: ... | |
def lineReverse(self, /) -> None: ... | |
def lineDuplicate(self, /) -> None: ... | |
def lowerCase(self, /) -> None: ... | |
def upperCase(self, /) -> None: ... | |
def lineScrollDown(self, /) -> None: ... | |
def lineScrollUp(self, /) -> None: ... | |
def deleteBackNotLine(self, /) -> None: ... | |
def homeDisplay(self, /) -> None: ... | |
def homeDisplayExtend(self, /) -> None: ... | |
def lineEndDisplay(self, /) -> None: ... | |
def lineEndDisplayExtend(self, /) -> None: ... | |
def homeWrap(self, /) -> None: ... | |
def homeWrapExtend(self, /) -> None: ... | |
def lineEndWrap(self, /) -> None: ... | |
def lineEndWrapExtend(self, /) -> None: ... | |
def vCHomeWrap(self, /) -> None: ... | |
def vCHomeWrapExtend(self, /) -> None: ... | |
def lineCopy(self, /) -> None: ... | |
def moveCaretInsideView(self, /) -> None: ... | |
def lineLength(self, line: int, /) -> int: ... | |
def braceHighlight(self, posA: int, posB: int, /) -> None: ... | |
def braceHighlightIndicator( | |
self, useSetting: bool, indicator: _IntOr[INDICATORNUMBERS], / | |
) -> None: ... | |
def braceBadLight(self, pos: int, /) -> None: ... | |
def braceBadLightIndicator( | |
self, useSetting: bool, indicator: _IntOr[INDICATORNUMBERS], / | |
) -> None: ... | |
def braceMatch(self, pos: int, maxReStyle: Literal[0], /) -> int: ... | |
def braceMatchNext(self, pos: int, startPos: int, /) -> int: ... | |
def getViewEOL(self, /) -> bool: ... | |
def setViewEOL(self, visible: bool, /) -> None: ... | |
def getDocPointer(self, /) -> int: ... | |
def setDocPointer(self, pointer: int, /) -> None: ... | |
def setModEventMask(self, eventMask: _IntOr[MODIFICATIONFLAGS], /) -> None: ... | |
def getEdgeColumn(self, /) -> int: ... | |
def setEdgeColumn(self, column: int, /) -> None: ... | |
def getEdgeMode(self, /) -> int: ... | |
def setEdgeMode(self, edgeMode: _IntOr[EDGEVISUALSTYLE], /) -> None: ... | |
def getEdgeColour(self, /) -> _Color: ... | |
def setEdgeColour(self, edgeColour: _Color, /) -> None: ... | |
def multiEdgeAddLine(self, column: int, edgeColour: _Color, /) -> None: ... | |
def multiEdgeClearAll(self, /) -> None: ... | |
def getMultiEdgeColumn(self, which: int, /) -> int: ... | |
def searchAnchor(self, /) -> None: ... | |
def searchNext(self, searchFlags: _IntOr[FINDOPTION], text: _Text, /) -> int: ... | |
def searchPrev(self, searchFlags: _IntOr[FINDOPTION], text: _Text, /) -> int: ... | |
def linesOnScreen(self, /) -> int: ... | |
def usePopUp(self, popUpMode: _IntOr[POPUP], /) -> None: ... | |
def selectionIsRectangle(self, /) -> bool: ... | |
def setZoom(self, zoomInPoints: int, /) -> None: ... | |
def getZoom(self, /) -> int: ... | |
def createDocument(self, bytes: int, documentOptions: _IntOr[DOCUMENTOPTION], /) -> int: ... | |
def addRefDocument(self, doc: int, /) -> None: ... | |
def releaseDocument(self, doc: int, /) -> None: ... | |
def getDocumentOptions(self, /) -> int: ... | |
def getModEventMask(self, /) -> int: ... | |
def setCommandEvents(self, commandEvents: bool, /) -> None: ... | |
def getCommandEvents(self, /) -> bool: ... | |
def setFocus(self, focus: bool, /) -> None: ... | |
def getFocus(self, /) -> bool: ... | |
def setStatus(self, status: _IntOr[STATUS], /) -> None: ... | |
def getStatus(self, /) -> int: ... | |
def setMouseDownCaptures(self, captures: bool, /) -> None: ... | |
def getMouseDownCaptures(self, /) -> bool: ... | |
def setMouseWheelCaptures(self, captures: bool, /) -> None: ... | |
def getMouseWheelCaptures(self, /) -> bool: ... | |
def setCursor(self, cursorType: _IntOr[CURSORSHAPE], /) -> None: ... | |
def getCursor(self, /) -> int: ... | |
def setControlCharSymbol(self, symbol: int, /) -> None: ... | |
def getControlCharSymbol(self, /) -> int: ... | |
def wordPartLeft(self, /) -> None: ... | |
def wordPartLeftExtend(self, /) -> None: ... | |
def wordPartRight(self, /) -> None: ... | |
def wordPartRightExtend(self, /) -> None: ... | |
def setVisiblePolicy( | |
self, visiblePolicy: _IntOr[VISIBLEPOLICY], visibleSlop: int, / | |
) -> None: ... | |
def delLineLeft(self, /) -> None: ... | |
def delLineRight(self, /) -> None: ... | |
def setXOffset(self, xOffset: int, /) -> None: ... | |
def getXOffset(self, /) -> int: ... | |
def chooseCaretX(self, /) -> None: ... | |
def grabFocus(self, /) -> None: ... | |
def setXCaretPolicy(self, caretPolicy: _IntOr[CARETPOLICY], caretSlop: int, /) -> None: ... | |
def setYCaretPolicy(self, caretPolicy: _IntOr[CARETPOLICY], caretSlop: int, /) -> None: ... | |
def setPrintWrapMode(self, wrapMode: _IntOr[WRAP], /) -> None: ... | |
def getPrintWrapMode(self, /) -> int: ... | |
def setHotspotActiveFore(self, useSetting: bool, fore: _Color, /) -> None: ... | |
def getHotspotActiveFore(self, /) -> _Color: ... | |
def setHotspotActiveBack(self, useSetting: bool, back: _Color, /) -> None: ... | |
def getHotspotActiveBack(self, /) -> _Color: ... | |
def setHotspotActiveUnderline(self, underline: bool, /) -> None: ... | |
def getHotspotActiveUnderline(self, /) -> bool: ... | |
def setHotspotSingleLine(self, singleLine: bool, /) -> None: ... | |
def getHotspotSingleLine(self, /) -> bool: ... | |
def paraDown(self, /) -> None: ... | |
def paraDownExtend(self, /) -> None: ... | |
def paraUp(self, /) -> None: ... | |
def paraUpExtend(self, /) -> None: ... | |
def positionBefore(self, pos: int, /) -> int: ... | |
def positionAfter(self, pos: int, /) -> int: ... | |
def positionRelative(self, pos: int, relative: int, /) -> int: ... | |
def positionRelativeCodeUnits(self, pos: int, relative: int, /) -> int: ... | |
def copyRange(self, start: int, end: int, /) -> None: ... | |
def copyText(self, text: _Text, /) -> int: ... | |
def setSelectionMode(self, selectionMode: _IntOr[SELECTIONMODE], /) -> None: ... | |
def changeSelectionMode(self, selectionMode: _IntOr[SELECTIONMODE], /) -> None: ... | |
def getSelectionMode(self, /) -> int: ... | |
def setMoveExtendsSelection(self, moveExtendsSelection: bool, /) -> None: ... | |
def getMoveExtendsSelection(self, /) -> bool: ... | |
def getLineSelStartPosition(self, line: int, /) -> int: ... | |
def getLineSelEndPosition(self, line: int, /) -> int: ... | |
def lineDownRectExtend(self, /) -> None: ... | |
def lineUpRectExtend(self, /) -> None: ... | |
def charLeftRectExtend(self, /) -> None: ... | |
def charRightRectExtend(self, /) -> None: ... | |
def homeRectExtend(self, /) -> None: ... | |
def vCHomeRectExtend(self, /) -> None: ... | |
def lineEndRectExtend(self, /) -> None: ... | |
def pageUpRectExtend(self, /) -> None: ... | |
def pageDownRectExtend(self, /) -> None: ... | |
def stutteredPageUp(self, /) -> None: ... | |
def stutteredPageUpExtend(self, /) -> None: ... | |
def stutteredPageDown(self, /) -> None: ... | |
def stutteredPageDownExtend(self, /) -> None: ... | |
def wordLeftEnd(self, /) -> None: ... | |
def wordLeftEndExtend(self, /) -> None: ... | |
def wordRightEnd(self, /) -> None: ... | |
def wordRightEndExtend(self, /) -> None: ... | |
def setWhitespaceChars(self, characters: _Text, /) -> None: ... | |
def getWhitespaceChars(self, /) -> str: ... | |
def setPunctuationChars(self, characters: _Text, /) -> None: ... | |
def getPunctuationChars(self, /) -> str: ... | |
def setCharsDefault(self, /) -> None: ... | |
def autoCGetCurrent(self, /) -> int: ... | |
def autoCGetCurrentText(self, /) -> str: ... | |
def autoCSetCaseInsensitiveBehaviour( | |
self, behaviour: _IntOr[CASEINSENSITIVEBEHAVIOUR], / | |
) -> None: ... | |
def autoCGetCaseInsensitiveBehaviour(self, /) -> int: ... | |
def autoCSetMulti(self, multi: _IntOr[MULTIAUTOCOMPLETE], /) -> None: ... | |
def autoCGetMulti(self, /) -> int: ... | |
def autoCSetOrder(self, order: _IntOr[ORDERING], /) -> None: ... | |
def autoCGetOrder(self, /) -> int: ... | |
def allocate(self, bytes: int, /) -> None: ... | |
def targetAsUTF8(self, /) -> str: ... | |
def setLengthForEncode(self, bytes: int, /) -> None: ... | |
def encodedFromUTF8(self, utf8: _Text, /) -> str: ... | |
def findColumn(self, line: int, column: int, /) -> int: ... | |
def getCaretSticky(self, /) -> int: ... | |
def setCaretSticky(self, useCaretStickyBehaviour: _IntOr[CARETSTICKY], /) -> None: ... | |
def toggleCaretSticky(self, /) -> None: ... | |
def setPasteConvertEndings(self, convert: bool, /) -> None: ... | |
def getPasteConvertEndings(self, /) -> bool: ... | |
def replaceRectangular(self, text: _Text, /) -> int: ... | |
def selectionDuplicate(self, /) -> None: ... | |
def setCaretLineBackAlpha(self, alpha: _IntOr[ALPHA], /) -> None: ... | |
def getCaretLineBackAlpha(self, /) -> int: ... | |
def setCaretStyle(self, caretStyle: _IntOr[CARETSTYLE], /) -> None: ... | |
def getCaretStyle(self, /) -> int: ... | |
def setIndicatorCurrent(self, indicator: _IntOr[INDICATORNUMBERS], /) -> None: ... | |
def getIndicatorCurrent(self, /) -> int: ... | |
def setIndicatorValue(self, value: _IntOr[INDICVALUE], /) -> None: ... | |
def getIndicatorValue(self, /) -> int: ... | |
def indicatorFillRange(self, start: int, lengthFill: int, /) -> None: ... | |
def indicatorClearRange(self, start: int, lengthClear: int, /) -> None: ... | |
def indicatorAllOnFor(self, pos: int, /) -> int: ... | |
def indicatorValueAt(self, indicator: _IntOr[INDICATORNUMBERS], pos: int, /) -> int: ... | |
def indicatorStart(self, indicator: _IntOr[INDICATORNUMBERS], pos: int, /) -> int: ... | |
def indicatorEnd(self, indicator: _IntOr[INDICATORNUMBERS], pos: int, /) -> int: ... | |
def setPositionCache(self, size: int, /) -> None: ... | |
def getPositionCache(self, /) -> int: ... | |
def setLayoutThreads(self, threads: int, /) -> None: ... | |
def getLayoutThreads(self, /) -> int: ... | |
def copyAllowLine(self, /) -> None: ... | |
def getRangePointer(self, position: int, rangeLength: int, /) -> str: ... | |
def getGapPosition(self, /) -> int: ... | |
def indicSetAlpha( | |
self, indicator: _IntOr[INDICATORNUMBERS], alpha: _IntOr[ALPHA], / | |
) -> None: ... | |
def indicGetAlpha(self, indicator: _IntOr[INDICATORNUMBERS], /) -> int: ... | |
def indicSetOutlineAlpha( | |
self, indicator: _IntOr[INDICATORNUMBERS], alpha: _IntOr[ALPHA], / | |
) -> None: ... | |
def indicGetOutlineAlpha(self, indicator: _IntOr[INDICATORNUMBERS], /) -> int: ... | |
def setExtraAscent(self, extraAscent: int, /) -> None: ... | |
def getExtraAscent(self, /) -> int: ... | |
def setExtraDescent(self, extraDescent: int, /) -> None: ... | |
def getExtraDescent(self, /) -> int: ... | |
def markerSymbolDefined(self, markerNumber: int, /) -> int: ... | |
def marginSetText(self, line: int, text: _Text, /) -> None: ... | |
def marginGetText(self, line: int, /) -> str: ... | |
def marginSetStyle(self, line: int, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def marginGetStyle(self, line: int, /) -> int: ... | |
def marginSetStyles(self, line: int, styles: _Text, /) -> None: ... | |
def marginGetStyles(self, line: int, /) -> str: ... | |
def marginTextClearAll(self, /) -> None: ... | |
def marginSetStyleOffset(self, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def marginGetStyleOffset(self, /) -> int: ... | |
def setMarginOptions(self, marginOptions: _IntOr[MARGINOPTION], /) -> None: ... | |
def getMarginOptions(self, /) -> int: ... | |
def annotationSetText(self, line: int, text: _Text, /) -> None: ... | |
def annotationGetText(self, line: int, /) -> str: ... | |
def annotationSetStyle(self, line: int, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def annotationGetStyle(self, line: int, /) -> int: ... | |
def annotationSetStyles(self, line: int, styles: _Text, /) -> None: ... | |
def annotationGetStyles(self, line: int, /) -> str: ... | |
def annotationGetLines(self, line: int, /) -> int: ... | |
def annotationClearAll(self, /) -> None: ... | |
def annotationSetVisible(self, visible: _IntOr[ANNOTATIONVISIBLE], /) -> None: ... | |
def annotationGetVisible(self, /) -> int: ... | |
def annotationSetStyleOffset(self, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def annotationGetStyleOffset(self, /) -> int: ... | |
def releaseAllExtendedStyles(self, /) -> None: ... | |
def allocateExtendedStyles(self, numberStyles: int, /) -> int: ... | |
def addUndoAction(self, token: int, flags: _IntOr[UNDOFLAGS], /) -> None: ... | |
def charPositionFromPoint(self, x: int, y: int, /) -> int: ... | |
def charPositionFromPointClose(self, x: int, y: int, /) -> int: ... | |
def setMouseSelectionRectangularSwitch( | |
self, mouseSelectionRectangularSwitch: bool, / | |
) -> None: ... | |
def getMouseSelectionRectangularSwitch(self, /) -> bool: ... | |
def setMultipleSelection(self, multipleSelection: bool, /) -> None: ... | |
def getMultipleSelection(self, /) -> bool: ... | |
def setAdditionalSelectionTyping(self, additionalSelectionTyping: bool, /) -> None: ... | |
def getAdditionalSelectionTyping(self, /) -> bool: ... | |
def setAdditionalCaretsBlink(self, additionalCaretsBlink: bool, /) -> None: ... | |
def getAdditionalCaretsBlink(self, /) -> bool: ... | |
def setAdditionalCaretsVisible(self, additionalCaretsVisible: bool, /) -> None: ... | |
def getAdditionalCaretsVisible(self, /) -> bool: ... | |
def getSelections(self, /) -> int: ... | |
def getSelectionEmpty(self, /) -> bool: ... | |
def clearSelections(self, /) -> None: ... | |
def setSelection(self, caret: int, anchor: int, /) -> None: ... | |
def addSelection(self, caret: int, anchor: int, /) -> None: ... | |
def selectionFromPoint(self, x: int, y: int, /) -> int: ... | |
def dropSelectionN(self, selection: int, /) -> None: ... | |
def setMainSelection(self, selection: int, /) -> None: ... | |
def getMainSelection(self, /) -> int: ... | |
def setSelectionNCaret(self, selection: int, caret: int, /) -> None: ... | |
def getSelectionNCaret(self, selection: int, /) -> int: ... | |
def setSelectionNAnchor(self, selection: int, anchor: int, /) -> None: ... | |
def getSelectionNAnchor(self, selection: int, /) -> int: ... | |
def setSelectionNCaretVirtualSpace(self, selection: int, space: int, /) -> None: ... | |
def getSelectionNCaretVirtualSpace(self, selection: int, /) -> int: ... | |
def setSelectionNAnchorVirtualSpace(self, selection: int, space: int, /) -> None: ... | |
def getSelectionNAnchorVirtualSpace(self, selection: int, /) -> int: ... | |
def setSelectionNStart(self, selection: int, anchor: int, /) -> None: ... | |
def getSelectionNStart(self, selection: int, /) -> int: ... | |
def getSelectionNStartVirtualSpace(self, selection: int, /) -> int: ... | |
def setSelectionNEnd(self, selection: int, caret: int, /) -> None: ... | |
def getSelectionNEndVirtualSpace(self, selection: int, /) -> int: ... | |
def getSelectionNEnd(self, selection: int, /) -> int: ... | |
def setRectangularSelectionCaret(self, caret: int, /) -> None: ... | |
def getRectangularSelectionCaret(self, /) -> int: ... | |
def setRectangularSelectionAnchor(self, anchor: int, /) -> None: ... | |
def getRectangularSelectionAnchor(self, /) -> int: ... | |
def setRectangularSelectionCaretVirtualSpace(self, space: int, /) -> None: ... | |
def getRectangularSelectionCaretVirtualSpace(self, /) -> int: ... | |
def setRectangularSelectionAnchorVirtualSpace(self, space: int, /) -> None: ... | |
def getRectangularSelectionAnchorVirtualSpace(self, /) -> int: ... | |
def setVirtualSpaceOptions(self, virtualSpaceOptions: _IntOr[VIRTUALSPACE], /) -> None: ... | |
def getVirtualSpaceOptions(self, /) -> int: ... | |
def setRectangularSelectionModifier(self, modifier: _IntOr[KEYMOD], /) -> None: ... | |
def getRectangularSelectionModifier(self, /) -> int: ... | |
def setAdditionalSelFore(self, fore: _Color, /) -> None: ... | |
def setAdditionalSelBack(self, back: _Color, /) -> None: ... | |
def setAdditionalSelAlpha(self, alpha: _IntOr[ALPHA], /) -> None: ... | |
def getAdditionalSelAlpha(self, /) -> int: ... | |
def setAdditionalCaretFore(self, fore: _Color, /) -> None: ... | |
def getAdditionalCaretFore(self, /) -> _Color: ... | |
def rotateSelection(self, /) -> None: ... | |
def swapMainAnchorCaret(self, /) -> None: ... | |
def multipleSelectAddNext(self, /) -> None: ... | |
def multipleSelectAddEach(self, /) -> None: ... | |
def changeLexerState(self, start: int, end: int, /) -> int: ... | |
def contractedFoldNext(self, lineStart: int, /) -> int: ... | |
def verticalCentreCaret(self, /) -> None: ... | |
def moveSelectedLinesUp(self, /) -> None: ... | |
def moveSelectedLinesDown(self, /) -> None: ... | |
def setIdentifier(self, identifier: int, /) -> None: ... | |
def getIdentifier(self, /) -> int: ... | |
def rGBAImageSetWidth(self, width: int, /) -> None: ... | |
def rGBAImageSetHeight(self, height: int, /) -> None: ... | |
def rGBAImageSetScale(self, scalePercent: int, /) -> None: ... | |
def markerDefineRGBAImage( | |
self, markerNumber: _IntOr[MARKERSYMBOL], pixels: _Text, / | |
) -> None: ... | |
def registerRGBAImage(self, type: int, pixels: _Text, /) -> None: ... | |
def scrollToStart(self, /) -> None: ... | |
def scrollToEnd(self, /) -> None: ... | |
def setTechnology(self, technology: _IntOr[TECHNOLOGY], /) -> None: ... | |
def getTechnology(self, /) -> int: ... | |
def createLoader(self, bytes: int, documentOptions: _IntOr[DOCUMENTOPTION], /) -> int: ... | |
def findIndicatorShow(self, start: int, end: int, /) -> None: ... | |
def findIndicatorFlash(self, start: int, end: int, /) -> None: ... | |
def findIndicatorHide(self, /) -> None: ... | |
def vCHomeDisplay(self, /) -> None: ... | |
def vCHomeDisplayExtend(self, /) -> None: ... | |
def getCaretLineVisibleAlways(self, /) -> bool: ... | |
def setCaretLineVisibleAlways(self, alwaysVisible: bool, /) -> None: ... | |
def setLineEndTypesAllowed(self, lineEndBitSet: _IntOr[LINEENDTYPE], /) -> None: ... | |
def getLineEndTypesAllowed(self, /) -> int: ... | |
def getLineEndTypesActive(self, /) -> int: ... | |
def setRepresentation(self, encodedCharacter: _Text, representation: _Text, /) -> None: ... | |
def getRepresentation(self, encodedCharacter: _Text, /) -> str: ... | |
def clearRepresentation(self, encodedCharacter: _Text, /) -> None: ... | |
def clearAllRepresentations(self, /) -> None: ... | |
def setRepresentationAppearance( | |
self, encodedCharacter: _Text, appearance: _IntOr[REPRESENTATIONAPPEARANCE], / | |
) -> None: ... | |
def getRepresentationAppearance(self, encodedCharacter: _Text, /) -> int: ... | |
def setRepresentationColour(self, encodedCharacter: _Text, colour: _Color, /) -> None: ... | |
def getRepresentationColour(self, encodedCharacter: _Text, /) -> _Color: ... | |
def eOLAnnotationSetText(self, line: int, text: _Text, /) -> None: ... | |
def eOLAnnotationGetText(self, line: int, /) -> str: ... | |
def eOLAnnotationSetStyle(self, line: int, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def eOLAnnotationGetStyle(self, line: int, /) -> int: ... | |
def eOLAnnotationClearAll(self, /) -> None: ... | |
def eOLAnnotationSetVisible(self, visible: _IntOr[EOLANNOTATIONVISIBLE], /) -> None: ... | |
def eOLAnnotationGetVisible(self, /) -> int: ... | |
def eOLAnnotationSetStyleOffset(self, style: _IntOr[STYLESCOMMON], /) -> None: ... | |
def eOLAnnotationGetStyleOffset(self, /) -> int: ... | |
def supportsFeature(self, feature: _IntOr[SUPPORTS], /) -> bool: ... | |
def getLineCharacterIndex(self, /) -> int: ... | |
def allocateLineCharacterIndex( | |
self, lineCharacterIndex: _IntOr[LINECHARACTERINDEXTYPE], / | |
) -> None: ... | |
def releaseLineCharacterIndex( | |
self, lineCharacterIndex: _IntOr[LINECHARACTERINDEXTYPE], / | |
) -> None: ... | |
def lineFromIndexPosition( | |
self, pos: int, lineCharacterIndex: _IntOr[LINECHARACTERINDEXTYPE], / | |
) -> int: ... | |
def indexPositionFromLine( | |
self, line: int, lineCharacterIndex: _IntOr[LINECHARACTERINDEXTYPE], / | |
) -> int: ... | |
def startRecord(self, /) -> None: ... | |
def stopRecord(self, /) -> None: ... | |
def getLexer(self, /) -> int: ... | |
def colourise(self, start: int, end: int, /) -> None: ... | |
def setProperty(self, key: _Text, value: _Text, /) -> None: ... | |
def setKeyWords(self, keyWordSet: int, keyWords: _Text, /) -> None: ... | |
def getProperty(self, key: _Text, /) -> str: ... | |
def getPropertyExpanded(self, key: _Text, /) -> str: ... | |
def getPropertyInt(self, key: _Text, defaultValue: int, /) -> int: ... | |
def getLexerLanguage(self, /) -> str: ... | |
def privateLexerCall(self, operation: int, pointer: int, /) -> int: ... | |
def propertyNames(self, /) -> str: ... | |
def propertyType(self, name: _Text, /) -> int: ... | |
def describeProperty(self, name: _Text, /) -> str: ... | |
def describeKeyWordSets(self, /) -> str: ... | |
def getLineEndTypesSupported(self, /) -> int: ... | |
def allocateSubStyles(self, styleBase: int, numberStyles: int, /) -> int: ... | |
def getSubStylesStart(self, styleBase: int, /) -> int: ... | |
def getSubStylesLength(self, styleBase: int, /) -> int: ... | |
def getStyleFromSubStyle(self, subStyle: int, /) -> int: ... | |
def getPrimaryStyleFromStyle(self, style: _IntOr[STYLESCOMMON], /) -> int: ... | |
def freeSubStyles(self, /) -> None: ... | |
def setIdentifiers(self, style: _IntOr[STYLESCOMMON], identifiers: _Text, /) -> None: ... | |
def distanceToSecondaryStyles(self, /) -> int: ... | |
def getSubStyleBases(self, /) -> str: ... | |
def getNamedStyles(self, /) -> int: ... | |
def nameOfStyle(self, style: _IntOr[STYLESCOMMON], /) -> str: ... | |
def tagsOfStyle(self, style: _IntOr[STYLESCOMMON], /) -> str: ... | |
def descriptionOfStyle(self, style: _IntOr[STYLESCOMMON], /) -> str: ... | |
def setILexer(self, ilexer: int, /) -> None: ... | |
def getBidirectional(self, /) -> int: ... | |
def setBidirectional(self, bidirectional: _IntOr[BIDIRECTIONAL], /) -> None: ... | |
def flash(self, milliseconds: int, /) -> None: ... | |
def forEachLine(self, function: Callable[[str, int, int], int | None], /) -> None: ... | |
def deleteLine(self, line: int, /) -> None: ... | |
def replaceLine(self, line: int, newContents: _Text, /) -> None: ... | |
def replaceWholeLine(self, line: int, newContents: _Text, /) -> None: ... | |
def setTarget(self, start: int, end: int, /) -> None: ... | |
def getUserLineSelection(self, /) -> tuple[int, int]: ... | |
def getUserCharSelection(self, /) -> tuple[int, int]: ... | |
@overload | |
def clearCallbacks(self, /) -> None: ... | |
@overload | |
def clearCallbacks(self, function: _NotificationCallback, /) -> None: ... | |
@overload | |
def clearCallbacks(self, eventsList: list[_IntOr[SCINTILLANOTIFICATION]], /) -> None: ... | |
@overload | |
def clearCallbacks( | |
self, function: _NotificationCallback, eventsList: list[_IntOr[SCINTILLANOTIFICATION]], / | |
) -> None: ... | |
def callback( | |
self, function: _NotificationCallback, eventsList: list[_IntOr[SCINTILLANOTIFICATION]], / | |
) -> None: ... | |
def callbackSync( | |
self, function: _NotificationCallback, eventsList: list[_IntOr[SCINTILLANOTIFICATION]], / | |
) -> None: ... | |
def replace( | |
self, | |
search: _Text, | |
replace: _ReplaceCallback, | |
flags: _IntOr[re.RegexFlag] = ..., | |
startPosition: int = -1, | |
endPosition: int = -1, | |
maxCount: int = 0, | |
/, | |
) -> None: ... | |
def rereplace( | |
self, | |
search: _Text, | |
replace: _ReplaceCallback, | |
flags: re.RegexFlag = ..., | |
startPosition: int = -1, | |
endPosition: int = -1, | |
maxCount: int = 0, | |
/, | |
) -> None: ... | |
def research( | |
self, | |
search: _Text, | |
replace: _ReplaceCallback, | |
flags: re.RegexFlag = ..., | |
startPosition: int = -1, | |
endPosition: int = -1, | |
maxCount: int = 0, | |
/, | |
) -> None: ... | |
def getCurrentWord(self, /) -> str: ... | |
def getWord(self, position: int | None = None, useOnlyWordChars: bool = True, /) -> str: ... | |
def search( | |
self, | |
search: _Text, | |
handlerFunction: _SearchCallback, | |
flags: re.RegexFlag = ..., | |
startPosition: int = -1, | |
endPosition: int = -1, | |
maxCount: int = 0, | |
/, | |
) -> None: ... | |
def write(self, text: _Text) -> int: ... | |
class FORMATTYPE(IntEnum): | |
MAC: int | |
UNIX: int | |
WIN: int | |
class BUFFERENCODING(IntEnum): | |
ANSI: int | |
COOKIE: int | |
ENC8BIT: int | |
UCS2BE: int | |
UCS2BE_NOBOM: int | |
UCS2LE: int | |
UCS2LE_NOBOM: int | |
UTF8: int | |
class STATUSBARSECTION(IntEnum): | |
CURPOS: int | |
DOCSIZE: int | |
DOCTYPE: int | |
EOFFORMAT: int | |
TYPINGMODE: int | |
UNICODETYPE: int | |
class SCINTILLANOTIFICATION(IntEnum): | |
STYLENEEDED: int | |
CHARADDED: int | |
SAVEPOINTREACHED: int | |
SAVEPOINTLEFT: int | |
MODIFYATTEMPTRO: int | |
KEY: int | |
DOUBLECLICK: int | |
UPDATEUI: int | |
MODIFIED: int | |
MACRORECORD: int | |
MARGINCLICK: int | |
MARGINRIGHTCLICK: int | |
NEEDSHOWN: int | |
PAINTED: int | |
USERLISTSELECTION: int | |
URIDROPPED: int | |
DWELLSTART: int | |
DWELLEND: int | |
ZOOM: int | |
HOTSPOTCLICK: int | |
HOTSPOTDOUBLECLICK: int | |
CALLTIPCLICK: int | |
AUTOCSELECTION: int | |
INDICATORCLICK: int | |
INDICATORRELEASE: int | |
AUTOCCANCELLED: int | |
AUTOCCHARDELETED: int | |
FOCUSIN: int | |
FOCUSOUT: int | |
AUTOCOMPLETED: int | |
AUTOCSELECTIONCHANGE: int | |
class SCINTILLAMESSAGE(IntEnum): | |
SCI_ADDREFDOCUMENT: int | |
SCI_ADDSELECTION: int | |
SCI_ADDSTYLEDTEXT: int | |
SCI_ADDTABSTOP: int | |
SCI_ADDTEXT: int | |
SCI_ADDUNDOACTION: int | |
SCI_ALLOCATE: int | |
SCI_ALLOCATEEXTENDEDSTYLES: int | |
SCI_ALLOCATELINECHARACTERINDEX: int | |
SCI_ALLOCATELINES: int | |
SCI_ALLOCATESUBSTYLES: int | |
SCI_ANNOTATIONCLEARALL: int | |
SCI_ANNOTATIONGETLINES: int | |
SCI_ANNOTATIONGETSTYLE: int | |
SCI_ANNOTATIONGETSTYLEOFFSET: int | |
SCI_ANNOTATIONGETSTYLES: int | |
SCI_ANNOTATIONGETTEXT: int | |
SCI_ANNOTATIONGETVISIBLE: int | |
SCI_ANNOTATIONSETSTYLE: int | |
SCI_ANNOTATIONSETSTYLEOFFSET: int | |
SCI_ANNOTATIONSETSTYLES: int | |
SCI_ANNOTATIONSETTEXT: int | |
SCI_ANNOTATIONSETVISIBLE: int | |
SCI_APPENDTEXT: int | |
SCI_ASSIGNCMDKEY: int | |
SCI_AUTOCACTIVE: int | |
SCI_AUTOCCANCEL: int | |
SCI_AUTOCCOMPLETE: int | |
SCI_AUTOCGETAUTOHIDE: int | |
SCI_AUTOCGETCANCELATSTART: int | |
SCI_AUTOCGETCASEINSENSITIVEBEHAVIOUR: int | |
SCI_AUTOCGETCHOOSESINGLE: int | |
SCI_AUTOCGETCURRENT: int | |
SCI_AUTOCGETCURRENTTEXT: int | |
SCI_AUTOCGETDROPRESTOFWORD: int | |
SCI_AUTOCGETIGNORECASE: int | |
SCI_AUTOCGETMAXHEIGHT: int | |
SCI_AUTOCGETMAXWIDTH: int | |
SCI_AUTOCGETMULTI: int | |
SCI_AUTOCGETOPTIONS: int | |
SCI_AUTOCGETORDER: int | |
SCI_AUTOCGETSEPARATOR: int | |
SCI_AUTOCGETTYPESEPARATOR: int | |
SCI_AUTOCPOSSTART: int | |
SCI_AUTOCSELECT: int | |
SCI_AUTOCSETAUTOHIDE: int | |
SCI_AUTOCSETCANCELATSTART: int | |
SCI_AUTOCSETCASEINSENSITIVEBEHAVIOUR: int | |
SCI_AUTOCSETCHOOSESINGLE: int | |
SCI_AUTOCSETDROPRESTOFWORD: int | |
SCI_AUTOCSETFILLUPS: int | |
SCI_AUTOCSETIGNORECASE: int | |
SCI_AUTOCSETMAXHEIGHT: int | |
SCI_AUTOCSETMAXWIDTH: int | |
SCI_AUTOCSETMULTI: int | |
SCI_AUTOCSETOPTIONS: int | |
SCI_AUTOCSETORDER: int | |
SCI_AUTOCSETSEPARATOR: int | |
SCI_AUTOCSETTYPESEPARATOR: int | |
SCI_AUTOCSHOW: int | |
SCI_AUTOCSTOPS: int | |
SCI_BACKTAB: int | |
SCI_BEGINUNDOACTION: int | |
SCI_BRACEBADLIGHT: int | |
SCI_BRACEBADLIGHTINDICATOR: int | |
SCI_BRACEHIGHLIGHT: int | |
SCI_BRACEHIGHLIGHTINDICATOR: int | |
SCI_BRACEMATCH: int | |
SCI_BRACEMATCHNEXT: int | |
SCI_CALLTIPACTIVE: int | |
SCI_CALLTIPCANCEL: int | |
SCI_CALLTIPPOSSTART: int | |
SCI_CALLTIPSETBACK: int | |
SCI_CALLTIPSETFORE: int | |
SCI_CALLTIPSETFOREHLT: int | |
SCI_CALLTIPSETHLT: int | |
SCI_CALLTIPSETPOSITION: int | |
SCI_CALLTIPSETPOSSTART: int | |
SCI_CALLTIPSHOW: int | |
SCI_CALLTIPUSESTYLE: int | |
SCI_CANCEL: int | |
SCI_CANPASTE: int | |
SCI_CANREDO: int | |
SCI_CANUNDO: int | |
SCI_CHANGEINSERTION: int | |
SCI_CHANGELASTUNDOACTIONTEXT: int | |
SCI_CHANGELEXERSTATE: int | |
SCI_CHANGESELECTIONMODE: int | |
SCI_CHARLEFT: int | |
SCI_CHARLEFTEXTEND: int | |
SCI_CHARLEFTRECTEXTEND: int | |
SCI_CHARPOSITIONFROMPOINT: int | |
SCI_CHARPOSITIONFROMPOINTCLOSE: int | |
SCI_CHARRIGHT: int | |
SCI_CHARRIGHTEXTEND: int | |
SCI_CHARRIGHTRECTEXTEND: int | |
SCI_CHOOSECARETX: int | |
SCI_CLEAR: int | |
SCI_CLEARALL: int | |
SCI_CLEARALLCMDKEYS: int | |
SCI_CLEARALLREPRESENTATIONS: int | |
SCI_CLEARCMDKEY: int | |
SCI_CLEARDOCUMENTSTYLE: int | |
SCI_CLEARREGISTEREDIMAGES: int | |
SCI_CLEARREPRESENTATION: int | |
SCI_CLEARSELECTIONS: int | |
SCI_CLEARTABSTOPS: int | |
SCI_COLOURISE: int | |
SCI_CONTRACTEDFOLDNEXT: int | |
SCI_CONVERTEOLS: int | |
SCI_COPY: int | |
SCI_COPYALLOWLINE: int | |
SCI_COPYRANGE: int | |
SCI_COPYTEXT: int | |
SCI_COUNTCHARACTERS: int | |
SCI_COUNTCODEUNITS: int | |
SCI_CREATEDOCUMENT: int | |
SCI_CREATELOADER: int | |
SCI_CUT: int | |
SCI_DELETEBACK: int | |
SCI_DELETEBACKNOTLINE: int | |
SCI_DELETERANGE: int | |
SCI_DELLINELEFT: int | |
SCI_DELLINERIGHT: int | |
SCI_DELWORDLEFT: int | |
SCI_DELWORDRIGHT: int | |
SCI_DELWORDRIGHTEND: int | |
SCI_DESCRIBEKEYWORDSETS: int | |
SCI_DESCRIBEPROPERTY: int | |
SCI_DESCRIPTIONOFSTYLE: int | |
SCI_DISTANCETOSECONDARYSTYLES: int | |
SCI_DOCLINEFROMVISIBLE: int | |
SCI_DOCUMENTEND: int | |
SCI_DOCUMENTENDEXTEND: int | |
SCI_DOCUMENTSTART: int | |
SCI_DOCUMENTSTARTEXTEND: int | |
SCI_DROPSELECTIONN: int | |
SCI_EDITTOGGLEOVERTYPE: int | |
SCI_EMPTYUNDOBUFFER: int | |
SCI_ENCODEDFROMUTF8: int | |
SCI_ENDUNDOACTION: int | |
SCI_ENSUREVISIBLE: int | |
SCI_ENSUREVISIBLEENFORCEPOLICY: int | |
SCI_EOLANNOTATIONCLEARALL: int | |
SCI_EOLANNOTATIONGETSTYLE: int | |
SCI_EOLANNOTATIONGETSTYLEOFFSET: int | |
SCI_EOLANNOTATIONGETTEXT: int | |
SCI_EOLANNOTATIONGETVISIBLE: int | |
SCI_EOLANNOTATIONSETSTYLE: int | |
SCI_EOLANNOTATIONSETSTYLEOFFSET: int | |
SCI_EOLANNOTATIONSETTEXT: int | |
SCI_EOLANNOTATIONSETVISIBLE: int | |
SCI_EXPANDCHILDREN: int | |
SCI_FINDCOLUMN: int | |
SCI_FINDINDICATORFLASH: int | |
SCI_FINDINDICATORHIDE: int | |
SCI_FINDINDICATORSHOW: int | |
SCI_FINDTEXT: int | |
SCI_FINDTEXTFULL: int | |
SCI_FOLDALL: int | |
SCI_FOLDCHILDREN: int | |
SCI_FOLDDISPLAYTEXTGETSTYLE: int | |
SCI_FOLDDISPLAYTEXTSETSTYLE: int | |
SCI_FOLDLINE: int | |
SCI_FORMATRANGE: int | |
SCI_FORMATRANGEFULL: int | |
SCI_FORMFEED: int | |
SCI_FREESUBSTYLES: int | |
SCI_GETACCESSIBILITY: int | |
SCI_GETADDITIONALCARETFORE: int | |
SCI_GETADDITIONALCARETSBLINK: int | |
SCI_GETADDITIONALCARETSVISIBLE: int | |
SCI_GETADDITIONALSELALPHA: int | |
SCI_GETADDITIONALSELECTIONTYPING: int | |
SCI_GETALLLINESVISIBLE: int | |
SCI_GETANCHOR: int | |
SCI_GETAUTOMATICFOLD: int | |
SCI_GETBACKSPACEUNINDENTS: int | |
SCI_GETBIDIRECTIONAL: int | |
SCI_GETBUFFEREDDRAW: int | |
SCI_GETCARETFORE: int | |
SCI_GETCARETLINEBACK: int | |
SCI_GETCARETLINEBACKALPHA: int | |
SCI_GETCARETLINEFRAME: int | |
SCI_GETCARETLINEHIGHLIGHTSUBLINE: int | |
SCI_GETCARETLINELAYER: int | |
SCI_GETCARETLINEVISIBLE: int | |
SCI_GETCARETLINEVISIBLEALWAYS: int | |
SCI_GETCARETPERIOD: int | |
SCI_GETCARETSTICKY: int | |
SCI_GETCARETSTYLE: int | |
SCI_GETCARETWIDTH: int | |
SCI_GETCHANGEHISTORY: int | |
SCI_GETCHARACTERCATEGORYOPTIMIZATION: int | |
SCI_GETCHARACTERPOINTER: int | |
SCI_GETCHARAT: int | |
SCI_GETCODEPAGE: int | |
SCI_GETCOLUMN: int | |
SCI_GETCOMMANDEVENTS: int | |
SCI_GETCONTROLCHARSYMBOL: int | |
SCI_GETCURLINE: int | |
SCI_GETCURRENTPOS: int | |
SCI_GETCURSOR: int | |
SCI_GETDEFAULTFOLDDISPLAYTEXT: int | |
SCI_GETDIRECTFUNCTION: int | |
SCI_GETDIRECTPOINTER: int | |
SCI_GETDIRECTSTATUSFUNCTION: int | |
SCI_GETDOCPOINTER: int | |
SCI_GETDOCUMENTOPTIONS: int | |
SCI_GETEDGECOLOUR: int | |
SCI_GETEDGECOLUMN: int | |
SCI_GETEDGEMODE: int | |
SCI_GETELEMENTALLOWSTRANSLUCENT: int | |
SCI_GETELEMENTBASECOLOUR: int | |
SCI_GETELEMENTCOLOUR: int | |
SCI_GETELEMENTISSET: int | |
SCI_GETENDATLASTLINE: int | |
SCI_GETENDSTYLED: int | |
SCI_GETEOLMODE: int | |
SCI_GETEXTRAASCENT: int | |
SCI_GETEXTRADESCENT: int | |
SCI_GETFIRSTVISIBLELINE: int | |
SCI_GETFOCUS: int | |
SCI_GETFOLDEXPANDED: int | |
SCI_GETFOLDLEVEL: int | |
SCI_GETFOLDPARENT: int | |
SCI_GETFONTLOCALE: int | |
SCI_GETFONTQUALITY: int | |
SCI_GETGAPPOSITION: int | |
SCI_GETHIGHLIGHTGUIDE: int | |
SCI_GETHOTSPOTACTIVEBACK: int | |
SCI_GETHOTSPOTACTIVEFORE: int | |
SCI_GETHOTSPOTACTIVEUNDERLINE: int | |
SCI_GETHOTSPOTSINGLELINE: int | |
SCI_GETHSCROLLBAR: int | |
SCI_GETIDENTIFIER: int | |
SCI_GETIDLESTYLING: int | |
SCI_GETIMEINTERACTION: int | |
SCI_GETINDENT: int | |
SCI_GETINDENTATIONGUIDES: int | |
SCI_GETINDICATORCURRENT: int | |
SCI_GETINDICATORVALUE: int | |
SCI_GETLASTCHILD: int | |
SCI_GETLAYOUTCACHE: int | |
SCI_GETLAYOUTTHREADS: int | |
SCI_GETLENGTH: int | |
SCI_GETLEXER: int | |
SCI_GETLEXERLANGUAGE: int | |
SCI_GETLINE: int | |
SCI_GETLINECHARACTERINDEX: int | |
SCI_GETLINECOUNT: int | |
SCI_GETLINEENDPOSITION: int | |
SCI_GETLINEENDTYPESACTIVE: int | |
SCI_GETLINEENDTYPESALLOWED: int | |
SCI_GETLINEENDTYPESSUPPORTED: int | |
SCI_GETLINEINDENTATION: int | |
SCI_GETLINEINDENTPOSITION: int | |
SCI_GETLINESELENDPOSITION: int | |
SCI_GETLINESELSTARTPOSITION: int | |
SCI_GETLINESTATE: int | |
SCI_GETLINEVISIBLE: int | |
SCI_GETMAINSELECTION: int | |
SCI_GETMARGINBACKN: int | |
SCI_GETMARGINCURSORN: int | |
SCI_GETMARGINLEFT: int | |
SCI_GETMARGINMASKN: int | |
SCI_GETMARGINOPTIONS: int | |
SCI_GETMARGINRIGHT: int | |
SCI_GETMARGINS: int | |
SCI_GETMARGINSENSITIVEN: int | |
SCI_GETMARGINTYPEN: int | |
SCI_GETMARGINWIDTHN: int | |
SCI_GETMAXLINESTATE: int | |
SCI_GETMODEVENTMASK: int | |
SCI_GETMODIFY: int | |
SCI_GETMOUSEDOWNCAPTURES: int | |
SCI_GETMOUSEDWELLTIME: int | |
SCI_GETMOUSESELECTIONRECTANGULARSWITCH: int | |
SCI_GETMOUSEWHEELCAPTURES: int | |
SCI_GETMOVEEXTENDSSELECTION: int | |
SCI_GETMULTIEDGECOLUMN: int | |
SCI_GETMULTIPASTE: int | |
SCI_GETMULTIPLESELECTION: int | |
SCI_GETNAMEDSTYLES: int | |
SCI_GETNEXTTABSTOP: int | |
SCI_GETOVERTYPE: int | |
SCI_GETPASTECONVERTENDINGS: int | |
SCI_GETPHASESDRAW: int | |
SCI_GETPOSITIONCACHE: int | |
SCI_GETPRIMARYSTYLEFROMSTYLE: int | |
SCI_GETPRINTCOLOURMODE: int | |
SCI_GETPRINTMAGNIFICATION: int | |
SCI_GETPRINTWRAPMODE: int | |
SCI_GETPROPERTY: int | |
SCI_GETPROPERTYEXPANDED: int | |
SCI_GETPROPERTYINT: int | |
SCI_GETPUNCTUATIONCHARS: int | |
SCI_GETRANGEPOINTER: int | |
SCI_GETREADONLY: int | |
SCI_GETRECTANGULARSELECTIONANCHOR: int | |
SCI_GETRECTANGULARSELECTIONANCHORVIRTUALSPACE: int | |
SCI_GETRECTANGULARSELECTIONCARET: int | |
SCI_GETRECTANGULARSELECTIONCARETVIRTUALSPACE: int | |
SCI_GETRECTANGULARSELECTIONMODIFIER: int | |
SCI_GETREPRESENTATION: int | |
SCI_GETREPRESENTATIONAPPEARANCE: int | |
SCI_GETREPRESENTATIONCOLOUR: int | |
SCI_GETSCROLLWIDTH: int | |
SCI_GETSCROLLWIDTHTRACKING: int | |
SCI_GETSEARCHFLAGS: int | |
SCI_GETSELALPHA: int | |
SCI_GETSELECTIONEMPTY: int | |
SCI_GETSELECTIONEND: int | |
SCI_GETSELECTIONHIDDEN: int | |
SCI_GETSELECTIONLAYER: int | |
SCI_GETSELECTIONMODE: int | |
SCI_GETSELECTIONNANCHOR: int | |
SCI_GETSELECTIONNANCHORVIRTUALSPACE: int | |
SCI_GETSELECTIONNCARET: int | |
SCI_GETSELECTIONNCARETVIRTUALSPACE: int | |
SCI_GETSELECTIONNEND: int | |
SCI_GETSELECTIONNENDVIRTUALSPACE: int | |
SCI_GETSELECTIONNSTART: int | |
SCI_GETSELECTIONNSTARTVIRTUALSPACE: int | |
SCI_GETSELECTIONS: int | |
SCI_GETSELECTIONSTART: int | |
SCI_GETSELEOLFILLED: int | |
SCI_GETSELTEXT: int | |
SCI_GETSTATUS: int | |
SCI_GETSTYLEAT: int | |
SCI_GETSTYLEDTEXT: int | |
SCI_GETSTYLEDTEXTFULL: int | |
SCI_GETSTYLEFROMSUBSTYLE: int | |
SCI_GETSTYLEINDEXAT: int | |
SCI_GETSUBSTYLEBASES: int | |
SCI_GETSUBSTYLESLENGTH: int | |
SCI_GETSUBSTYLESSTART: int | |
SCI_GETTABDRAWMODE: int | |
SCI_GETTABINDENTS: int | |
SCI_GETTABMINIMUMWIDTH: int | |
SCI_GETTABWIDTH: int | |
SCI_GETTAG: int | |
SCI_GETTARGETEND: int | |
SCI_GETTARGETENDVIRTUALSPACE: int | |
SCI_GETTARGETSTART: int | |
SCI_GETTARGETSTARTVIRTUALSPACE: int | |
SCI_GETTARGETTEXT: int | |
SCI_GETTECHNOLOGY: int | |
SCI_GETTEXT: int | |
SCI_GETTEXTLENGTH: int | |
SCI_GETTEXTRANGE: int | |
SCI_GETTEXTRANGEFULL: int | |
SCI_GETUNDOACTIONPOSITION: int | |
SCI_GETUNDOACTIONS: int | |
SCI_GETUNDOACTIONTEXT: int | |
SCI_GETUNDOACTIONTYPE: int | |
SCI_GETUNDOCOLLECTION: int | |
SCI_GETUNDOCURRENT: int | |
SCI_GETUNDODETACH: int | |
SCI_GETUNDOSAVEPOINT: int | |
SCI_GETUNDOTENTATIVE: int | |
SCI_GETUSETABS: int | |
SCI_GETVIEWEOL: int | |
SCI_GETVIEWWS: int | |
SCI_GETVIRTUALSPACEOPTIONS: int | |
SCI_GETVSCROLLBAR: int | |
SCI_GETWHITESPACECHARS: int | |
SCI_GETWHITESPACESIZE: int | |
SCI_GETWORDCHARS: int | |
SCI_GETWRAPINDENTMODE: int | |
SCI_GETWRAPMODE: int | |
SCI_GETWRAPSTARTINDENT: int | |
SCI_GETWRAPVISUALFLAGS: int | |
SCI_GETWRAPVISUALFLAGSLOCATION: int | |
SCI_GETXOFFSET: int | |
SCI_GETZOOM: int | |
SCI_GOTOLINE: int | |
SCI_GOTOPOS: int | |
SCI_GRABFOCUS: int | |
SCI_HIDELINES: int | |
SCI_HIDESELECTION: int | |
SCI_HOME: int | |
SCI_HOMEDISPLAY: int | |
SCI_HOMEDISPLAYEXTEND: int | |
SCI_HOMEEXTEND: int | |
SCI_HOMERECTEXTEND: int | |
SCI_HOMEWRAP: int | |
SCI_HOMEWRAPEXTEND: int | |
SCI_INDEXPOSITIONFROMLINE: int | |
SCI_INDICATORALLONFOR: int | |
SCI_INDICATORCLEARRANGE: int | |
SCI_INDICATOREND: int | |
SCI_INDICATORFILLRANGE: int | |
SCI_INDICATORSTART: int | |
SCI_INDICATORVALUEAT: int | |
SCI_INDICGETALPHA: int | |
SCI_INDICGETFLAGS: int | |
SCI_INDICGETFORE: int | |
SCI_INDICGETHOVERFORE: int | |
SCI_INDICGETHOVERSTYLE: int | |
SCI_INDICGETOUTLINEALPHA: int | |
SCI_INDICGETSTROKEWIDTH: int | |
SCI_INDICGETSTYLE: int | |
SCI_INDICGETUNDER: int | |
SCI_INDICSETALPHA: int | |
SCI_INDICSETFLAGS: int | |
SCI_INDICSETFORE: int | |
SCI_INDICSETHOVERFORE: int | |
SCI_INDICSETHOVERSTYLE: int | |
SCI_INDICSETOUTLINEALPHA: int | |
SCI_INDICSETSTROKEWIDTH: int | |
SCI_INDICSETSTYLE: int | |
SCI_INDICSETUNDER: int | |
SCI_INSERTTEXT: int | |
SCI_ISRANGEWORD: int | |
SCI_LINECOPY: int | |
SCI_LINECUT: int | |
SCI_LINEDELETE: int | |
SCI_LINEDOWN: int | |
SCI_LINEDOWNEXTEND: int | |
SCI_LINEDOWNRECTEXTEND: int | |
SCI_LINEDUPLICATE: int | |
SCI_LINEEND: int | |
SCI_LINEENDDISPLAY: int | |
SCI_LINEENDDISPLAYEXTEND: int | |
SCI_LINEENDEXTEND: int | |
SCI_LINEENDRECTEXTEND: int | |
SCI_LINEENDWRAP: int | |
SCI_LINEENDWRAPEXTEND: int | |
SCI_LINEFROMINDEXPOSITION: int | |
SCI_LINEFROMPOSITION: int | |
SCI_LINELENGTH: int | |
SCI_LINEREVERSE: int | |
SCI_LINESCROLL: int | |
SCI_LINESCROLLDOWN: int | |
SCI_LINESCROLLUP: int | |
SCI_LINESJOIN: int | |
SCI_LINESONSCREEN: int | |
SCI_LINESSPLIT: int | |
SCI_LINETRANSPOSE: int | |
SCI_LINEUP: int | |
SCI_LINEUPEXTEND: int | |
SCI_LINEUPRECTEXTEND: int | |
SCI_LOWERCASE: int | |
SCI_MARGINGETSTYLE: int | |
SCI_MARGINGETSTYLEOFFSET: int | |
SCI_MARGINGETSTYLES: int | |
SCI_MARGINGETTEXT: int | |
SCI_MARGINSETSTYLE: int | |
SCI_MARGINSETSTYLEOFFSET: int | |
SCI_MARGINSETSTYLES: int | |
SCI_MARGINSETTEXT: int | |
SCI_MARGINTEXTCLEARALL: int | |
SCI_MARKERADD: int | |
SCI_MARKERADDSET: int | |
SCI_MARKERDEFINE: int | |
SCI_MARKERDEFINEPIXMAP: int | |
SCI_MARKERDEFINERGBAIMAGE: int | |
SCI_MARKERDELETE: int | |
SCI_MARKERDELETEALL: int | |
SCI_MARKERDELETEHANDLE: int | |
SCI_MARKERENABLEHIGHLIGHT: int | |
SCI_MARKERGET: int | |
SCI_MARKERGETLAYER: int | |
SCI_MARKERHANDLEFROMLINE: int | |
SCI_MARKERLINEFROMHANDLE: int | |
SCI_MARKERNEXT: int | |
SCI_MARKERNUMBERFROMLINE: int | |
SCI_MARKERPREVIOUS: int | |
SCI_MARKERSETALPHA: int | |
SCI_MARKERSETBACK: int | |
SCI_MARKERSETBACKSELECTED: int | |
SCI_MARKERSETBACKSELECTEDTRANSLUCENT: int | |
SCI_MARKERSETBACKTRANSLUCENT: int | |
SCI_MARKERSETFORE: int | |
SCI_MARKERSETFORETRANSLUCENT: int | |
SCI_MARKERSETLAYER: int | |
SCI_MARKERSETSTROKEWIDTH: int | |
SCI_MARKERSYMBOLDEFINED: int | |
SCI_MOVECARETINSIDEVIEW: int | |
SCI_MOVESELECTEDLINESDOWN: int | |
SCI_MOVESELECTEDLINESUP: int | |
SCI_MULTIEDGEADDLINE: int | |
SCI_MULTIEDGECLEARALL: int | |
SCI_MULTIPLESELECTADDEACH: int | |
SCI_MULTIPLESELECTADDNEXT: int | |
SCI_NAMEOFSTYLE: int | |
SCI_NEWLINE: int | |
SCI_NULL: int | |
SCI_PAGEDOWN: int | |
SCI_PAGEDOWNEXTEND: int | |
SCI_PAGEDOWNRECTEXTEND: int | |
SCI_PAGEUP: int | |
SCI_PAGEUPEXTEND: int | |
SCI_PAGEUPRECTEXTEND: int | |
SCI_PARADOWN: int | |
SCI_PARADOWNEXTEND: int | |
SCI_PARAUP: int | |
SCI_PARAUPEXTEND: int | |
SCI_PASTE: int | |
SCI_POINTXFROMPOSITION: int | |
SCI_POINTYFROMPOSITION: int | |
SCI_POSITIONAFTER: int | |
SCI_POSITIONBEFORE: int | |
SCI_POSITIONFROMLINE: int | |
SCI_POSITIONFROMPOINT: int | |
SCI_POSITIONFROMPOINTCLOSE: int | |
SCI_POSITIONRELATIVE: int | |
SCI_POSITIONRELATIVECODEUNITS: int | |
SCI_PRIVATELEXERCALL: int | |
SCI_PROPERTYNAMES: int | |
SCI_PROPERTYTYPE: int | |
SCI_PUSHUNDOACTIONTYPE: int | |
SCI_REDO: int | |
SCI_REGISTERIMAGE: int | |
SCI_REGISTERRGBAIMAGE: int | |
SCI_RELEASEALLEXTENDEDSTYLES: int | |
SCI_RELEASEDOCUMENT: int | |
SCI_RELEASELINECHARACTERINDEX: int | |
SCI_REPLACERECTANGULAR: int | |
SCI_REPLACESEL: int | |
SCI_REPLACETARGET: int | |
SCI_REPLACETARGETMINIMAL: int | |
SCI_REPLACETARGETRE: int | |
SCI_RESETELEMENTCOLOUR: int | |
SCI_RGBAIMAGESETHEIGHT: int | |
SCI_RGBAIMAGESETSCALE: int | |
SCI_RGBAIMAGESETWIDTH: int | |
SCI_ROTATESELECTION: int | |
SCI_SCROLLCARET: int | |
SCI_SCROLLRANGE: int | |
SCI_SCROLLTOEND: int | |
SCI_SCROLLTOSTART: int | |
SCI_SEARCHANCHOR: int | |
SCI_SEARCHINTARGET: int | |
SCI_SEARCHNEXT: int | |
SCI_SEARCHPREV: int | |
SCI_SELECTALL: int | |
SCI_SELECTIONDUPLICATE: int | |
SCI_SELECTIONFROMPOINT: int | |
SCI_SELECTIONISRECTANGLE: int | |
SCI_SETACCESSIBILITY: int | |
SCI_SETADDITIONALCARETFORE: int | |
SCI_SETADDITIONALCARETSBLINK: int | |
SCI_SETADDITIONALCARETSVISIBLE: int | |
SCI_SETADDITIONALSELALPHA: int | |
SCI_SETADDITIONALSELBACK: int | |
SCI_SETADDITIONALSELECTIONTYPING: int | |
SCI_SETADDITIONALSELFORE: int | |
SCI_SETANCHOR: int | |
SCI_SETAUTOMATICFOLD: int | |
SCI_SETBACKSPACEUNINDENTS: int | |
SCI_SETBIDIRECTIONAL: int | |
SCI_SETBUFFEREDDRAW: int | |
SCI_SETCARETFORE: int | |
SCI_SETCARETLINEBACK: int | |
SCI_SETCARETLINEBACKALPHA: int | |
SCI_SETCARETLINEFRAME: int | |
SCI_SETCARETLINEHIGHLIGHTSUBLINE: int | |
SCI_SETCARETLINELAYER: int | |
SCI_SETCARETLINEVISIBLE: int | |
SCI_SETCARETLINEVISIBLEALWAYS: int | |
SCI_SETCARETPERIOD: int | |
SCI_SETCARETSTICKY: int | |
SCI_SETCARETSTYLE: int | |
SCI_SETCARETWIDTH: int | |
SCI_SETCHANGEHISTORY: int | |
SCI_SETCHARACTERCATEGORYOPTIMIZATION: int | |
SCI_SETCHARSDEFAULT: int | |
SCI_SETCODEPAGE: int | |
SCI_SETCOMMANDEVENTS: int | |
SCI_SETCONTROLCHARSYMBOL: int | |
SCI_SETCURRENTPOS: int | |
SCI_SETCURSOR: int | |
SCI_SETDEFAULTFOLDDISPLAYTEXT: int | |
SCI_SETDOCPOINTER: int | |
SCI_SETEDGECOLOUR: int | |
SCI_SETEDGECOLUMN: int | |
SCI_SETEDGEMODE: int | |
SCI_SETELEMENTCOLOUR: int | |
SCI_SETEMPTYSELECTION: int | |
SCI_SETENDATLASTLINE: int | |
SCI_SETEOLMODE: int | |
SCI_SETEXTRAASCENT: int | |
SCI_SETEXTRADESCENT: int | |
SCI_SETFIRSTVISIBLELINE: int | |
SCI_SETFOCUS: int | |
SCI_SETFOLDEXPANDED: int | |
SCI_SETFOLDFLAGS: int | |
SCI_SETFOLDLEVEL: int | |
SCI_SETFOLDMARGINCOLOUR: int | |
SCI_SETFOLDMARGINHICOLOUR: int | |
SCI_SETFONTLOCALE: int | |
SCI_SETFONTQUALITY: int | |
SCI_SETHIGHLIGHTGUIDE: int | |
SCI_SETHOTSPOTACTIVEBACK: int | |
SCI_SETHOTSPOTACTIVEFORE: int | |
SCI_SETHOTSPOTACTIVEUNDERLINE: int | |
SCI_SETHOTSPOTSINGLELINE: int | |
SCI_SETHSCROLLBAR: int | |
SCI_SETIDENTIFIER: int | |
SCI_SETIDENTIFIERS: int | |
SCI_SETIDLESTYLING: int | |
SCI_SETILEXER: int | |
SCI_SETIMEINTERACTION: int | |
SCI_SETINDENT: int | |
SCI_SETINDENTATIONGUIDES: int | |
SCI_SETINDICATORCURRENT: int | |
SCI_SETINDICATORVALUE: int | |
SCI_SETKEYWORDS: int | |
SCI_SETLAYOUTCACHE: int | |
SCI_SETLAYOUTTHREADS: int | |
SCI_SETLENGTHFORENCODE: int | |
SCI_SETLINEENDTYPESALLOWED: int | |
SCI_SETLINEINDENTATION: int | |
SCI_SETLINESTATE: int | |
SCI_SETMAINSELECTION: int | |
SCI_SETMARGINBACKN: int | |
SCI_SETMARGINCURSORN: int | |
SCI_SETMARGINLEFT: int | |
SCI_SETMARGINMASKN: int | |
SCI_SETMARGINOPTIONS: int | |
SCI_SETMARGINRIGHT: int | |
SCI_SETMARGINS: int | |
SCI_SETMARGINSENSITIVEN: int | |
SCI_SETMARGINTYPEN: int | |
SCI_SETMARGINWIDTHN: int | |
SCI_SETMODEVENTMASK: int | |
SCI_SETMOUSEDOWNCAPTURES: int | |
SCI_SETMOUSEDWELLTIME: int | |
SCI_SETMOUSESELECTIONRECTANGULARSWITCH: int | |
SCI_SETMOUSEWHEELCAPTURES: int | |
SCI_SETMOVEEXTENDSSELECTION: int | |
SCI_SETMULTIPASTE: int | |
SCI_SETMULTIPLESELECTION: int | |
SCI_SETOVERTYPE: int | |
SCI_SETPASTECONVERTENDINGS: int | |
SCI_SETPHASESDRAW: int | |
SCI_SETPOSITIONCACHE: int | |
SCI_SETPRINTCOLOURMODE: int | |
SCI_SETPRINTMAGNIFICATION: int | |
SCI_SETPRINTWRAPMODE: int | |
SCI_SETPROPERTY: int | |
SCI_SETPUNCTUATIONCHARS: int | |
SCI_SETREADONLY: int | |
SCI_SETRECTANGULARSELECTIONANCHOR: int | |
SCI_SETRECTANGULARSELECTIONANCHORVIRTUALSPACE: int | |
SCI_SETRECTANGULARSELECTIONCARET: int | |
SCI_SETRECTANGULARSELECTIONCARETVIRTUALSPACE: int | |
SCI_SETRECTANGULARSELECTIONMODIFIER: int | |
SCI_SETREPRESENTATION: int | |
SCI_SETREPRESENTATIONAPPEARANCE: int | |
SCI_SETREPRESENTATIONCOLOUR: int | |
SCI_SETSAVEPOINT: int | |
SCI_SETSCROLLWIDTH: int | |
SCI_SETSCROLLWIDTHTRACKING: int | |
SCI_SETSEARCHFLAGS: int | |
SCI_SETSEL: int | |
SCI_SETSELALPHA: int | |
SCI_SETSELBACK: int | |
SCI_SETSELECTION: int | |
SCI_SETSELECTIONEND: int | |
SCI_SETSELECTIONLAYER: int | |
SCI_SETSELECTIONMODE: int | |
SCI_SETSELECTIONNANCHOR: int | |
SCI_SETSELECTIONNANCHORVIRTUALSPACE: int | |
SCI_SETSELECTIONNCARET: int | |
SCI_SETSELECTIONNCARETVIRTUALSPACE: int | |
SCI_SETSELECTIONNEND: int | |
SCI_SETSELECTIONNSTART: int | |
SCI_SETSELECTIONSTART: int | |
SCI_SETSELEOLFILLED: int | |
SCI_SETSELFORE: int | |
SCI_SETSTATUS: int | |
SCI_SETSTYLING: int | |
SCI_SETSTYLINGEX: int | |
SCI_SETTABDRAWMODE: int | |
SCI_SETTABINDENTS: int | |
SCI_SETTABMINIMUMWIDTH: int | |
SCI_SETTABWIDTH: int | |
SCI_SETTARGETEND: int | |
SCI_SETTARGETENDVIRTUALSPACE: int | |
SCI_SETTARGETRANGE: int | |
SCI_SETTARGETSTART: int | |
SCI_SETTARGETSTARTVIRTUALSPACE: int | |
SCI_SETTECHNOLOGY: int | |
SCI_SETTEXT: int | |
SCI_SETUNDOCOLLECTION: int | |
SCI_SETUNDOCURRENT: int | |
SCI_SETUNDODETACH: int | |
SCI_SETUNDOSAVEPOINT: int | |
SCI_SETUNDOTENTATIVE: int | |
SCI_SETUSETABS: int | |
SCI_SETVIEWEOL: int | |
SCI_SETVIEWWS: int | |
SCI_SETVIRTUALSPACEOPTIONS: int | |
SCI_SETVISIBLEPOLICY: int | |
SCI_SETVSCROLLBAR: int | |
SCI_SETWHITESPACEBACK: int | |
SCI_SETWHITESPACECHARS: int | |
SCI_SETWHITESPACEFORE: int | |
SCI_SETWHITESPACESIZE: int | |
SCI_SETWORDCHARS: int | |
SCI_SETWRAPINDENTMODE: int | |
SCI_SETWRAPMODE: int | |
SCI_SETWRAPSTARTINDENT: int | |
SCI_SETWRAPVISUALFLAGS: int | |
SCI_SETWRAPVISUALFLAGSLOCATION: int | |
SCI_SETXCARETPOLICY: int | |
SCI_SETXOFFSET: int | |
SCI_SETYCARETPOLICY: int | |
SCI_SETZOOM: int | |
SCI_SHOWLINES: int | |
SCI_STARTRECORD: int | |
SCI_STARTSTYLING: int | |
SCI_STOPRECORD: int | |
SCI_STUTTEREDPAGEDOWN: int | |
SCI_STUTTEREDPAGEDOWNEXTEND: int | |
SCI_STUTTEREDPAGEUP: int | |
SCI_STUTTEREDPAGEUPEXTEND: int | |
SCI_STYLECLEARALL: int | |
SCI_STYLEGETBACK: int | |
SCI_STYLEGETBOLD: int | |
SCI_STYLEGETCASE: int | |
SCI_STYLEGETCHANGEABLE: int | |
SCI_STYLEGETCHARACTERSET: int | |
SCI_STYLEGETCHECKMONOSPACED: int | |
SCI_STYLEGETEOLFILLED: int | |
SCI_STYLEGETFONT: int | |
SCI_STYLEGETFORE: int | |
SCI_STYLEGETHOTSPOT: int | |
SCI_STYLEGETINVISIBLEREPRESENTATION: int | |
SCI_STYLEGETITALIC: int | |
SCI_STYLEGETSIZE: int | |
SCI_STYLEGETSIZEFRACTIONAL: int | |
SCI_STYLEGETUNDERLINE: int | |
SCI_STYLEGETVISIBLE: int | |
SCI_STYLEGETWEIGHT: int | |
SCI_STYLERESETDEFAULT: int | |
SCI_STYLESETBACK: int | |
SCI_STYLESETBOLD: int | |
SCI_STYLESETCASE: int | |
SCI_STYLESETCHANGEABLE: int | |
SCI_STYLESETCHARACTERSET: int | |
SCI_STYLESETCHECKMONOSPACED: int | |
SCI_STYLESETEOLFILLED: int | |
SCI_STYLESETFONT: int | |
SCI_STYLESETFORE: int | |
SCI_STYLESETHOTSPOT: int | |
SCI_STYLESETINVISIBLEREPRESENTATION: int | |
SCI_STYLESETITALIC: int | |
SCI_STYLESETSIZE: int | |
SCI_STYLESETSIZEFRACTIONAL: int | |
SCI_STYLESETUNDERLINE: int | |
SCI_STYLESETVISIBLE: int | |
SCI_STYLESETWEIGHT: int | |
SCI_SUPPORTSFEATURE: int | |
SCI_SWAPMAINANCHORCARET: int | |
SCI_TAB: int | |
SCI_TAGSOFSTYLE: int | |
SCI_TARGETASUTF8: int | |
SCI_TARGETFROMSELECTION: int | |
SCI_TARGETWHOLEDOCUMENT: int | |
SCI_TEXTHEIGHT: int | |
SCI_TEXTWIDTH: int | |
SCI_TOGGLECARETSTICKY: int | |
SCI_TOGGLEFOLD: int | |
SCI_TOGGLEFOLDSHOWTEXT: int | |
SCI_UNDO: int | |
SCI_UPPERCASE: int | |
SCI_USEPOPUP: int | |
SCI_USERLISTSHOW: int | |
SCI_VCHOME: int | |
SCI_VCHOMEDISPLAY: int | |
SCI_VCHOMEDISPLAYEXTEND: int | |
SCI_VCHOMEEXTEND: int | |
SCI_VCHOMERECTEXTEND: int | |
SCI_VCHOMEWRAP: int | |
SCI_VCHOMEWRAPEXTEND: int | |
SCI_VERTICALCENTRECARET: int | |
SCI_VISIBLEFROMDOCLINE: int | |
SCI_WORDENDPOSITION: int | |
SCI_WORDLEFT: int | |
SCI_WORDLEFTEND: int | |
SCI_WORDLEFTENDEXTEND: int | |
SCI_WORDLEFTEXTEND: int | |
SCI_WORDPARTLEFT: int | |
SCI_WORDPARTLEFTEXTEND: int | |
SCI_WORDPARTRIGHT: int | |
SCI_WORDPARTRIGHTEXTEND: int | |
SCI_WORDRIGHT: int | |
SCI_WORDRIGHTEND: int | |
SCI_WORDRIGHTENDEXTEND: int | |
SCI_WORDRIGHTEXTEND: int | |
SCI_WORDSTARTPOSITION: int | |
SCI_WRAPCOUNT: int | |
SCI_ZOOMIN: int | |
SCI_ZOOMOUT: int | |
class NOTIFICATION(IntEnum): | |
BUFFERACTIVATED: int | |
FILEBEFORECLOSE: int | |
FILEBEFORELOAD: int | |
FILEBEFOREOPEN: int | |
FILEBEFORESAVE: int | |
FILECLOSED: int | |
FILELOADFAILED: int | |
FILEOPENED: int | |
FILESAVED: int | |
LANGCHANGED: int | |
READONLYCHANGED: int | |
READY: int | |
SHORTCUTREMAPPED: int | |
SHUTDOWN: int | |
TBMODIFICATION: int | |
WORDSTYLESUPDATED: int | |
class MESSAGEBOXFLAGS(IntFlag): | |
ABORTRETRYIGNORE: int | |
CANCELTRYCONTINUE: int | |
DEFBUTTON1: int | |
DEFBUTTON2: int | |
DEFBUTTON3: int | |
DEFBUTTON4: int | |
ICONASTERISK: int | |
ICONERROR: int | |
ICONEXCLAMATION: int | |
ICONHAND: int | |
ICONINFORMATION: int | |
ICONQUESTION: int | |
ICONSTOP: int | |
ICONWARNING: int | |
OK: int | |
OKCANCEL: int | |
RETRYCANCEL: int | |
YESNO: int | |
YESNOCANCEL: int | |
RESULTCONTINUE: int | |
RESULTABORT: int | |
RESULTCANCEL: int | |
RESULTIGNORE: int | |
RESULTNO: int | |
RESULTOK: int | |
RESULTRETRY: int | |
RESULTTRYAGAIN: int | |
RESULTYES: int | |
class MENUCOMMAND(IntEnum): | |
CLEAN_RECENT_FILE_LIST: int | |
EDIT_AUTOCOMPLETE: int | |
EDIT_AUTOCOMPLETE_CURRENTFILE: int | |
EDIT_AUTOCOMPLETE_PATH: int | |
EDIT_BEGINENDSELECT: int | |
EDIT_BLANKLINEABOVECURRENT: int | |
EDIT_BLANKLINEBELOWCURRENT: int | |
EDIT_BLOCK_COMMENT: int | |
EDIT_BLOCK_COMMENT_SET: int | |
EDIT_BLOCK_UNCOMMENT: int | |
EDIT_CHANGESEARCHENGINE: int | |
EDIT_CHAR_PANEL: int | |
EDIT_CLEARREADONLY: int | |
EDIT_CLIPBOARDHISTORY_PANEL: int | |
EDIT_COLUMNMODE: int | |
EDIT_COLUMNMODETIP: int | |
EDIT_COPY: int | |
EDIT_COPY_BINARY: int | |
EDIT_CURRENTDIRTOCLIP: int | |
EDIT_CUT: int | |
EDIT_CUT_BINARY: int | |
EDIT_DELETE: int | |
EDIT_DUP_LINE: int | |
EDIT_EOL2WS: int | |
EDIT_FILENAMETOCLIP: int | |
EDIT_FULLPATHTOCLIP: int | |
EDIT_FUNCCALLTIP: int | |
EDIT_INS_TAB: int | |
EDIT_INVERTCASE: int | |
EDIT_JOIN_LINES: int | |
EDIT_LINE_DOWN: int | |
EDIT_LINE_UP: int | |
EDIT_LOWERCASE: int | |
EDIT_LTR: int | |
EDIT_OPENASFILE: int | |
EDIT_OPENINFOLDER: int | |
EDIT_PASTE: int | |
EDIT_PASTE_AS_HTML: int | |
EDIT_PASTE_AS_RTF: int | |
EDIT_PASTE_BINARY: int | |
EDIT_PROPERCASE_BLEND: int | |
EDIT_PROPERCASE_FORCE: int | |
EDIT_RANDOMCASE: int | |
EDIT_REDO: int | |
EDIT_REMOVEEMPTYLINES: int | |
EDIT_REMOVEEMPTYLINESWITHBLANK: int | |
EDIT_RMV_TAB: int | |
EDIT_RTL: int | |
EDIT_SEARCHONINTERNET: int | |
EDIT_SELECTALL: int | |
EDIT_SENTENCECASE_BLEND: int | |
EDIT_SENTENCECASE_FORCE: int | |
EDIT_SETREADONLY: int | |
EDIT_SORTLINES_DECIMALCOMMA_ASCENDING: int | |
EDIT_SORTLINES_DECIMALCOMMA_DESCENDING: int | |
EDIT_SORTLINES_DECIMALDOT_ASCENDING: int | |
EDIT_SORTLINES_DECIMALDOT_DESCENDING: int | |
EDIT_SORTLINES_INTEGER_ASCENDING: int | |
EDIT_SORTLINES_INTEGER_DESCENDING: int | |
EDIT_SORTLINES_LEXICOGRAPHIC_ASCENDING: int | |
EDIT_SORTLINES_LEXICOGRAPHIC_DESCENDING: int | |
EDIT_SPLIT_LINES: int | |
EDIT_STREAM_COMMENT: int | |
EDIT_STREAM_UNCOMMENT: int | |
EDIT_SW2TAB_ALL: int | |
EDIT_SW2TAB_LEADING: int | |
EDIT_TAB2SW: int | |
EDIT_TRANSPOSE_LINE: int | |
EDIT_TRIMALL: int | |
EDIT_TRIMLINEHEAD: int | |
EDIT_TRIMTRAILING: int | |
EDIT_TRIM_BOTH: int | |
EDIT_UNDO: int | |
EDIT_UPPERCASE: int | |
EXPORT_FUNC_LIST_AND_QUIT: int | |
FILEMENU_EXISTCMDPOSITION: int | |
FILEMENU_LASTONE: int | |
FILESWITCHER_FILESCLOSE: int | |
FILESWITCHER_FILESCLOSEOTHERS: int | |
FILE_CLOSE: int | |
FILE_CLOSEALL: int | |
FILE_CLOSEALL_BUT_CURRENT: int | |
FILE_CLOSEALL_TOLEFT: int | |
FILE_CLOSEALL_TORIGHT: int | |
FILE_DELETE: int | |
FILE_EXIT: int | |
FILE_LOADSESSION: int | |
FILE_NEW: int | |
FILE_OPEN: int | |
FILE_OPENFOLDERASWORSPACE: int | |
FILE_OPEN_CMD: int | |
FILE_OPEN_DEFAULT_VIEWER: int | |
FILE_OPEN_FOLDER: int | |
FILE_PRINT: int | |
FILE_PRINTNOW: int | |
FILE_RELOAD: int | |
FILE_RENAME: int | |
FILE_RESTORELASTCLOSEDFILE: int | |
FILE_SAVE: int | |
FILE_SAVEALL: int | |
FILE_SAVEAS: int | |
FILE_SAVECOPYAS: int | |
FILE_SAVESESSION: int | |
FOCUS_ON_FOUND_RESULTS: int | |
FORMAT_ANSI: int | |
FORMAT_AS_UTF_8: int | |
FORMAT_BIG5: int | |
FORMAT_CONV2_ANSI: int | |
FORMAT_CONV2_AS_UTF_8: int | |
FORMAT_CONV2_UCS_2BE: int | |
FORMAT_CONV2_UCS_2LE: int | |
FORMAT_CONV2_UTF_8: int | |
FORMAT_DOS_437: int | |
FORMAT_DOS_720: int | |
FORMAT_DOS_737: int | |
FORMAT_DOS_775: int | |
FORMAT_DOS_850: int | |
FORMAT_DOS_852: int | |
FORMAT_DOS_855: int | |
FORMAT_DOS_857: int | |
FORMAT_DOS_858: int | |
FORMAT_DOS_860: int | |
FORMAT_DOS_861: int | |
FORMAT_DOS_862: int | |
FORMAT_DOS_863: int | |
FORMAT_DOS_865: int | |
FORMAT_DOS_866: int | |
FORMAT_DOS_869: int | |
FORMAT_ENCODE: int | |
FORMAT_ENCODE_END: int | |
FORMAT_EUC_KR: int | |
FORMAT_GB2312: int | |
FORMAT_ISO_8859_1: int | |
FORMAT_ISO_8859_13: int | |
FORMAT_ISO_8859_14: int | |
FORMAT_ISO_8859_15: int | |
FORMAT_ISO_8859_2: int | |
FORMAT_ISO_8859_3: int | |
FORMAT_ISO_8859_4: int | |
FORMAT_ISO_8859_5: int | |
FORMAT_ISO_8859_6: int | |
FORMAT_ISO_8859_7: int | |
FORMAT_ISO_8859_8: int | |
FORMAT_ISO_8859_9: int | |
FORMAT_KOI8R_CYRILLIC: int | |
FORMAT_KOI8U_CYRILLIC: int | |
FORMAT_KOREAN_WIN: int | |
FORMAT_MAC_CYRILLIC: int | |
FORMAT_SHIFT_JIS: int | |
FORMAT_TIS_620: int | |
FORMAT_TODOS: int | |
FORMAT_TOMAC: int | |
FORMAT_TOUNIX: int | |
FORMAT_UCS_2BE: int | |
FORMAT_UCS_2LE: int | |
FORMAT_UTF_8: int | |
FORMAT_WIN_1250: int | |
FORMAT_WIN_1251: int | |
FORMAT_WIN_1252: int | |
FORMAT_WIN_1253: int | |
FORMAT_WIN_1254: int | |
FORMAT_WIN_1255: int | |
FORMAT_WIN_1256: int | |
FORMAT_WIN_1257: int | |
FORMAT_WIN_1258: int | |
FORUM: int | |
HELP: int | |
HOMESWEETHOME: int | |
LANGSTYLE_CONFIG_DLG: int | |
LANG_ADA: int | |
LANG_ASCII: int | |
LANG_ASM: int | |
LANG_ASN1: int | |
LANG_ASP: int | |
LANG_AU3: int | |
LANG_AVS: int | |
LANG_BAANC: int | |
LANG_BASH: int | |
LANG_BATCH: int | |
LANG_BLITZBASIC: int | |
LANG_C: int | |
LANG_CAML: int | |
LANG_CMAKE: int | |
LANG_COBOL: int | |
LANG_COFFEESCRIPT: int | |
LANG_CPP: int | |
LANG_CS: int | |
LANG_CSOUND: int | |
LANG_CSS: int | |
LANG_D: int | |
LANG_DIFF: int | |
LANG_ERLANG: int | |
LANG_ESCRIPT: int | |
LANG_EXTERNAL: int | |
LANG_EXTERNAL_LIMIT: int | |
LANG_FLASH: int | |
LANG_FORTH: int | |
LANG_FORTRAN: int | |
LANG_FORTRAN_77: int | |
LANG_FREEBASIC: int | |
LANG_GUI4CLI: int | |
LANG_HASKELL: int | |
LANG_HTML: int | |
LANG_IHEX: int | |
LANG_INI: int | |
LANG_INNO: int | |
LANG_JAVA: int | |
LANG_JS: int | |
LANG_JSON: int | |
LANG_JSP: int | |
LANG_KIX: int | |
LANG_LATEX: int | |
LANG_LISP: int | |
LANG_LUA: int | |
LANG_MAKEFILE: int | |
LANG_MATLAB: int | |
LANG_MMIXAL: int | |
LANG_NIMROD: int | |
LANG_NNCRONTAB: int | |
LANG_NSIS: int | |
LANG_OBJC: int | |
LANG_OSCRIPT: int | |
LANG_PASCAL: int | |
LANG_PERL: int | |
LANG_PHP: int | |
LANG_POWERSHELL: int | |
LANG_PROPS: int | |
LANG_PS: int | |
LANG_PUREBASIC: int | |
LANG_PYTHON: int | |
LANG_R: int | |
LANG_RC: int | |
LANG_REBOL: int | |
LANG_REGISTRY: int | |
LANG_RUBY: int | |
LANG_RUST: int | |
LANG_SCHEME: int | |
LANG_SMALLTALK: int | |
LANG_SPICE: int | |
LANG_SQL: int | |
LANG_SREC: int | |
LANG_SWIFT: int | |
LANG_TCL: int | |
LANG_TEHEX: int | |
LANG_TEX: int | |
LANG_TEXT: int | |
LANG_TXT2TAGS: int | |
LANG_USER: int | |
LANG_USER_DLG: int | |
LANG_USER_LIMIT: int | |
LANG_VB: int | |
LANG_VERILOG: int | |
LANG_VHDL: int | |
LANG_VISUALPROLOG: int | |
LANG_XML: int | |
LANG_YAML: int | |
MACRO_PLAYBACKRECORDEDMACRO: int | |
MACRO_RUNMULTIMACRODLG: int | |
MACRO_SAVECURRENTMACRO: int | |
MACRO_STARTRECORDINGMACRO: int | |
MACRO_STOPRECORDINGMACRO: int | |
ONLINEHELP: int | |
OPEN_ALL_RECENT_FILE: int | |
PLUGINSHOME: int | |
PROJECTPAGE: int | |
SEARCH_CLEARALLMARKS: int | |
SEARCH_CLEAR_BOOKMARKS: int | |
SEARCH_COPYMARKEDLINES: int | |
SEARCH_CUTMARKEDLINES: int | |
SEARCH_DELETEMARKEDLINES: int | |
SEARCH_DELETEUNMARKEDLINES: int | |
SEARCH_FIND: int | |
SEARCH_FINDCHARINRANGE: int | |
SEARCH_FINDINCREMENT: int | |
SEARCH_FINDINFILES: int | |
SEARCH_FINDNEXT: int | |
SEARCH_FINDPREV: int | |
SEARCH_GONEXTMARKER1: int | |
SEARCH_GONEXTMARKER2: int | |
SEARCH_GONEXTMARKER3: int | |
SEARCH_GONEXTMARKER4: int | |
SEARCH_GONEXTMARKER5: int | |
SEARCH_GONEXTMARKER_DEF: int | |
SEARCH_GOPREVMARKER1: int | |
SEARCH_GOPREVMARKER2: int | |
SEARCH_GOPREVMARKER3: int | |
SEARCH_GOPREVMARKER4: int | |
SEARCH_GOPREVMARKER5: int | |
SEARCH_GOPREVMARKER_DEF: int | |
SEARCH_GOTOLINE: int | |
SEARCH_GOTOMATCHINGBRACE: int | |
SEARCH_GOTONEXTFOUND: int | |
SEARCH_GOTOPREVFOUND: int | |
SEARCH_INVERSEMARKS: int | |
SEARCH_MARK: int | |
SEARCH_MARKALLEXT1: int | |
SEARCH_MARKALLEXT2: int | |
SEARCH_MARKALLEXT3: int | |
SEARCH_MARKALLEXT4: int | |
SEARCH_MARKALLEXT5: int | |
SEARCH_NEXT_BOOKMARK: int | |
SEARCH_PASTEMARKEDLINES: int | |
SEARCH_PREV_BOOKMARK: int | |
SEARCH_REPLACE: int | |
SEARCH_SELECTMATCHINGBRACES: int | |
SEARCH_SETANDFINDNEXT: int | |
SEARCH_SETANDFINDPREV: int | |
SEARCH_TOGGLE_BOOKMARK: int | |
SEARCH_UNMARKALLEXT1: int | |
SEARCH_UNMARKALLEXT2: int | |
SEARCH_UNMARKALLEXT3: int | |
SEARCH_UNMARKALLEXT4: int | |
SEARCH_UNMARKALLEXT5: int | |
SEARCH_VOLATILE_FINDNEXT: int | |
SEARCH_VOLATILE_FINDPREV: int | |
SETTING_EDITCONTEXTMENU: int | |
SETTING_IMPORTPLUGIN: int | |
SETTING_IMPORTSTYLETHEMS: int | |
SETTING_PREFERECE: int | |
SETTING_REMEMBER_LAST_SESSION: int | |
SETTING_SHORTCUT_MAPPER: int | |
SETTING_SHORTCUT_MAPPER_MACRO: int | |
SETTING_SHORTCUT_MAPPER_RUN: int | |
SETTING_TRAYICON: int | |
SYSTRAYPOPUP_ACTIVATE: int | |
SYSTRAYPOPUP_CLOSE: int | |
SYSTRAYPOPUP_NEWDOC: int | |
SYSTRAYPOPUP_NEW_AND_PASTE: int | |
SYSTRAYPOPUP_OPENFILE: int | |
TOOL_MD5_GENERATE: int | |
TOOL_MD5_GENERATEFROMFILE: int | |
TOOL_MD5_GENERATEINTOCLIPBOARD: int | |
UPDATE_NPP: int | |
VIEW_ALL_CHARACTERS: int | |
VIEW_ALWAYSONTOP: int | |
VIEW_CLONE_TO_ANOTHER_VIEW: int | |
VIEW_CURLINE_HILITING: int | |
VIEW_DOCCHANGEMARGIN: int | |
VIEW_DOC_MAP: int | |
VIEW_DRAWTABBAR_CLOSEBOTTUN: int | |
VIEW_DRAWTABBAR_DBCLK2CLOSE: int | |
VIEW_DRAWTABBAR_INACIVETAB: int | |
VIEW_DRAWTABBAR_MULTILINE: int | |
VIEW_DRAWTABBAR_TOPBAR: int | |
VIEW_DRAWTABBAR_VERTICAL: int | |
VIEW_EDGEBACKGROUND: int | |
VIEW_EDGELINE: int | |
VIEW_EDGENONE: int | |
VIEW_EOL: int | |
VIEW_FILEBROWSER: int | |
VIEW_FILESWITCHER_PANEL: int | |
VIEW_FOLD: int | |
VIEW_FOLDERMAGIN: int | |
VIEW_FOLDERMAGIN_ARROW: int | |
VIEW_FOLDERMAGIN_BOX: int | |
VIEW_FOLDERMAGIN_CIRCLE: int | |
VIEW_FOLDERMAGIN_SIMPLE: int | |
VIEW_FOLD_1: int | |
VIEW_FOLD_2: int | |
VIEW_FOLD_3: int | |
VIEW_FOLD_4: int | |
VIEW_FOLD_5: int | |
VIEW_FOLD_6: int | |
VIEW_FOLD_7: int | |
VIEW_FOLD_8: int | |
VIEW_FOLD_CURRENT: int | |
VIEW_FULLSCREENTOGGLE: int | |
VIEW_FUNC_LIST: int | |
VIEW_GOTO_ANOTHER_VIEW: int | |
VIEW_GOTO_NEW_INSTANCE: int | |
VIEW_HIDELINES: int | |
VIEW_INDENT_GUIDE: int | |
VIEW_LINENUMBER: int | |
VIEW_LOAD_IN_NEW_INSTANCE: int | |
VIEW_LOCKTABBAR: int | |
VIEW_LWALIGN: int | |
VIEW_LWDEF: int | |
VIEW_LWINDENT: int | |
VIEW_MONITORING: int | |
VIEW_POSTIT: int | |
VIEW_PROJECT_PANEL_1: int | |
VIEW_PROJECT_PANEL_2: int | |
VIEW_PROJECT_PANEL_3: int | |
VIEW_REDUCETABBAR: int | |
VIEW_REFRESHTABAR: int | |
VIEW_SUMMARY: int | |
VIEW_SWITCHTO_OTHER_VIEW: int | |
VIEW_SYMBOLMARGIN: int | |
VIEW_SYNSCROLLH: int | |
VIEW_SYNSCROLLV: int | |
VIEW_TAB1: int | |
VIEW_TAB2: int | |
VIEW_TAB3: int | |
VIEW_TAB4: int | |
VIEW_TAB5: int | |
VIEW_TAB6: int | |
VIEW_TAB7: int | |
VIEW_TAB8: int | |
VIEW_TAB9: int | |
VIEW_TAB_MOVEBACKWARD: int | |
VIEW_TAB_MOVEFORWARD: int | |
VIEW_TAB_NEXT: int | |
VIEW_TAB_PREV: int | |
VIEW_TAB_SPACE: int | |
VIEW_TOGGLE_FOLDALL: int | |
VIEW_TOGGLE_UNFOLDALL: int | |
VIEW_TOOLBAR_ENLARGE: int | |
VIEW_TOOLBAR_REDUCE: int | |
VIEW_TOOLBAR_STANDARD: int | |
VIEW_UNFOLD: int | |
VIEW_UNFOLD_1: int | |
VIEW_UNFOLD_2: int | |
VIEW_UNFOLD_3: int | |
VIEW_UNFOLD_4: int | |
VIEW_UNFOLD_5: int | |
VIEW_UNFOLD_6: int | |
VIEW_UNFOLD_7: int | |
VIEW_UNFOLD_8: int | |
VIEW_UNFOLD_CURRENT: int | |
VIEW_WRAP: int | |
VIEW_WRAP_SYMBOL: int | |
VIEW_ZOOMIN: int | |
VIEW_ZOOMOUT: int | |
VIEW_ZOOMRESTORE: int | |
WIKIFAQ: int | |
class LANGTYPE(IntEnum): | |
ADA: int | |
ASM: int | |
ASN1: int | |
ASP: int | |
AU3: int | |
AVS: int | |
BAANC: int | |
BASH: int | |
BATCH: int | |
BLITZBASIC: int | |
C: int | |
CAML: int | |
CMAKE: int | |
COBOL: int | |
COFFEESCRIPT: int | |
CPP: int | |
CS: int | |
CSOUND: int | |
CSS: int | |
D: int | |
DIFF: int | |
ERLANG: int | |
ESCRIPT: int | |
FLASH: int | |
FORTH: int | |
FORTRAN: int | |
FORTRAN_77: int | |
FREEBASIC: int | |
GUI4CLI: int | |
HASKELL: int | |
HTML: int | |
IHEX: int | |
INI: int | |
INNO: int | |
JAVA: int | |
JAVASCRIPT: int | |
JS: int | |
JSON: int | |
JSP: int | |
KIX: int | |
LATEX: int | |
LISP: int | |
LUA: int | |
MAKEFILE: int | |
MATLAB: int | |
MMIXAL: int | |
NIMROD: int | |
NNCRONTAB: int | |
NSIS: int | |
OBJC: int | |
OSCRIPT: int | |
PASCAL: int | |
PERL: int | |
PHP: int | |
POWERSHELL: int | |
PROPS: int | |
PS: int | |
PUREBASIC: int | |
PYTHON: int | |
R: int | |
RC: int | |
REBOL: int | |
REGISTRY: int | |
RUBY: int | |
RUST: int | |
SCHEME: int | |
SEARCHRESULT: int | |
SMALLTALK: int | |
SPICE: int | |
SQL: int | |
SREC: int | |
SWIFT: int | |
TCL: int | |
TEHEX: int | |
TEX: int | |
TXT: int | |
TXT2TAGS: int | |
USER: int | |
VB: int | |
VERILOG: int | |
VHDL: int | |
VISUALPROLOG: int | |
XML: int | |
YAML: int | |
class WINVER(IntEnum): | |
UNKNOWN: int | |
WIN32S: int | |
_95: int | |
_98: int | |
ME: int | |
NT: int | |
W2K: int | |
XP: int | |
S2003: int | |
XPX64: int | |
VISTA: int | |
WIN7: int | |
WIN8: int | |
WIN81: int | |
WIN10: int | |
class ACCESSIBILITY(IntEnum): | |
DISABLED: int | |
ENABLED: int | |
class ALPHA(IntEnum): | |
TRANSPARENT: int | |
OPAQUE: int | |
NOALPHA: int | |
class ANNOTATIONVISIBLE(IntEnum): | |
HIDDEN: int | |
STANDARD: int | |
BOXED: int | |
INDENTED: int | |
class AUTOCOMPLETEOPTION(IntEnum): | |
NORMAL: int | |
FIXED_SIZE: int | |
SELECT_FIRST_ITEM: int | |
class AUTOMATICFOLD(IntFlag): | |
NONE: int | |
SHOW: int | |
CLICK: int | |
CHANGE: int | |
class BIDIRECTIONAL(IntEnum): | |
DISABLED: int | |
L2R: int | |
R2L: int | |
class CARETPOLICY(IntFlag): | |
SLOP: int | |
STRICT: int | |
JUMPS: int | |
EVEN: int | |
class CARETSTICKY(IntEnum): | |
OFF: int | |
ON: int | |
WHITESPACE: int | |
class CARETSTYLE(IntEnum): | |
INVISIBLE: int | |
LINE: int | |
BLOCK: int | |
OVERSTRIKE_BAR: int | |
OVERSTRIKE_BLOCK: int | |
CURSES: int | |
INS_MASK: int | |
BLOCK_AFTER: int | |
class CASEINSENSITIVEBEHAVIOUR(IntEnum): | |
RESPECTCASE: int | |
IGNORECASE: int | |
class CASEVISIBLE(IntEnum): | |
MIXED: int | |
UPPER: int | |
LOWER: int | |
CAMEL: int | |
class CHANGEHISTORYOPTION(IntFlag): | |
DISABLED: int | |
ENABLED: int | |
MARKERS: int | |
INDICATORS: int | |
class CHARACTERSET(IntEnum): | |
ANSI: int | |
DEFAULT: int | |
BALTIC: int | |
CHINESEBIG5: int | |
EASTEUROPE: int | |
GB2312: int | |
GREEK: int | |
HANGUL: int | |
MAC: int | |
OEM: int | |
RUSSIAN: int | |
OEM866: int | |
CYRILLIC: int | |
SHIFTJIS: int | |
SYMBOL: int | |
TURKISH: int | |
JOHAB: int | |
HEBREW: int | |
ARABIC: int | |
VIETNAMESE: int | |
THAI: int | |
_8859_15: int | |
class CHARACTERSOURCE(IntEnum): | |
DIRECT_INPUT: int | |
TENTATIVE_INPUT: int | |
IME_RESULT: int | |
class COMPLETIONMETHODS(IntEnum): | |
FILLUP: int | |
DOUBLECLICK: int | |
TAB: int | |
NEWLINE: int | |
COMMAND: int | |
SINGLE_CHOICE: int | |
class CURSORSHAPE(IntEnum): | |
NORMAL: int | |
ARROW: int | |
WAIT: int | |
REVERSEARROW: int | |
class DOCUMENTOPTION(IntEnum): | |
DEFAULT: int | |
STYLES_NONE: int | |
TEXT_LARGE: int | |
class EOLANNOTATIONVISIBLE(IntEnum): | |
HIDDEN: int | |
STANDARD: int | |
BOXED: int | |
STADIUM: int | |
FLAT_CIRCLE: int | |
ANGLE_CIRCLE: int | |
CIRCLE_FLAT: int | |
FLATS: int | |
ANGLE_FLAT: int | |
CIRCLE_ANGLE: int | |
FLAT_ANGLE: int | |
ANGLES: int | |
class EDGEVISUALSTYLE(IntEnum): | |
NONE: int | |
LINE: int | |
BACKGROUND: int | |
MULTILINE: int | |
class ELEMENT(IntEnum): | |
LIST: int | |
LIST_BACK: int | |
LIST_SELECTED: int | |
LIST_SELECTED_BACK: int | |
SELECTION_TEXT: int | |
SELECTION_BACK: int | |
SELECTION_ADDITIONAL_TEXT: int | |
SELECTION_ADDITIONAL_BACK: int | |
SELECTION_SECONDARY_TEXT: int | |
SELECTION_SECONDARY_BACK: int | |
SELECTION_INACTIVE_TEXT: int | |
SELECTION_INACTIVE_BACK: int | |
CARET: int | |
CARET_ADDITIONAL: int | |
CARET_LINE_BACK: int | |
WHITE_SPACE: int | |
WHITE_SPACE_BACK: int | |
HOT_SPOT_ACTIVE: int | |
HOT_SPOT_ACTIVE_BACK: int | |
FOLD_LINE: int | |
HIDDEN_LINE: int | |
class ENDOFLINE(IntEnum): | |
CRLF: int | |
CR: int | |
LF: int | |
class FINDOPTION(IntFlag): | |
NONE: int | |
WHOLEWORD: int | |
MATCHCASE: int | |
WORDSTART: int | |
REGEXP: int | |
POSIX: int | |
CXX11REGEX: int | |
class FOCUSCHANGE(IntEnum): | |
CHANGE: int | |
SETFOCUS: int | |
KILLFOCUS: int | |
class FOLDACTION(IntEnum): | |
CONTRACT: int | |
EXPAND: int | |
TOGGLE: int | |
CONTRACT_EVERY_LEVEL: int | |
class FOLDDISPLAYTEXTSTYLE(IntEnum): | |
HIDDEN: int | |
STANDARD: int | |
BOXED: int | |
class FOLDFLAG(IntFlag): | |
NONE: int | |
LINEBEFORE_EXPANDED: int | |
LINEBEFORE_CONTRACTED: int | |
LINEAFTER_EXPANDED: int | |
LINEAFTER_CONTRACTED: int | |
LEVELNUMBERS: int | |
LINESTATE: int | |
class FOLDLEVEL(IntFlag): | |
NONE: int | |
BASE: int | |
WHITEFLAG: int | |
HEADERFLAG: int | |
NUMBERMASK: int | |
class FONTQUALITY(IntEnum): | |
QUALITY_MASK: int | |
QUALITY_DEFAULT: int | |
QUALITY_NON_ANTIALIASED: int | |
QUALITY_ANTIALIASED: int | |
QUALITY_LCD_OPTIMIZED: int | |
class FONTWEIGHT(IntEnum): | |
NORMAL: int | |
SEMIBOLD: int | |
BOLD: int | |
class IMEINTERACTION(IntEnum): | |
WINDOWED: int | |
INLINE: int | |
class IDLESTYLING(IntEnum): | |
NONE: int | |
TOVISIBLE: int | |
AFTERVISIBLE: int | |
ALL: int | |
class INDENTVIEW(IntEnum): | |
NONE: int | |
REAL: int | |
LOOKFORWARD: int | |
LOOKBOTH: int | |
class INDICFLAG(IntFlag): | |
NONE: int | |
VALUEFORE: int | |
class INDICVALUE(IntEnum): | |
BIT: int | |
MASK: int | |
class INDICATORNUMBERS(IntEnum): | |
CONTAINER: int | |
IME: int | |
IME_MAX: int | |
HISTORY_REVERTED_TO_ORIGIN_INSERTION: int | |
HISTORY_REVERTED_TO_ORIGIN_DELETION: int | |
HISTORY_SAVED_INSERTION: int | |
HISTORY_SAVED_DELETION: int | |
HISTORY_MODIFIED_INSERTION: int | |
HISTORY_MODIFIED_DELETION: int | |
HISTORY_REVERTED_TO_MODIFIED_INSERTION: int | |
HISTORY_REVERTED_TO_MODIFIED_DELETION: int | |
MAX: int | |
class INDICATORSTYLE(IntEnum): | |
PLAIN: int | |
SQUIGGLE: int | |
TT: int | |
DIAGONAL: int | |
STRIKE: int | |
HIDDEN: int | |
BOX: int | |
ROUNDBOX: int | |
STRAIGHTBOX: int | |
DASH: int | |
DOTS: int | |
SQUIGGLELOW: int | |
DOTBOX: int | |
SQUIGGLEPIXMAP: int | |
COMPOSITIONTHICK: int | |
COMPOSITIONTHIN: int | |
FULLBOX: int | |
TEXTFORE: int | |
POINT: int | |
POINTCHARACTER: int | |
GRADIENT: int | |
GRADIENTCENTRE: int | |
POINT_TOP: int | |
CONTAINER: int | |
IME: int | |
IME_MAX: int | |
MAX: int | |
class KEYMOD(IntFlag): | |
NORM: int | |
SHIFT: int | |
CTRL: int | |
ALT: int | |
SUPER: int | |
META: int | |
class KEYS(IntEnum): | |
DOWN: int | |
UP: int | |
LEFT: int | |
RIGHT: int | |
HOME: int | |
END: int | |
PRIOR: int | |
NEXT: int | |
DELETE: int | |
INSERT: int | |
ESCAPE: int | |
BACK: int | |
TAB: int | |
RETURN: int | |
ADD: int | |
SUBTRACT: int | |
DIVIDE: int | |
WIN: int | |
RWIN: int | |
MENU: int | |
class LAYER(IntEnum): | |
BASE: int | |
UNDER_TEXT: int | |
OVER_TEXT: int | |
class LEXER(IntEnum): | |
CONTAINER: int | |
NULL: int | |
PYTHON: int | |
CPP: int | |
HTML: int | |
XML: int | |
PERL: int | |
SQL: int | |
VB: int | |
PROPERTIES: int | |
ERRORLIST: int | |
MAKEFILE: int | |
BATCH: int | |
XCODE: int | |
LATEX: int | |
LUA: int | |
DIFF: int | |
CONF: int | |
PASCAL: int | |
AVE: int | |
ADA: int | |
LISP: int | |
RUBY: int | |
EIFFEL: int | |
EIFFELKW: int | |
TCL: int | |
NNCRONTAB: int | |
BULLANT: int | |
VBSCRIPT: int | |
BAAN: int | |
MATLAB: int | |
SCRIPTOL: int | |
ASM: int | |
CPPNOCASE: int | |
FORTRAN: int | |
F77: int | |
CSS: int | |
POV: int | |
LOUT: int | |
ESCRIPT: int | |
PS: int | |
NSIS: int | |
MMIXAL: int | |
CLW: int | |
CLWNOCASE: int | |
LOT: int | |
YAML: int | |
TEX: int | |
METAPOST: int | |
POWERBASIC: int | |
FORTH: int | |
ERLANG: int | |
OCTAVE: int | |
MSSQL: int | |
VERILOG: int | |
KIX: int | |
GUI4CLI: int | |
SPECMAN: int | |
AU3: int | |
APDL: int | |
BASH: int | |
ASN1: int | |
VHDL: int | |
CAML: int | |
BLITZBASIC: int | |
PUREBASIC: int | |
HASKELL: int | |
PHPSCRIPT: int | |
TADS3: int | |
REBOL: int | |
SMALLTALK: int | |
FLAGSHIP: int | |
CSOUND: int | |
FREEBASIC: int | |
INNOSETUP: int | |
OPAL: int | |
SPICE: int | |
D: int | |
CMAKE: int | |
GAP: int | |
PLM: int | |
PROGRESS: int | |
ABAQUS: int | |
ASYMPTOTE: int | |
R: int | |
MAGIK: int | |
POWERSHELL: int | |
MYSQL: int | |
PO: int | |
TAL: int | |
COBOL: int | |
TACL: int | |
SORCUS: int | |
POWERPRO: int | |
NIMROD: int | |
SML: int | |
MARKDOWN: int | |
TXT2TAGS: int | |
A68K: int | |
MODULA: int | |
COFFEESCRIPT: int | |
TCMD: int | |
AVS: int | |
ECL: int | |
OSCRIPT: int | |
VISUALPROLOG: int | |
LITERATEHASKELL: int | |
STTXT: int | |
KVIRC: int | |
RUST: int | |
DMAP: int | |
AS: int | |
DMIS: int | |
REGISTRY: int | |
BIBTEX: int | |
SREC: int | |
IHEX: int | |
TEHEX: int | |
JSON: int | |
EDIFACT: int | |
INDENT: int | |
MAXIMA: int | |
STATA: int | |
SAS: int | |
NIM: int | |
CIL: int | |
X12: int | |
DATAFLEX: int | |
HOLLYWOOD: int | |
RAKU: int | |
FSHARP: int | |
JULIA: int | |
ASCIIDOC: int | |
GDSCRIPT: int | |
AUTOMATIC: int | |
class LINECACHE(IntEnum): | |
NONE: int | |
CARET: int | |
PAGE: int | |
DOCUMENT: int | |
class LINECHARACTERINDEXTYPE(IntEnum): | |
NONE: int | |
UTF32: int | |
UTF16: int | |
class LINEENDTYPE(IntEnum): | |
DEFAULT: int | |
UNICODE: int | |
class MARGINOPTION(IntEnum): | |
NONE: int | |
SUBLINESELECT: int | |
class MARGINTYPE(IntEnum): | |
SYMBOL: int | |
NUMBER: int | |
BACK: int | |
FORE: int | |
TEXT: int | |
RTEXT: int | |
COLOUR: int | |
class MARKEROUTLINE(IntEnum): | |
HISTORY_REVERTED_TO_ORIGIN: int | |
HISTORY_SAVED: int | |
HISTORY_MODIFIED: int | |
HISTORY_REVERTED_TO_MODIFIED: int | |
FOLDEREND: int | |
FOLDEROPENMID: int | |
FOLDERMIDTAIL: int | |
FOLDERTAIL: int | |
FOLDERSUB: int | |
FOLDER: int | |
FOLDEROPEN: int | |
class MARKERSYMBOL(IntEnum): | |
CIRCLE: int | |
ROUNDRECT: int | |
ARROW: int | |
SMALLRECT: int | |
SHORTARROW: int | |
EMPTY: int | |
ARROWDOWN: int | |
MINUS: int | |
PLUS: int | |
VLINE: int | |
LCORNER: int | |
TCORNER: int | |
BOXPLUS: int | |
BOXPLUSCONNECTED: int | |
BOXMINUS: int | |
BOXMINUSCONNECTED: int | |
LCORNERCURVE: int | |
TCORNERCURVE: int | |
CIRCLEPLUS: int | |
CIRCLEPLUSCONNECTED: int | |
CIRCLEMINUS: int | |
CIRCLEMINUSCONNECTED: int | |
BACKGROUND: int | |
DOTDOTDOT: int | |
ARROWS: int | |
PIXMAP: int | |
FULLRECT: int | |
LEFTRECT: int | |
AVAILABLE: int | |
UNDERLINE: int | |
RGBAIMAGE: int | |
BOOKMARK: int | |
VERTICALBOOKMARK: int | |
BAR: int | |
CHARACTER: int | |
class MODIFICATIONFLAGS(IntFlag): | |
NONE: int | |
INSERTTEXT: int | |
DELETETEXT: int | |
CHANGESTYLE: int | |
CHANGEFOLD: int | |
USER: int | |
UNDO: int | |
REDO: int | |
MULTISTEPUNDOREDO: int | |
LASTSTEPINUNDOREDO: int | |
CHANGEMARKER: int | |
BEFOREINSERT: int | |
BEFOREDELETE: int | |
MULTILINEUNDOREDO: int | |
STARTACTION: int | |
CHANGEINDICATOR: int | |
CHANGELINESTATE: int | |
CHANGEMARGIN: int | |
CHANGEANNOTATION: int | |
CONTAINER: int | |
LEXERSTATE: int | |
INSERTCHECK: int | |
CHANGETABSTOPS: int | |
CHANGEEOLANNOTATION: int | |
MODEVENTMASKALL: int | |
class MULTIAUTOCOMPLETE(IntEnum): | |
ONCE: int | |
EACH: int | |
class MULTIPASTE(IntEnum): | |
ONCE: int | |
EACH: int | |
class ORDERING(IntEnum): | |
PRESORTED: int | |
PERFORMSORT: int | |
CUSTOM: int | |
class PHASESDRAW(IntEnum): | |
ONE: int | |
TWO: int | |
MULTIPLE: int | |
class POPUP(IntEnum): | |
NEVER: int | |
ALL: int | |
TEXT: int | |
class PRINTOPTION(IntEnum): | |
NORMAL: int | |
INVERTLIGHT: int | |
BLACKONWHITE: int | |
COLOURONWHITE: int | |
COLOURONWHITEDEFAULTBG: int | |
SCREENCOLOURS: int | |
class REPRESENTATIONAPPEARANCE(IntEnum): | |
_PLAIN: int | |
_BLOB: int | |
_COLOUR: int | |
class SELECTIONMODE(IntEnum): | |
STREAM: int | |
RECTANGLE: int | |
LINES: int | |
THIN: int | |
class STATUS(IntEnum): | |
OK: int | |
FAILURE: int | |
BADALLOC: int | |
WARN_START: int | |
WARN_REGEX: int | |
class STYLESCOMMON(IntEnum): | |
DEFAULT: int | |
LINENUMBER: int | |
BRACELIGHT: int | |
BRACEBAD: int | |
CONTROLCHAR: int | |
INDENTGUIDE: int | |
CALLTIP: int | |
FOLDDISPLAYTEXT: int | |
LASTPREDEFINED: int | |
MAX: int | |
class SUPPORTS(IntFlag): | |
LINE_DRAWS_FINAL: int | |
PIXEL_DIVISIONS: int | |
FRACTIONAL_STROKE_WIDTH: int | |
TRANSLUCENT_STROKE: int | |
PIXEL_MODIFICATION: int | |
THREAD_SAFE_MEASURE_WIDTHS: int | |
class TABDRAWMODE(IntEnum): | |
LONGARROW: int | |
STRIKEOUT: int | |
class TECHNOLOGY(IntEnum): | |
DEFAULT: int | |
DIRECTWRITE: int | |
DIRECTWRITERETAIN: int | |
DIRECTWRITEDC: int | |
class TYPEPROPERTY(IntEnum): | |
BOOLEAN: int | |
INTEGER: int | |
STRING: int | |
class UNDOFLAGS(IntFlag): | |
NONE: int | |
MAY_COALESCE: int | |
class UPDATE(IntEnum): | |
NONE: int | |
CONTENT: int | |
SELECTION: int | |
V_SCROLL: int | |
H_SCROLL: int | |
class VIRTUALSPACE(IntFlag): | |
NONE: int | |
RECTANGULARSELECTION: int | |
USERACCESSIBLE: int | |
NOWRAPLINESTART: int | |
class VISIBLEPOLICY(IntEnum): | |
SLOP: int | |
STRICT: int | |
class WHITESPACE(IntEnum): | |
INVISIBLE: int | |
VISIBLEALWAYS: int | |
VISIBLEAFTERINDENT: int | |
VISIBLEONLYININDENT: int | |
class WRAP(IntEnum): | |
NONE: int | |
WORD: int | |
CHAR: int | |
WHITESPACE: int | |
class WRAPINDENTMODE(IntEnum): | |
FIXED: int | |
SAME: int | |
INDENT: int | |
DEEPINDENT: int | |
class WRAPVISUALFLAG(IntFlag): | |
NONE: int | |
END: int | |
START: int | |
MARGIN: int | |
class WRAPVISUALLOCATION(IntEnum): | |
DEFAULT: int | |
END_BY_TEXT: int | |
START_BY_TEXT: int |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment