TextEdit QML Type

Displays multiple lines of editable formatted text. 更多...

导入语句: import QtQuick 2.12
继承:

Item

特性

信号

方法

详细描述

TextEdit item displays a block of editable, formatted text.

It can display both plain and rich text. For example:

TextEdit {
    width: 240
    text: "<b>Hello</b> <i>World!</i>"
    font.family: "Helvetica"
    font.pointSize: 20
    color: "blue"
    focus: true
}
					

设置 focus to true 启用 TextEdit item to receive keyboard focus.

注意, TextEdit does not implement scrolling, following the cursor, or other behaviors specific to a look-and-feel. For example, to add flickable scrolling that follows the cursor:

Flickable {
     id: flick
     width: 300; height: 200;
     contentWidth: edit.paintedWidth
     contentHeight: edit.paintedHeight
     clip: true
     function ensureVisible(r)
     {
         if (contentX >= r.x)
             contentX = r.x;
         else if (contentX+width <= r.x+r.width)
             contentX = r.x+r.width-width;
         if (contentY >= r.y)
             contentY = r.y;
         else if (contentY+height <= r.y+r.height)
             contentY = r.y+r.height-height;
     }
     TextEdit {
         id: edit
         width: flick.width
         focus: true
         wrapMode: TextEdit.Wrap
         onCursorRectangleChanged: flick.ensureVisible(cursorRectangle)
     }
 }
				

A particular look-and-feel might use smooth scrolling (eg. using SmoothedAnimation ), might have a visible scrollbar, or a scrollbar that fades in to show location, etc.

Clipboard support is provided by the cut() , copy() ,和 paste() functions, and the selection can be handled in a traditional "mouse" mechanism by setting selectByMouse , or handled completely from QML by manipulating selectionStart and selectionEnd , or using selectAll() or selectWord() .

You can translate between cursor positions (characters from the start of the document) and pixel points using positionAt() and positionToRectangle() .

另请参阅 Text and TextInput .

特性文档编制

activeFocusOnPress : bool

Whether the TextEdit should gain active focus on a mouse press. By default this is set to true.


baseUrl : url

This property specifies a base URL which is used to resolve relative URLs within the text.

The default value is the url of the QML file instantiating the TextEdit 项。


bottomPadding : real

These properties hold the padding around the content. This space is reserved in addition to the contentWidth and contentHeight .

该特性在 Qt 5.6 引入。


canPaste : bool

返回 true 若 TextEdit is writable and the content of the clipboard is suitable for pasting into the TextEdit .


canRedo : bool

返回 true 若 TextEdit is writable and there are undone operations that can be redone.


canUndo : bool

返回 true 若 TextEdit is writable and there are previous operations that can be undone.


color : color

The text color.

// green text using hexadecimal notation
TextEdit { color: "#00FF00" }
				
// steelblue text using SVG color name
TextEdit { color: "steelblue" }
				

contentHeight : real

Returns the height of the text, including the height past the height that is covered if the text does not fit within the set height.


contentWidth : real

Returns the width of the text, including the width past the width which is covered due to insufficient wrapping if wrapMode 有设置。


cursorDelegate : 组件

The delegate for the cursor in the TextEdit .

If you set a cursorDelegate for a TextEdit , this delegate will be used for drawing the cursor instead of the standard cursor. An instance of the delegate will be created and managed by the text edit when a cursor is needed, and the x and y properties of delegate instance will be set so as to be one pixel before the top left of the current character.

Note that the root item of the delegate component must be a QQuickItem or QQuickItem derived item.


cursorPosition : int

The position of the cursor in the TextEdit .


cursorRectangle : rectangle

The rectangle where the standard text cursor is rendered within the text edit. Read-only.

The position and height of a custom cursorDelegate are updated to follow the cursorRectangle automatically when it changes. The width of the delegate is unaffected by changes in the cursor rectangle.


cursorVisible : bool

