Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QTextCursor class offers an API to access and modify QTextDocuments. More...
Public Types | |
enum | MoveMode { KeepAnchor = 1, MoveAnchor = 0 } |
More... | |
enum | MoveOperation { Down = 12, End = 11, EndOfBlock = 15, EndOfLine = 13, EndOfWord = 14, Left = 9, NextBlock = 16, NextCell = 21, NextCharacter = 17, NextRow = 23, NextWord = 18, NoMove = 0, PreviousBlock = 6, PreviousCell = 22, PreviousCharacter = 7, PreviousRow = 24, PreviousWord = 8, Right = 19, Start = 1, StartOfBlock = 4, StartOfLine = 3, StartOfWord = 5, Up = 2, WordLeft = 10, WordRight = 20 } |
More... | |
enum | SelectionType { BlockUnderCursor = 2, Document = 3, LineUnderCursor = 1, WordUnderCursor = 0 } |
More... | |
Static Public Member Functions | |
static bool | operator!= (QTextCursor arg1, QTextCursor arg2) |
| |
static bool | operator< (QTextCursor arg1, QTextCursor arg2) |
| |
static bool | operator<= (QTextCursor arg1, QTextCursor arg2) |
| |
static bool | operator== (QTextCursor arg1, QTextCursor arg2) |
| |
static bool | operator> (QTextCursor arg1, QTextCursor arg2) |
| |
static bool | operator>= (QTextCursor arg1, QTextCursor arg2) |
| |
Protected Member Functions | |
QTextCursor (System.Type dummy) | |
Protected Attributes | |
SmokeInvocation | interceptor |
Properties | |
new QTextCharFormat | BlockCharFormat [get, set] |
| |
new QTextBlockFormat | BlockFormat [get, set] |
| |
new QTextCharFormat | CharFormat [get, set] |
| |
new bool | KeepPositionOnInsert [get, set] |
| |
new int | VerticalMovementX [get, set] |
| |
new bool | VisualNavigation [get, set] |
| |
new int | Position [get] |
| |
virtual System.IntPtr | SmokeObject [get, set] |
The QTextCursor class offers an API to access and modify QTextDocuments.
Text cursors are objects that are used to access and modify the contents and underlying structure of text documents via a programming interface that mimics the behavior of a cursor in a text editor. QTextCursor contains information about both the cursor's position within a QTextDocument and any selection that it has made.
QTextCursor is modeled on the way a text cursor behaves in a text editor, providing a programmatic means of performing standard actions through the user interface. A document can be thought of as a single string of characters. The cursor's current position() then is always either between two consecutive characters in the string, or else before the very first character or after the very last character in the string. Documents can also contain tables, lists, images, and other objects in addition to text but, from the developer's point of view, the document can be treated as one long string. Some portions of that string can be considered to lie within particular blocks (e.g. paragraphs), or within a table's cell, or a list's item, or other structural elements. When we refer to "current character" we mean the character immediately before the cursor position() in the document. Similarly, the "current block" is the block that contains the cursor position().
A QTextCursor also has an anchor() position. The text that is between the anchor() and the position() is the selection. If anchor() == position() there is no selection.
The cursor position can be changed programmatically using setPosition() and movePosition(); the latter can also be used to select text. For selections see selectionStart(), selectionEnd(), hasSelection(), clearSelection(), and removeSelectedText().
If the position() is at the start of a block atBlockStart() returns true; and if it is at the end of a block atBlockEnd() returns true. The format of the current character is returned by charFormat(), and the format of the current block is returned by blockFormat().
Formatting can be applied to the current text document using the setCharFormat(), mergeCharFormat(), setBlockFormat() and mergeBlockFormat() functions. The 'set' functions will replace the cursor's current character or block format, while the 'merge' functions add the given format properties to the cursor's current format. If the cursor has a selection the given format is applied to the current selection. Note that when only parts of a block is selected the block format is applied to the entire block. The text at the current character position can be turned into a list using createList().
Deletions can be achieved using deleteChar(), deletePreviousChar(), and removeSelectedText().
Text strings can be inserted into the document with the insertText() function, blocks (representing new paragraphs) can be inserted with insertBlock().
Existing fragments of text can be inserted with insertFragment() but, if you want to insert pieces of text in various formats, it is usually still easier to use insertText() and supply a character format.
Various types of higher-level structure can also be inserted into the document with the cursor:
Lists are ordered sequences of block elements that are decorated with bullet points or symbols. These are inserted in a specified format with insertList().
Tables are inserted with the insertTable() function, and can be given an optional format. These contain an array of cells that can be traversed using the cursor.
Inline images are inserted with insertImage(). The image to be used can be specified in an image format, or by name.
Frames are inserted by calling insertFrame() with a specified format.
Actions can be grouped (i.e. treated as a single action for undo/redo) using beginEditBlock() and endEditBlock().
Cursor movements are limited to valid cursor positions. In Latin writing this is between any two consecutive characters in the text, before the first character, or after the last character. In some other writing systems cursor movements are limited to "clusters" (e.g. a syllable in Devanagari, or a base letter plus diacritics). Functions such as movePosition() and deleteChar() limit cursor movement to these valid positions.
See also Rich Text Processing.
See also movePosition().
This enum describes the types of selection that can be applied with the select() function.
|
protected |
QtGui.QTextCursor.QTextCursor | ( | ) |
Constructs a null cursor.
QtGui.QTextCursor.QTextCursor | ( | QTextDocument | document | ) |
Constructs a cursor pointing to the beginning of the document.
QtGui.QTextCursor.QTextCursor | ( | QTextFrame | frame | ) |
Constructs a cursor pointing to the beginning of the frame.
QtGui.QTextCursor.QTextCursor | ( | QTextBlock | block | ) |
Constructs a cursor pointing to the beginning of the block.
QtGui.QTextCursor.QTextCursor | ( | QTextCursor | cursor | ) |
Constructs a new cursor that is a copy of cursor.
new int QtGui.QTextCursor.Anchor | ( | ) |
Returns the anchor position; this is the same as position() unless there is a selection in which case position() marks one end of the selection and anchor() marks the other end. Just like the cursor position, the anchor position is between characters.
See also position(), setPosition(), movePosition(), selectionStart(), and selectionEnd().
new bool QtGui.QTextCursor.AtBlockEnd | ( | ) |
Returns true if the cursor is at the end of a block; otherwise returns false.
See also atBlockStart() and atEnd().
new bool QtGui.QTextCursor.AtBlockStart | ( | ) |
Returns true if the cursor is at the start of a block; otherwise returns false.
See also atBlockEnd() and atStart().
new bool QtGui.QTextCursor.AtEnd | ( | ) |
Returns true if the cursor is at the end of the document; otherwise returns false.
This function was introduced in Qt 4.6.
See also atStart() and atBlockEnd().
new bool QtGui.QTextCursor.AtStart | ( | ) |
Returns true if the cursor is at the start of the document; otherwise returns false.
See also atBlockStart() and atEnd().
new void QtGui.QTextCursor.BeginEditBlock | ( | ) |
Indicates the start of a block of editing operations on the document that should appear as a single operation from an undo/redo point of view.
For example:
QTextCursor cursor(textDocument);
cursor.beginEditBlock();
cursor.insertText("Hello");
cursor.insertText("World");
cursor.endEditBlock();
textDocument->undo();
The call to undo() will cause both insertions to be undone, causing both "World" and "Hello" to be removed.
It is possible to nest calls to beginEditBlock and endEditBlock. The top-most pair will determine the scope of the undo/redo operation.
See also endEditBlock().
new QTextBlock QtGui.QTextCursor.Block | ( | ) |
Returns the block that contains the cursor.
new int QtGui.QTextCursor.BlockNumber | ( | ) |
Returns the number of the block the cursor is in, or 0 if the cursor is invalid.
Note that this function only makes sense in documents without complex objects such as tables or frames.
This function was introduced in Qt 4.2.
new void QtGui.QTextCursor.ClearSelection | ( | ) |
Clears the current selection by setting the anchor to the cursor position.
Note that it does not delete the text of the selection.
See also removeSelectedText() and hasSelection().
new int QtGui.QTextCursor.ColumnNumber | ( | ) |
Returns the position of the cursor within its containing line.
Note that this is the column number relative to a wrapped line, not relative to the block (i.e. the paragraph).
You probably want to call positionInBlock() instead.
This function was introduced in Qt 4.2.
See also positionInBlock().
new QTextList QtGui.QTextCursor.CreateList | ( | QTextListFormat | format | ) |
Creates and returns a new list with the given format, and makes the current paragraph the cursor is in the first list item.
See also insertList() and currentList().
new QTextList QtGui.QTextCursor.CreateList | ( | QTextListFormat.Style | style | ) |
This is an overloaded function.
Creates and returns a new list with the given style, making the cursor's current paragraph the first list item.
The style to be used is defined by the QTextListFormat::Style enum.
See also insertList() and currentList().
|
virtual |
new QTextFrame QtGui.QTextCursor.CurrentFrame | ( | ) |
Returns a pointer to the current frame. Returns 0 if the cursor is invalid.
See also insertFrame().
new QTextList QtGui.QTextCursor.CurrentList | ( | ) |
Returns the current list if the cursor position() is inside a block that is part of a list; otherwise returns 0.
See also insertList() and createList().
new QTextTable QtGui.QTextCursor.CurrentTable | ( | ) |
Returns a pointer to the current table if the cursor position() is inside a block that is part of a table; otherwise returns 0.
See also insertTable().
new void QtGui.QTextCursor.DeleteChar | ( | ) |
If there is no selected text, deletes the character at the current cursor position; otherwise deletes the selected text.
See also deletePreviousChar(), hasSelection(), and clearSelection().
new void QtGui.QTextCursor.DeletePreviousChar | ( | ) |
If there is no selected text, deletes the character before the current cursor position; otherwise deletes the selected text.
See also deleteChar(), hasSelection(), and clearSelection().
new void QtGui.QTextCursor.Dispose | ( | ) |
new QTextDocument QtGui.QTextCursor.Document | ( | ) |
Returns the document this cursor is associated with.
This function was introduced in Qt 4.5.
new void QtGui.QTextCursor.EndEditBlock | ( | ) |
Indicates the end of a block of editing operations on the document that should appear as a single operation from an undo/redo point of view.
See also beginEditBlock().
override bool QtGui.QTextCursor.Equals | ( | object | o | ) |
override int QtGui.QTextCursor.GetHashCode | ( | ) |
new bool QtGui.QTextCursor.HasComplexSelection | ( | ) |
Returns true if the cursor contains a selection that is not simply a range from selectionStart() to selectionEnd(); otherwise returns false.
Complex selections are ones that span at least two cells in a table; their extent is specified by selectedTableCells().
new bool QtGui.QTextCursor.HasSelection | ( | ) |
Returns true if the cursor contains a selection; otherwise returns false.
new void QtGui.QTextCursor.InsertBlock | ( | ) |
Inserts a new empty block at the cursor position() with the current blockFormat() and charFormat().
See also setBlockFormat().
new void QtGui.QTextCursor.InsertBlock | ( | QTextBlockFormat | format | ) |
This is an overloaded function.
Inserts a new empty block at the cursor position() with block format format and the current charFormat() as block char format.
See also setBlockFormat().
new void QtGui.QTextCursor.InsertBlock | ( | QTextBlockFormat | format, |
QTextCharFormat | charFormat | ||
) |
This is an overloaded function.
Inserts a new empty block at the cursor position() with block format format and charFormat as block char format.
See also setBlockFormat().
new void QtGui.QTextCursor.InsertFragment | ( | QTextDocumentFragment | fragment | ) |
Inserts the text fragment at the current position().
new QTextFrame QtGui.QTextCursor.InsertFrame | ( | QTextFrameFormat | format | ) |
Inserts a frame with the given format at the current cursor position(), moves the cursor position() inside the frame, and returns the frame.
If the cursor holds a selection, the whole selection is moved inside the frame.
See also hasSelection().
new void QtGui.QTextCursor.InsertHtml | ( | string | html | ) |
Inserts the text html at the current position(). The text is interpreted as HTML.
Note: When using this function with a style sheet, the style sheet will only apply to the current block in the document. In order to apply a style sheet throughout a document, use QTextDocument::setDefaultStyleSheet() instead.
This function was introduced in Qt 4.2.
new void QtGui.QTextCursor.InsertImage | ( | QTextImageFormat | format | ) |
Inserts the image defined by format at the current position().
new void QtGui.QTextCursor.InsertImage | ( | QTextImageFormat | format, |
QTextFrameFormat.Position | alignment | ||
) |
This is an overloaded function.
Inserts the image defined by the given format at the cursor's current position with the specified alignment.
This function was introduced in Qt 4.2.
See also position().
new void QtGui.QTextCursor.InsertImage | ( | QImage | image, |
string | name = "" |
||
) |
Inserts the image defined by format at the current position().
new void QtGui.QTextCursor.InsertImage | ( | string | name | ) |
This is an overloaded function.
Convenience method for inserting the image with the given name at the current position().
QImage img = ...
textDocument->addResource(QTextDocument::ImageResource, QUrl("myimage"), img);
cursor.insertImage("myimage");
new QTextList QtGui.QTextCursor.InsertList | ( | QTextListFormat | format | ) |
Inserts a new block at the current position and makes it the first list item of a newly created list with the given format. Returns the created list.
See also currentList(), createList(), and insertBlock().
new QTextList QtGui.QTextCursor.InsertList | ( | QTextListFormat.Style | style | ) |
This is an overloaded function.
Inserts a new block at the current position and makes it the first list item of a newly created list with the given style. Returns the created list.
See also currentList(), createList(), and insertBlock().
new QTextTable QtGui.QTextCursor.InsertTable | ( | int | rows, |
int | cols | ||
) |
This is an overloaded function.
Creates a new table with the given number of rows and columns, inserts it at the current cursor position() in the document, and returns the table object. The cursor is moved to the beginning of the first cell.
There must be at least one row and one column in the table.
See also currentTable().
new QTextTable QtGui.QTextCursor.InsertTable | ( | int | rows, |
int | cols, | ||
QTextTableFormat | format | ||
) |
Creates a new table with the given number of rows and columns in the specified format, inserts it at the current cursor position() in the document, and returns the table object. The cursor is moved to the beginning of the first cell.
There must be at least one row and one column in the table.
See also currentTable().
new void QtGui.QTextCursor.InsertText | ( | string | text | ) |
Inserts text at the current position, using the current character format.
If there is a selection, the selection is deleted and replaced by text, for example:
cursor.clearSelection();
cursor.movePosition(QTextCursor::NextWord, QTextCursor::KeepAnchor);
cursor.insertText("Hello World");
This clears any existing selection, selects the word at the cursor (i.e. from position() forward), and replaces the selection with the phrase "Hello World".
Any ASCII linefeed characters (\n) in the inserted text are transformed into unicode block separators, corresponding to insertBlock() calls.
See also charFormat() and hasSelection().
new void QtGui.QTextCursor.InsertText | ( | string | text, |
QTextCharFormat | format | ||
) |
This is an overloaded function.
Inserts text at the current position with the given format.
new bool QtGui.QTextCursor.IsCopyOf | ( | QTextCursor | other | ) |
Returns true if this cursor and other are copies of each other, i.e. one of them was created as a copy of the other and neither has moved since. This is much stricter than equality.
See also operator=() and operator==().
new bool QtGui.QTextCursor.IsNull | ( | ) |
Returns true if the cursor is null; otherwise returns false. A null cursor is created by the default constructor.
new void QtGui.QTextCursor.JoinPreviousEditBlock | ( | ) |
Like beginEditBlock() indicates the start of a block of editing operations that should appear as a single operation for undo/redo. However unlike beginEditBlock() it does not start a new block but reverses the previous call to endEditBlock() and therefore makes following operations part of the previous edit block created.
For example:
QTextCursor cursor(textDocument);
cursor.beginEditBlock();
cursor.insertText("Hello");
cursor.insertText("World");
cursor.endEditBlock();
...
cursor.joinPreviousEditBlock();
cursor.insertText("Hey");
cursor.endEditBlock();
textDocument->undo();
The call to undo() will cause all three insertions to be undone.
See also beginEditBlock() and endEditBlock().
new void QtGui.QTextCursor.MergeBlockCharFormat | ( | QTextCharFormat | modifier | ) |
Modifies the block char format of the current block (or all blocks that are contained in the selection) with the block format specified by modifier.
See also setBlockCharFormat().
new void QtGui.QTextCursor.MergeBlockFormat | ( | QTextBlockFormat | modifier | ) |
Modifies the block format of the current block (or all blocks that are contained in the selection) with the block format specified by modifier.
See also setBlockFormat() and blockFormat().
new void QtGui.QTextCursor.MergeCharFormat | ( | QTextCharFormat | modifier | ) |
Merges the cursor's current character format with the properties described by format modifier. If the cursor has a selection, this function applies all the properties set in modifier to all the character formats that are part of the selection.
See also hasSelection() and setCharFormat().
new bool QtGui.QTextCursor.MovePosition | ( | QTextCursor.MoveOperation | op, |
QTextCursor.MoveMode | arg2 = QTextCursor.MoveMode.MoveAnchor , |
||
int | n = 1 |
||
) |
Moves the cursor by performing the given operation n times, using the specified mode, and returns true if all operations were completed successfully; otherwise returns false.
For example, if this function is repeatedly used to seek to the end of the next word, it will eventually fail when the end of the document is reached.
By default, the move operation is performed once (n = 1).
If mode is KeepAnchor, the cursor selects the text it moves over. This is the same effect that the user achieves when they hold down the Shift key and move the cursor with the cursor keys.
See also setVisualNavigation().
|
static |
Returns true if the other cursor is at a different position in the document as this cursor; otherwise returns false.
|
static |
Returns true if the other cursor is positioned later in the document than this cursor; otherwise returns false.
|
static |
Returns true if the other cursor is positioned later or at the same position in the document as this cursor; otherwise returns false.
|
static |
Returns true if the other cursor is at the same position in the document as this cursor; otherwise returns false.
|
static |
Returns true if the other cursor is positioned earlier in the document than this cursor; otherwise returns false.
|
static |
Returns true if the other cursor is positioned earlier or at the same position in the document as this cursor; otherwise returns false.
new int QtGui.QTextCursor.PositionInBlock | ( | ) |
Returns the relative position of the cursor within the block. The cursor is positioned between characters.
This is equivalent to position() - block().position().
This function was introduced in Qt 4.7.
See also position().
new void QtGui.QTextCursor.RemoveSelectedText | ( | ) |
If there is a selection, its content is deleted; otherwise does nothing.
See also hasSelection().
new void QtGui.QTextCursor.Select | ( | QTextCursor.SelectionType | selection | ) |
Selects text in the document according to the given selection.
new void QtGui.QTextCursor.SelectedTableCells | ( | ref int | firstRow, |
ref int | numRows, | ||
ref int | firstColumn, | ||
ref int | numColumns | ||
) |
If the selection spans over table cells, firstRow is populated with the number of the first row in the selection, firstColumn with the number of the first column in the selection, and numRows and numColumns with the number of rows and columns in the selection. If the selection does not span any table cells the results are harmless but undefined.
new string QtGui.QTextCursor.SelectedText | ( | ) |
Returns the current selection's text (which may be empty). This only returns the text, with no rich text formatting information. If you want a document fragment (i.e. formatted rich text) use selection() instead.
Note: If the selection obtained from an editor spans a line break, the text will contain a Unicode U+2029 paragraph separator character instead of a newline \n character. Use QString::replace() to replace these characters with newlines.
new QTextDocumentFragment QtGui.QTextCursor.Selection | ( | ) |
Returns the current selection (which may be empty) with all its formatting information. If you just want the selected text (i.e. plain text) use selectedText() instead.
Note: Unlike QTextDocumentFragment::toPlainText(), selectedText() may include special unicode characters such as QChar::ParagraphSeparator.
See also QTextDocumentFragment::toPlainText().
new int QtGui.QTextCursor.SelectionEnd | ( | ) |
Returns the end of the selection or position() if the cursor doesn't have a selection.
See also selectionStart(), position(), and anchor().
new int QtGui.QTextCursor.SelectionStart | ( | ) |
Returns the start of the selection or position() if the cursor doesn't have a selection.
See also selectionEnd(), position(), and anchor().
new void QtGui.QTextCursor.SetPosition | ( | int | pos, |
QTextCursor.MoveMode | mode = QTextCursor.MoveMode.MoveAnchor |
||
) |
Moves the cursor to the absolute position in the document specified by pos using a MoveMode specified by m. The cursor is positioned between characters.
See also position(), movePosition(), and anchor().
|
protected |
|
getset |
Returns the block character format of the block the cursor is in.
The block char format is the format used when inserting text at the beginning of an empty block.
Sets the block char format of the current block (or all blocks that are contained in the selection) to format.
|
getset |
Returns the block format of the block the cursor is in.
Sets the block format of the current block (or all blocks that are contained in the selection) to format.
|
getset |
Returns the format of the character immediately before the cursor position(). If the cursor is positioned at the beginning of a text block that is not empty then the format of the character immediately after the cursor is returned.
Sets the cursor's current character format to the given format. If the cursor has a selection, the given format is applied to the current selection.
|
getset |
Returns whether the cursor should keep its current position when text gets inserted at the position of the cursor.
The default is false;
This function was introduced in Qt 4.7.
Defines whether the cursor should keep its current position when text gets inserted at the current position of the cursor.
If b is true, the cursor keeps its current position when text gets inserted at the positing of the cursor. If b is false, the cursor moves along with the inserted text.
The default is false.
Note that a cursor always moves when text is inserted before the current position of the cursor, and it always keeps its position when text is inserted after the current position of the cursor.
This function was introduced in Qt 4.7.
|
get |
Returns the absolute position of the cursor within the document. The cursor is positioned between characters.
See also setPosition(), movePosition(), anchor(), and positionInBlock().
|
getset |
|
getset |
Returns the visual x position for vertical cursor movements.
A value of -1 indicates no predefined x position. It will then be set automatically the next time the cursor moves up or down.
This function was introduced in Qt 4.7.
Sets the visual x position for vertical cursor movements to x.
The vertical movement x position is cleared automatically when the cursor moves horizontally, and kept unchanged when the cursor moves vertically. The mechanism allows the cursor to move up and down on a visually straight line with proportional fonts, and to gently "jump" over short lines.
A value of -1 indicates no predefined x position. It will then be set automatically the next time the cursor moves up or down.
This function was introduced in Qt 4.7.
|
getset |
Returns true if the cursor does visual navigation; otherwise returns false.
Visual navigation means skipping over hidden text pragraphs. The default is false.
This function was introduced in Qt 4.4.
Sets visual navigation to b.
Visual navigation means skipping over hidden text pragraphs. The default is false.
This function was introduced in Qt 4.4.