TTkTextCursor๐ŸŒถ๏ธ

class TTkTextCursor(document: TTkTextDocument = None)[source]๐ŸŒถ๏ธ

Bases: object

Methods๐ŸŒถ๏ธ

addCursor(line: int, pos: int) โ†’ None[source]๐ŸŒถ๏ธ
anchor() โ†’ _CP[source]๐ŸŒถ๏ธ
applyColor(color: TTkColor) โ†’ None[source]๐ŸŒถ๏ธ
clearColor() โ†’ None[source]๐ŸŒถ๏ธ
clearCursors() โ†’ None[source]๐ŸŒถ๏ธ
clearSelection() โ†’ None[source]๐ŸŒถ๏ธ
copy() โ†’ Self[source]๐ŸŒถ๏ธ
cursors() โ†’ list[_CP][source]๐ŸŒถ๏ธ
document() โ†’ TTkTextDocument[source]๐ŸŒถ๏ธ
getLinesUnderCursor() โ†’ TTkString[source]๐ŸŒถ๏ธ
hasSelection() โ†’ bool[source]๐ŸŒถ๏ธ
insertText(text: TTkString, moveCursor: bool = False) โ†’ None[source]๐ŸŒถ๏ธ
movePosition(operation: MoveOperation, moveMode: MoveMode = 0, n=1, textWrap: TTkTextWrap = None) โ†’ None[source]๐ŸŒถ๏ธ
position() โ†’ _CP[source]๐ŸŒถ๏ธ
positionChar(cID: int = -1) โ†’ str[source]๐ŸŒถ๏ธ
positionColor(cID: int = -1) โ†’ TTkColor[source]๐ŸŒถ๏ธ
removeSelectedText() โ†’ None[source]๐ŸŒถ๏ธ
replaceText(text: TTkString, moveCursor: bool = False) โ†’ None[source]๐ŸŒถ๏ธ
restore(cursor: Self) โ†’ None[source]๐ŸŒถ๏ธ
select(selection: SelectionType) โ†’ None[source]๐ŸŒถ๏ธ
selectedText() โ†’ TTkString[source]๐ŸŒถ๏ธ
selectionEnd() โ†’ _CP[source]๐ŸŒถ๏ธ
selectionStart() โ†’ _CP[source]๐ŸŒถ๏ธ
setColor(color: TTkColor) โ†’ None[source]๐ŸŒถ๏ธ
setPosition(line: int, pos: int, moveMode: MoveMode = 0, cID: int = 0) โ†’ None[source]๐ŸŒถ๏ธ

TTkTextCursor Classes๐ŸŒถ๏ธ

class MoveMode๐ŸŒถ๏ธ

Bases: object

KeepAnchor = 1๐ŸŒถ๏ธ

Keeps the anchor where it is.

MoveAnchor = 0๐ŸŒถ๏ธ

Moves the anchor to the same position as the cursor itself.

class MoveOperation๐ŸŒถ๏ธ

Bases: object

Down = 12๐ŸŒถ๏ธ

Move down one line.

End = 11๐ŸŒถ๏ธ

Move to the end of the document.

EndOfBlock = 15๐ŸŒถ๏ธ

Move to the end of the current block.

EndOfLine = 13๐ŸŒถ๏ธ

Move to the end of the current line.

EndOfWord = 14๐ŸŒถ๏ธ

Move to the end of the current word.

Left = 9๐ŸŒถ๏ธ

Move left one character.

NextBlock = 16๐ŸŒถ๏ธ

Move to the beginning of the next block.

NextCell = 21๐ŸŒถ๏ธ

Move to the beginning of the next table cell inside the current table. If the current cell is the last cell in the row, the cursor will move to the first cell in the next row.

NextCharacter = 17๐ŸŒถ๏ธ

Move to the next character.

NextRow = 23๐ŸŒถ๏ธ

Move to the first new cell of the next row in the current table.

NextWord = 18๐ŸŒถ๏ธ

Move to the next word.

NoMove = 0๐ŸŒถ๏ธ

Keep the cursor where it is

PreviousBlock = 6๐ŸŒถ๏ธ

Move to the start of the previous block.

PreviousCell = 22๐ŸŒถ๏ธ

Move to the beginning of the previous table cell inside the current table. If the current cell is the first cell in the row, the cursor will move to the last cell in the previous row.

PreviousCharacter = 7๐ŸŒถ๏ธ

Move to the previous character.

PreviousRow = 24๐ŸŒถ๏ธ

Move to the last cell of the previous row in the current table.

PreviousWord = 8๐ŸŒถ๏ธ

Move to the beginning of the previous word.

Right = 19๐ŸŒถ๏ธ

Move right one character.

Start = 1๐ŸŒถ๏ธ

Move to the start of the document.

StartOfBlock = 4๐ŸŒถ๏ธ

Move to the start of the current block.

StartOfLine = 3๐ŸŒถ๏ธ

Move to the start of the current line.

StartOfWord = 5๐ŸŒถ๏ธ

Move to the start of the current word.

Up = 2๐ŸŒถ๏ธ

Move up one line.

WordLeft = 10๐ŸŒถ๏ธ

Move left one word.

WordRight = 20๐ŸŒถ๏ธ

Move right one word.

class SelectionType๐ŸŒถ๏ธ

Bases: object

BlockUnderCursor = 2๐ŸŒถ๏ธ

Selects the block of text under the cursor.

Document = 3๐ŸŒถ๏ธ

Selects the entire document.

LineUnderCursor = 1๐ŸŒถ๏ธ

Selects the line of text under the cursor.

WordUnderCursor = 0๐ŸŒถ๏ธ

Selects the word under the cursor. If the cursor is not positioned within a string of selectable characters, no text is selected.

TTkTextCursor Attributes๐ŸŒถ๏ธ

BlockUnderCursor

Document

Down

End

EndOfBlock

EndOfLine

EndOfWord

KeepAnchor

Left

LineUnderCursor

MoveAnchor

NextBlock

NextCell

NextCharacter

NextRow

NextWord

NoMove

PreviousBlock

PreviousCell

PreviousCharacter

PreviousRow

PreviousWord

Right

Start

StartOfBlock

StartOfLine

StartOfWord

Up

WordLeft

WordRight

WordUnderCursor