If true the text edit shows a cursor.

This property is set and unset when the text edit gets active focus, but it can also be set directly (useful, for example, if a KeyProxy might forward keys to it).


effectiveHorizontalAlignment : enumeration

Sets the horizontal and vertical alignment of the text within the TextEdit item's width and height. By default, the text alignment follows the natural alignment of the text, for example text that is read from left to right will be aligned to the left.

Valid values for horizontalAlignment 是:

Valid values for verticalAlignment 是:

When using the attached property LayoutMirroring::enabled to mirror application layouts, the horizontal alignment of text will also be mirrored. However, the property horizontalAlignment will remain unchanged. To query the effective horizontal alignment of TextEdit , use the read-only property effectiveHorizontalAlignment .


font.bold : bool

Sets whether the font weight is bold.


font.capitalization : enumeration

Sets the capitalization for the text.

TextEdit { text: "Hello"; font.capitalization: Font.AllLowercase }
				

font.family : string

Sets the family name of the font.

The family name is case insensitive and may optionally include a foundry name, e.g. "Helvetica [Cronyx]". If the family is available from more than one foundry and the foundry isn't specified, an arbitrary foundry is chosen. If the family isn't available a family will be set using the font matching algorithm.


font.hintingPreference : enumeration

Sets the preferred hinting on the text. This is a hint to the underlying text rendering system to use a certain level of hinting, and has varying support across platforms. See the table in the documentation for QFont::HintingPreference 了解更多细节。

注意: This property only has an effect when used together with render type TextEdit .NativeRendering.

Font.PreferDefaultHinting - Use the default hinting level for the target platform.

Font.PreferNoHinting - If possible, render text without hinting the outlines of the glyphs. The text layout will be typographically accurate, using the same metrics as are used e.g. when printing.

Font.PreferVerticalHinting - If possible, render text with no horizontal hinting, but align glyphs to the pixel grid in the vertical direction. The text will appear crisper on displays where the density is too low to give an accurate rendering of the glyphs. But since the horizontal metrics of the glyphs are unhinted, the text's layout will be scalable to higher density devices (such as printers) without impacting details such as line breaks.

Font.PreferFullHinting - If possible, render text with hinting in both horizontal and vertical directions. The text will be altered to optimize legibility on the target device, but since the metrics will depend on the target size of the text, the positions of glyphs, line breaks, and other typographical detail will not scale, meaning that a text layout may look different on devices with different pixel densities.

TextEdit { text: "Hello"; renderType: TextEdit.NativeRendering; font.hintingPreference: Font.PreferVerticalHinting }
				

This property was introduced in Qt 5.8.


font.italic : bool

Sets whether the font has an italic style.


font.kerning : bool

Enables or disables the kerning OpenType feature when shaping the text. Disabling this may improve performance when creating or changing the text, at the expense of some cosmetic features. The default value is true.

TextEdit { text: "OATS FLAVOUR WAY"; kerning: font.false }
				

该特性在 Qt 5.10 引入。


font.letterSpacing : real

Sets the letter spacing for the font.

Letter spacing changes the default spacing between individual letters in the font. A positive value increases the letter spacing by the corresponding pixels; a negative value decreases the spacing.


font.pixelSize : int

Sets the font size in pixels.

使用此函数使字体设备从属。使用 TextEdit::font.pointSize to set the size of the font in a device independent manner.


font.pointSize : real

Sets the font size in points. The point size must be greater than zero.


font.preferShaping : bool

Sometimes, a font will apply complex rules to a set of characters in order to display them correctly. In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, but in e.g. Latin script, it is merely a cosmetic feature. Setting the preferShaping property to false will disable all such features when they are not required, which will improve performance in most cases.

默认值为 true。

TextEdit { text: "Some text"; font.preferShaping: false }
				

该特性在 Qt 5.10 引入。


font.strikeout : bool

Sets whether the font has a strikeout style.


font.styleName : string

Sets the style name of the font.

The style name is case insensitive. If set, the font will be matched against style name instead of the font properties font.weight , font.bold and font.italic .

该特性在 Qt 5.6 引入。


font.underline : bool

Sets whether the text is underlined.


font.weight : enumeration

Sets the font's weight.

The weight can be one of:

TextEdit { text: "Hello"; font.weight: Font.DemiBold }
				

font.wordSpacing : real

Sets the word spacing for the font.

Word spacing changes the default spacing between individual words. A positive value increases the word spacing by a corresponding amount of pixels, while a negative value decreases the inter-word spacing accordingly.


horizontalAlignment : enumeration

Sets the horizontal and vertical alignment of the text within the TextEdit item's width and height. By default, the text alignment follows the natural alignment of the text, for example text that is read from left to right will be aligned to the left.

Valid values for horizontalAlignment 是:

Valid values for verticalAlignment 是:

When using the attached property LayoutMirroring::enabled to mirror application layouts, the horizontal alignment of text will also be mirrored. However, the property horizontalAlignment will remain unchanged. To query the effective horizontal alignment of TextEdit , use the read-only property effectiveHorizontalAlignment .


This property contains the link string when the user hovers a link embedded in the text. The link must be in rich text or HTML format and the link string provides access to the particular link.

该特性在 Qt 5.2 引入。

另请参阅 linkHovered and linkAt() .


inputMethodComposing : bool

This property holds whether the TextEdit has partial text input from an input method.

While it is composing an input method may rely on mouse or key events from the TextEdit to edit or commit the partial text. This property can be used to determine when to disable events handlers that may interfere with the correct operation of an input method.


inputMethodHints : enumeration

Provides hints to the input method about the expected content of the text edit and how it should operate.

The value is a bit-wise combination of flags or Qt.ImhNone if no hints are set.

Flags that alter behaviour are:

Flags that restrict input (exclusive flags) are:

掩码:


leftPadding : real

These properties hold the padding around the content. This space is reserved in addition to the contentWidth and contentHeight .

该特性在 Qt 5.6 引入。


length : int

Returns the total number of plain text characters in the TextEdit 项。

As this number doesn't include any formatting markup it may not be the same as the length of the string returned by the text 特性。

This property can be faster than querying the length the text property as it doesn't require any copying or conversion of the TextEdit 's internal string data.


lineCount : int

Returns the total number of lines in the TextEdit 项。


mouseSelectionMode : enumeration

Specifies how text should be selected using a mouse.

This property only applies when selectByMouse 为 true。


overwriteMode : bool

Whether text entered by the user will overwrite existing text.

As with many text editors, the text editor widget can be configured to insert or overwrite existing text with new text entered by the user.

若此特性为 true , existing text is overwritten, character-for-character by new text; otherwise, text is inserted at the cursor position, displacing existing text.

默认情况下此特性为 false (新文本不覆写现有文本)。

This property was introduced in Qt 5.8.


padding : real

These properties hold the padding around the content. This space is reserved in addition to the contentWidth and contentHeight .

该特性在 Qt 5.6 引入。


persistentSelection : bool

Whether the TextEdit should keep the selection visible when it loses active focus to another item in the scene. By default this is set to false.


[read-only] preeditText : string

This property contains partial text input from an input method.

该特性在 Qt 5.7 引入。


readOnly : bool

Whether the user can interact with the TextEdit item. If this property is set to true the text cannot be edited by user interaction.

By default this property is false.


renderType : enumeration

Override the default rendering type for this component.

Supported render types are:

Select Text.NativeRendering if you prefer text to look native on the target platform and do not require advanced features such as transformation of the text. Using such features in combination with the NativeRendering render type will lend poor and sometimes pixelated results.

The default rendering type is determined by QQuickWindow::textRenderType() .


rightPadding : real

These properties hold the padding around the content. This space is reserved in addition to the contentWidth and contentHeight .

该特性在 Qt 5.6 引入。


selectByKeyboard : bool

Defaults to true when the editor is editable, and false when read-only.

If true, the user can use the keyboard to select text even if the editor is read-only. If false, the user cannot use the keyboard to select text even if the editor is editable.

该特性在 Qt 5.1 引入。

另请参阅 readOnly .


selectByMouse : bool

Defaults to false.

If true, the user can use the mouse to select text in some platform-specific way. Note that for some platforms this may not be an appropriate interaction; it may conflict with how the text needs to behave inside a Flickable, for example.


selectedText : string

This read-only property provides the text currently selected in the text edit.

It is equivalent to the following snippet, but is faster and easier to use.

//myTextEdit is the id of the TextEdit
myTextEdit.text.toString().substring(myTextEdit.selectionStart,
        myTextEdit.selectionEnd);
				

selectedTextColor : color

The selected text color, used in selections.


selectionColor : color

The text highlight color, used behind selections.


selectionEnd : int

The cursor position after the last character in the current selection.

This property is read-only. To change the selection, use select(start,end), selectAll() ,或 selectWord() .

另请参阅 selectionStart , cursorPosition ,和 selectedText .


selectionStart : int

The cursor position before the first character in the current selection.

This property is read-only. To change the selection, use select(start,end), selectAll() ,或 selectWord() .

另请参阅 selectionEnd , cursorPosition ,和 selectedText .


tabStopDistance : real

The default distance, in device units, between tab stops.

该特性在 Qt 5.10 引入。

另请参阅 QTextOption::setTabStop() .


text : string

The text to display. If the text format is AutoText the text edit will automatically determine whether the text should be treated as rich text. This determination is made using Qt::mightBeRichText() .

The text-property is mostly suitable for setting the initial content and handling modifications to relatively small text content. The append() , insert() and remove() methods provide more fine-grained control and remarkably better performance for modifying especially large rich text content.

另请参阅 clear() .


textDocument : TextDocument

返回 QQuickTextDocument of this TextEdit . It can be used to implement syntax highlighting using QSyntaxHighlighter .

该特性在 Qt 5.1 引入。

另请参阅 QQuickTextDocument .


textFormat : enumeration

The way the text property should be displayed.

默认为 TextEdit .PlainText. If the text format is TextEdit .AutoText the text edit will automatically determine whether the text should be treated as rich text. This determination is made using Qt::mightBeRichText() .

Column {
    TextEdit {
        font.pointSize: 24
        text: "<b>Hello</b> <i>World!</i>"
    }
    TextEdit {
        font.pointSize: 24
        textFormat: TextEdit.RichText
        text: "<b>Hello</b> <i>World!</i>"
    }
    TextEdit {
        font.pointSize: 24
        textFormat: TextEdit.PlainText
        text: "<b>Hello</b> <i>World!</i>"
    }
}
							


textMargin : real

The margin, in pixels, around the text in the TextEdit .


topPadding : real

These properties hold the padding around the content. This space is reserved in addition to the contentWidth and contentHeight .

该特性在 Qt 5.6 引入。


verticalAlignment : enumeration

Sets the horizontal and vertical alignment of the text within the TextEdit item's width and height. By default, the text alignment follows the natural alignment of the text, for example text that is read from left to right will be aligned to the left.

Valid values for horizontalAlignment 是:

Valid values for verticalAlignment 是:

When using the attached property LayoutMirroring::enabled to mirror application layouts, the horizontal alignment of text will also be mirrored. However, the property horizontalAlignment will remain unchanged. To query the effective horizontal alignment of TextEdit , use the read-only property effectiveHorizontalAlignment .


wrapMode : enumeration

Set this property to wrap the text to the TextEdit item's width. The text will only wrap if an explicit width has been set.

默认为 TextEdit .NoWrap. If you set a width, consider using TextEdit .Wrap.


信号文档编制

editingFinished ()

This signal is emitted when the text edit loses focus.

相应处理程序是 onEditingFinished .

This signal was introduced in Qt 5.6.


linkActivated ( string link )

This signal is emitted when the user clicks on a link embedded in the text. The link must be in rich text or HTML format and the link string provides access to the particular link.

相应处理程序是 onLinkActivated .


linkHovered ( string link )

This signal is emitted when the user hovers a link embedded in the text. The link must be in rich text or HTML format and the link string provides access to the particular link.

相应处理程序是 onLinkHovered .

This signal was introduced in Qt 5.2.

另请参阅 hoveredLink and linkAt() .


方法文档编制

void append ( string text )

追加新段落采用 text to the end of the TextEdit .

In order to append without inserting a new paragraph, call myTextEdit.insert(myTextEdit.length, text) 代替。

This method was introduced in Qt 5.2.


clear ()

Clears the contents of the text edit and resets partial text input from an input method.

Use this method instead of setting the text property to an empty string.

This method was introduced in Qt 5.7.

另请参阅 QInputMethod::reset() .


copy ()

Copies the currently selected text to the system clipboard.


cut ()

Moves the currently selected text to the system clipboard.


deselect ()

Removes active text selection.


string getFormattedText ( int start , int end )

Returns the section of text that is between the start and end positions.

The returned text will be formatted according the textFormat 特性。


string getText ( int start , int end )

Returns the section of text that is between the start and end positions.

The returned text does not include any rich text formatting.


insert ( int position , string text )

插入 text TextEdit at position.


isRightToLeft ( int start , int end )

Returns true if the natural reading direction of the editor text found between positions start and end is right to left.


linkAt ( real x , real y )

Returns the link string at point x , y in content coordinates, or an empty string if no link exists at that point.

This method was introduced in Qt 5.3.

另请参阅 hoveredLink .


moveCursorSelection ( int position , SelectionMode mode = TextEdit.SelectCharacters )

把光标移动到 position and updates the selection according to the optional mode parameter. (To only move the cursor, set the cursorPosition property.)

When this method is called it additionally sets either the selectionStart selectionEnd (whichever was at the previous cursor position) to the specified position. This allows you to easily extend and contract the selected text range.

The selection mode specifies whether the selection is updated on a per character or a per word basis. If not specified the selection mode will default to TextEdit .SelectCharacters.

For example, take this sequence of calls:

cursorPosition = 5
moveCursorSelection(9, TextEdit.SelectCharacters)
moveCursorSelection(7, TextEdit.SelectCharacters)
				

This moves the cursor to position 5, extend the selection end from 5 to 9 and then retract the selection end from 9 to 7, leaving the text from position 5 to 7 selected (the 6th and 7th characters).

The same sequence with TextEdit .SelectWords will extend the selection start to a word boundary before or on position 5 and extend the selection end to a word boundary on or past position 9.


paste ()

Replaces the currently selected text by the contents of the system clipboard.


int positionAt ( int x , int y )

Returns the text position closest to pixel position ( x , y ).

Position 0 is before the first character, position 1 is after the first character but before the second, and so on until position text .length, which is after all characters.


rectangle positionToRectangle ( position )

Returns the rectangle at the given position in the text. The x, y, and height properties correspond to the cursor that would describe that position.


redo ()

重做上一操作,若重做 available .


string remove ( int start , int end )

Removes the section of text that is between the start and end positions from the TextEdit .


select ( int start , int end )

Causes the text from start to end to be selected.

If either start or end is out of range, the selection is not changed.

After calling this, selectionStart will become the lesser and selectionEnd will become the greater (regardless of the order passed to this method).

另请参阅 selectionStart and selectionEnd .


selectAll ()

Causes all text to be selected.


selectWord ()

Causes the word closest to the current cursor position to be selected.


undo ()

撤消上一操作,若撤消 available 。取消当前任何选定,并将选择起始更新成当前光标位置。