Movatterモバイル変換


[0]ホーム

URL:


We bake cookies in your browser for a better experience. Using this site means that you consent.Read More

Menu

Qt Documentation

QTextEdit Class

TheQTextEdit class provides a widget that is used to edit and display both plain and rich text.More...

Header:#include <QTextEdit>
Inherits:QAbstractScrollArea
Inherited By:

QTextBrowser

Public Types

classExtraSelection
flagsAutoFormatting
enumAutoFormattingFlag { AutoNone, AutoBulletList, AutoAll }
enumLineWrapMode { NoWrap, WidgetWidth, FixedPixelWidth, FixedColumnWidth }

Properties

Public Functions

QTextEdit(QWidget * parent = 0)
QTextEdit(const QString & text, QWidget * parent = 0)
virtual~QTextEdit()
boolacceptRichText() const
Qt::Alignmentalignment() const
QStringanchorAt(const QPoint & pos) const
AutoFormattingautoFormatting() const
boolcanPaste() const
QMenu *createStandardContextMenu()
QMenu *createStandardContextMenu(const QPoint & position)
QTextCharFormatcurrentCharFormat() const
QFontcurrentFont() const
QTextCursorcursorForPosition(const QPoint & pos) const
QRectcursorRect(const QTextCursor & cursor) const
QRectcursorRect() const
intcursorWidth() const
QTextDocument *document() const
QStringdocumentTitle() const
voidensureCursorVisible()
QList<ExtraSelection>extraSelections() const
boolfind(const QString & exp, QTextDocument::FindFlags options = 0)
QStringfontFamily() const
boolfontItalic() const
qrealfontPointSize() const
boolfontUnderline() const
intfontWeight() const
boolisReadOnly() const
boolisUndoRedoEnabled() const
intlineWrapColumnOrWidth() const
LineWrapModelineWrapMode() const
virtual QVariantloadResource(int type, const QUrl & name)
voidmergeCurrentCharFormat(const QTextCharFormat & modifier)
voidmoveCursor(QTextCursor::MoveOperation operation, QTextCursor::MoveMode mode = QTextCursor::MoveAnchor)
booloverwriteMode() const
voidprint(QPrinter * printer) const
voidsetAcceptRichText(bool accept)
voidsetAutoFormatting(AutoFormatting features)
voidsetCurrentCharFormat(const QTextCharFormat & format)
voidsetCursorWidth(int width)
voidsetDocument(QTextDocument * document)
voidsetDocumentTitle(const QString & title)
voidsetExtraSelections(const QList<ExtraSelection> & selections)
voidsetLineWrapColumnOrWidth(int w)
voidsetLineWrapMode(LineWrapMode mode)
voidsetOverwriteMode(bool overwrite)
voidsetReadOnly(bool ro)
voidsetTabChangesFocus(bool b)
voidsetTabStopWidth(int width)
voidsetTextCursor(const QTextCursor & cursor)
voidsetTextInteractionFlags(Qt::TextInteractionFlags flags)
voidsetUndoRedoEnabled(bool enable)
voidsetWordWrapMode(QTextOption::WrapMode policy)
booltabChangesFocus() const
inttabStopWidth() const
QColortextBackgroundColor() const
QColortextColor() const
QTextCursortextCursor() const
Qt::TextInteractionFlagstextInteractionFlags() const
QStringtoHtml() const
QStringtoPlainText() const
QTextOption::WrapModewordWrapMode() const

Public Slots

voidappend(const QString & text)
voidclear()
voidcopy()
voidcut()
voidinsertHtml(const QString & text)
voidinsertPlainText(const QString & text)
voidpaste()
voidredo()
voidscrollToAnchor(const QString & name)
voidselectAll()
voidsetAlignment(Qt::Alignment a)
voidsetCurrentFont(const QFont & f)
voidsetFontFamily(const QString & fontFamily)
voidsetFontItalic(bool italic)
voidsetFontPointSize(qreal s)
voidsetFontUnderline(bool underline)
voidsetFontWeight(int weight)
voidsetHtml(const QString & text)
voidsetPlainText(const QString & text)
voidsetText(const QString & text)
voidsetTextBackgroundColor(const QColor & c)
voidsetTextColor(const QColor & c)
voidundo()
voidzoomIn(int range = 1)
voidzoomOut(int range = 1)
  • 19 public slots inherited fromQWidget
  • 1 public slot inherited fromQObject

Signals

voidcopyAvailable(bool yes)
voidcurrentCharFormatChanged(const QTextCharFormat & f)
voidcursorPositionChanged()
voidredoAvailable(bool available)
voidselectionChanged()
voidtextChanged()
voidundoAvailable(bool available)

Protected Functions

virtual boolcanInsertFromMimeData(const QMimeData * source) const
virtual QMimeData *createMimeDataFromSelection() const
virtual voidinsertFromMimeData(const QMimeData * source)

Reimplemented Protected Functions

virtual voidchangeEvent(QEvent * e)
virtual voidcontextMenuEvent(QContextMenuEvent * event)
virtual voiddragEnterEvent(QDragEnterEvent * e)
virtual voiddragLeaveEvent(QDragLeaveEvent * e)
virtual voiddragMoveEvent(QDragMoveEvent * e)
virtual voiddropEvent(QDropEvent * e)
virtual voidfocusInEvent(QFocusEvent * e)
virtual boolfocusNextPrevChild(bool next)
virtual voidfocusOutEvent(QFocusEvent * e)
virtual voidinputMethodEvent(QInputMethodEvent * e)
virtual QVariantinputMethodQuery(Qt::InputMethodQuery property) const
virtual voidkeyPressEvent(QKeyEvent * e)
virtual voidkeyReleaseEvent(QKeyEvent * e)
virtual voidmouseDoubleClickEvent(QMouseEvent * e)
virtual voidmouseMoveEvent(QMouseEvent * e)
virtual voidmousePressEvent(QMouseEvent * e)
virtual voidmouseReleaseEvent(QMouseEvent * e)
virtual voidpaintEvent(QPaintEvent * event)
virtual voidresizeEvent(QResizeEvent * e)
virtual voidscrollContentsBy(int dx, int dy)
virtual voidshowEvent(QShowEvent *)
virtual voidwheelEvent(QWheelEvent * e)

Additional Inherited Members

Detailed Description

TheQTextEdit class provides a widget that is used to edit and display both plain and rich text.

Introduction and Concepts

QTextEdit is an advanced WYSIWYG viewer/editor supporting rich text formatting using HTML-style tags. It is optimized to handle large documents and to respond quickly to user input.

QTextEdit works on paragraphs and characters. A paragraph is a formatted string which is word-wrapped to fit into the width of the widget. By default when reading plain text, one newline signifies a paragraph. A document consists of zero or more paragraphs. The words in the paragraph are aligned in accordance with the paragraph's alignment. Paragraphs are separated by hard line breaks. Each character within a paragraph has its own attributes, for example, font and color.

QTextEdit can display images, lists and tables. If the text is too large to view within the text edit's viewport, scroll bars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4).

If you just need to display a small piece of rich text useQLabel.

The rich text support in Qt is designed to provide a fast, portable and efficient way to add reasonable online help facilities to applications, and to provide a basis for rich text editors. If you find the HTML support insufficient for your needs you may consider the use ofQtWebKit, which provides a full-featured web browser widget.

The shape of the mouse cursor on aQTextEdit isQt::IBeamCursor by default. It can be changed through theviewport()'s cursor property.

Using QTextEdit as a Display Widget

QTextEdit can display a large HTML subset, including tables and images.

The text is set or replaced usingsetHtml() which deletes any existing text and replaces it with the text passed in thesetHtml() call. If you callsetHtml() with legacy HTML, and then calltoHtml(), the text that is returned may have different markup, but will render the same. The entire text can be deleted withclear().

Text itself can be inserted using theQTextCursor class or using the convenience functionsinsertHtml(),insertPlainText(),append() orpaste().QTextCursor is also able to insert complex objects like tables or lists into the document, and it deals with creating selections and applying changes to selected text.

By default the text edit wraps words at whitespace to fit within the text edit widget. ThesetLineWrapMode() function is used to specify the kind of line wrap you want, orNoWrap if you don't want any wrapping. CallsetLineWrapMode() to set a fixed pixel widthFixedPixelWidth, or character column (e.g. 80 column)FixedColumnWidth with the pixels or columns specified withsetLineWrapColumnOrWidth(). If you use word wrap to the widget's widthWidgetWidth, you can specify whether to break on whitespace or anywhere withsetWordWrapMode().

Thefind() function can be used to find and select a given string within the text.

If you want to limit the total number of paragraphs in aQTextEdit, as for example it is often useful in a log viewer, then you can useQTextDocument's maximumBlockCount property for that.

Read-only Key Bindings

WhenQTextEdit is used read-only the key bindings are limited to navigation, and text may only be selected with the mouse:

KeypressesAction
UpMoves one line up.
DownMoves one line down.
LeftMoves one character to the left.
RightMoves one character to the right.
PageUpMoves one (viewport) page up.
PageDownMoves one (viewport) page down.
HomeMoves to the beginning of the text.
EndMoves to the end of the text.
Alt+WheelScrolls the page horizontally (the Wheel is the mouse wheel).
Ctrl+WheelZooms the text.
Ctrl+ASelects all text.

The text edit may be able to provide some meta-information. For example, thedocumentTitle() function will return the text from within HTML<title> tags.

Using QTextEdit as an Editor

All the information about usingQTextEdit as a display widget also applies here.

The current char format's attributes are set withsetFontItalic(),setFontWeight(),setFontUnderline(),setFontFamily(),setFontPointSize(),setTextColor() andsetCurrentFont(). The current paragraph's alignment is set withsetAlignment().

Selection of text is handled by theQTextCursor class, which provides functionality for creating selections, retrieving the text contents or deleting selections. You can retrieve the object that corresponds with the user-visible cursor using thetextCursor() method. If you want to set a selection inQTextEdit just create one on aQTextCursor object and then make that cursor the visible cursor usingsetTextCursor(). The selection can be copied to the clipboard withcopy(), or cut to the clipboard withcut(). The entire text can be selected usingselectAll().

When the cursor is moved and the underlying formatting attributes change, thecurrentCharFormatChanged() signal is emitted to reflect the new attributes at the new cursor position.

QTextEdit holds aQTextDocument object which can be retrieved using thedocument() method. You can also set your own document object usingsetDocument().QTextDocument emits atextChanged() signal if the text changes and it also provides aisModified() function which will return true if the text has been modified since it was either loaded or since the last call tosetModified with false as argument. In addition it provides methods for undo and redo.

Drag and Drop

QTextEdit also supports custom drag and drop behavior. By default,QTextEdit will insert plain text, HTML and rich text when the user drops data of these MIME types onto a document. ReimplementcanInsertFromMimeData() andinsertFromMimeData() to add support for additional MIME types.

For example, to allow the user to drag and drop an image onto aQTextEdit, you could the implement these functions in the following way:

bool TextEdit::canInsertFromMimeData(constQMimeData*source )const{if (source->hasImage())returntrue;elsereturnQTextEdit::canInsertFromMimeData(source);}

We add support for image MIME types by returning true. For all other MIME types, we use the default implementation.

void TextEdit::insertFromMimeData(constQMimeData*source ){if (source->hasImage())    {QImage image= qvariant_cast<QImage>(source->imageData());QTextCursor cursor=this->textCursor();QTextDocument*document=this->document();        document->addResource(QTextDocument::ImageResource,QUrl("image"), image);        cursor.insertImage("image");    }}

We unpack the image from theQVariant held by the MIME source and insert it into the document as a resource.

Editing Key Bindings

The list of key bindings which are implemented for editing:

KeypressesAction
BackspaceDeletes the character to the left of the cursor.
DeleteDeletes the character to the right of the cursor.
Ctrl+CCopy the selected text to the clipboard.
Ctrl+InsertCopy the selected text to the clipboard.
Ctrl+KDeletes to the end of the line.
Ctrl+VPastes the clipboard text into text edit.
Shift+InsertPastes the clipboard text into text edit.
Ctrl+XDeletes the selected text and copies it to the clipboard.
Shift+DeleteDeletes the selected text and copies it to the clipboard.
Ctrl+ZUndoes the last operation.
Ctrl+YRedoes the last operation.
LeftMoves the cursor one character to the left.
Ctrl+LeftMoves the cursor one word to the left.
RightMoves the cursor one character to the right.
Ctrl+RightMoves the cursor one word to the right.
UpMoves the cursor one line up.
DownMoves the cursor one line down.
PageUpMoves the cursor one page up.
PageDownMoves the cursor one page down.
HomeMoves the cursor to the beginning of the line.
Ctrl+HomeMoves the cursor to the beginning of the text.
EndMoves the cursor to the end of the line.
Ctrl+EndMoves the cursor to the end of the text.
Alt+WheelScrolls the page horizontally (the Wheel is the mouse wheel).

To select (mark) text hold down the Shift key whilst pressing one of the movement keystrokes, for example,Shift+Right will select the character to the right, andShift+Ctrl+Right will select the word to the right, etc.

See alsoQTextDocument,QTextCursor,Application Example,Syntax Highlighter Example, andRich Text Processing.

Member Type Documentation

enum QTextEdit::AutoFormattingFlag
flags QTextEdit::AutoFormatting

ConstantValueDescription
QTextEdit::AutoNone0Don't do any automatic formatting.
QTextEdit::AutoBulletList0x00000001Automatically create bullet lists (e.g. when the user enters an asterisk ('*') in the left most column, or presses Enter in an existing list item.
QTextEdit::AutoAll0xffffffffApply all automatic formatting. Currently only automatic bullet lists are supported.

The AutoFormatting type is a typedef forQFlags<AutoFormattingFlag>. It stores an OR combination of AutoFormattingFlag values.

enum QTextEdit::LineWrapMode

ConstantValue
QTextEdit::NoWrap0
QTextEdit::WidgetWidth1
QTextEdit::FixedPixelWidth2
QTextEdit::FixedColumnWidth3

Property Documentation

acceptRichText :bool

This property holds whether the text edit accepts rich text insertions by the user.

When this propery is set to false text edit will accept only plain text input from the user. For example through clipboard or drag and drop.

This property's default is true.

This property was introduced in Qt 4.1.

Access functions:

boolacceptRichText() const
voidsetAcceptRichText(bool accept)

autoFormatting :AutoFormatting

This property holds the enabled set of auto formatting features.

The value can be any combination of the values in theAutoFormattingFlag enum. The default isAutoNone. ChooseAutoAll to enable all automatic formatting.

Currently, the only automatic formatting feature provided isAutoBulletList; future versions of Qt may offer more.

Access functions:

AutoFormattingautoFormatting() const
voidsetAutoFormatting(AutoFormatting features)

cursorWidth :int

This property specifies the width of the cursor in pixels. The default value is 1.

This property was introduced in Qt 4.2.

Access functions:

intcursorWidth() const
voidsetCursorWidth(int width)

documentTitle :QString

This property holds the title of the document parsed from the text.

By default, for a newly-created, empty document, this property contains an empty string.

Access functions:

QStringdocumentTitle() const
voidsetDocumentTitle(const QString & title)

html :QString

This property provides an HTML interface to the text of the text edit.

toHtml() returns the text of the text edit as html.

setHtml() changes the text of the text edit. Any previous text is removed and the undo/redo history is cleared. The input text is interpreted as rich text in html format.

Note:It is the responsibility of the caller to make sure that the text is correctly decoded when aQString containing HTML is created and passed to setHtml().

By default, for a newly-created, empty document, this property contains text to describe an HTML 4.0 document with no body text.

Access functions:

QStringtoHtml() const
voidsetHtml(const QString & text)

Notifier signal:

voidtextChanged()

See alsoSupported HTML Subset andplainText.

lineWrapColumnOrWidth :int

This property holds the position (in pixels or columns depending on the wrap mode) where text will be wrapped.

If the wrap mode isFixedPixelWidth, the value is the number of pixels from the left edge of the text edit at which text should be wrapped. If the wrap mode isFixedColumnWidth, the value is the column number (in character columns) from the left edge of the text edit at which text should be wrapped.

By default, this property contains a value of 0.

Access functions:

intlineWrapColumnOrWidth() const
voidsetLineWrapColumnOrWidth(int w)

See alsolineWrapMode.

lineWrapMode :LineWrapMode

This property holds the line wrap mode.

The default mode isWidgetWidth which causes words to be wrapped at the right edge of the text edit. Wrapping occurs at whitespace, keeping whole words intact. If you want wrapping to occur within words usesetWordWrapMode(). If you set a wrap mode ofFixedPixelWidth orFixedColumnWidth you should also callsetLineWrapColumnOrWidth() with the width you want.

Access functions:

LineWrapModelineWrapMode() const
voidsetLineWrapMode(LineWrapMode mode)

See alsolineWrapColumnOrWidth.

overwriteMode :bool

This property holds 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.

If this property is true, existing text is overwritten, character-for-character by new text; otherwise, text is inserted at the cursor position, displacing existing text.

By default, this property is false (new text does not overwrite existing text).

This property was introduced in Qt 4.1.

Access functions:

booloverwriteMode() const
voidsetOverwriteMode(bool overwrite)

plainText :QString

This property gets and sets the text editor's contents as plain text. Previous contents are removed and undo/redo history is reset when the property is set.

If the text edit has another content type, it will not be replaced by plain text if you call toPlainText(). The only exception to this is the non-break space,nbsp;, that will be converted into standard space.

By default, for an editor with no contents, this property contains an empty string.

This property was introduced in Qt 4.3.

Access functions:

QStringtoPlainText() const
voidsetPlainText(const QString & text)

See alsohtml.

readOnly :bool

This property holds whether the text edit is read-only.

In a read-only text edit the user can only navigate through the text and select text; modifying the text is not possible.

This property's default is false.

Access functions:

boolisReadOnly() const
voidsetReadOnly(bool ro)

tabChangesFocus :bool

This property holds whether Tab changes focus or is accepted as input.

In some occasions text edits should not allow the user to input tabulators or change indentation using theTab key, as this breaks the focus chain. The default is false.

Access functions:

booltabChangesFocus() const
voidsetTabChangesFocus(bool b)

tabStopWidth :int

This property holds the tab stop width in pixels.

By default, this property contains a value of 80 pixels.

This property was introduced in Qt 4.1.

Access functions:

inttabStopWidth() const
voidsetTabStopWidth(int width)

textInteractionFlags :Qt::TextInteractionFlags

Specifies how the widget should interact with user input.

The default value depends on whether theQTextEdit is read-only or editable, and whether it is aQTextBrowser or not.

This property was introduced in Qt 4.2.

Access functions:

Qt::TextInteractionFlagstextInteractionFlags() const
voidsetTextInteractionFlags(Qt::TextInteractionFlags flags)

undoRedoEnabled :bool

This property holds whether undo and redo are enabled.

Users are only able to undo or redo actions if this property is true, and if there is an action that can be undone (or redone).

Access functions:

boolisUndoRedoEnabled() const
voidsetUndoRedoEnabled(bool enable)

wordWrapMode :QTextOption::WrapMode

This property holds the mode QTextEdit will use when wrapping text by words.

By default, this property is set toQTextOption::WrapAtWordBoundaryOrAnywhere.

Access functions:

QTextOption::WrapModewordWrapMode() const
voidsetWordWrapMode(QTextOption::WrapMode policy)

See alsoQTextOption::WrapMode.

Member Function Documentation

QTextEdit::QTextEdit(QWidget * parent = 0)

Constructs an emptyQTextEdit with parentparent.

QTextEdit::QTextEdit(constQString & text,QWidget * parent = 0)

Constructs aQTextEdit with parentparent. The text edit will display the texttext. The text is interpreted as html.

[virtual]QTextEdit::~QTextEdit()

Destructor.

Qt::Alignment QTextEdit::alignment() const

Returns the alignment of the current paragraph.

See alsosetAlignment().

QString QTextEdit::anchorAt(constQPoint & pos) const

Returns the reference of the anchor at positionpos, or an empty string if no anchor exists at that point.

[slot]void QTextEdit::append(constQString & text)

Appends a new paragraph withtext to the end of the text edit.

Note:The new paragraph appended will have the same character format and block format as the current paragraph, determined by the position of the cursor.

See alsocurrentCharFormat() andQTextCursor::blockFormat().

[virtual protected]bool QTextEdit::canInsertFromMimeData(constQMimeData * source) const

This function returns true if the contents of the MIME data object, specified bysource, can be decoded and inserted into the document. It is called for example when during a drag operation the mouse enters this widget and it is necessary to determine whether it is possible to accept the drag and drop operation.

Reimplement this function to enable drag and drop support for additional MIME types.

bool QTextEdit::canPaste() const

Returns whether text can be pasted from the clipboard into the textedit.

This function was introduced in Qt 4.2.

[virtual protected]void QTextEdit::changeEvent(QEvent * e)

Reimplemented fromQWidget::changeEvent().

[slot]void QTextEdit::clear()

Deletes all the text in the text edit.

Note that the undo/redo history is cleared by this function.

See alsocut(),setPlainText(), andsetHtml().

[virtual protected]void QTextEdit::contextMenuEvent(QContextMenuEvent * event)

Reimplemented fromQWidget::contextMenuEvent().

Shows the standard context menu created withcreateStandardContextMenu().

If you do not want the text edit to have a context menu, you can set itscontextMenuPolicy toQt::NoContextMenu. If you want to customize the context menu, reimplement this function. If you want to extend the standard context menu, reimplement this function, callcreateStandardContextMenu() and extend the menu returned.

Information about the event is passed in theevent object.

void MyTextEdit::contextMenuEvent(QContextMenuEvent*event){QMenu*menu= createStandardContextMenu();    menu->addAction(tr("My Menu Item"));//...    menu->exec(event->globalPos());delete menu;}

[slot]void QTextEdit::copy()

Copies any selected text to the clipboard.

See alsocopyAvailable().

[signal]void QTextEdit::copyAvailable(bool yes)

This signal is emitted when text is selected or de-selected in the text edit.

When text is selected this signal will be emitted withyes set to true. If no text has been selected or if the selected text is de-selected this signal is emitted withyes set to false.

Ifyes is true thencopy() can be used to copy the selection to the clipboard. Ifyes is false thencopy() does nothing.

See alsoselectionChanged().

[virtual protected]QMimeData * QTextEdit::createMimeDataFromSelection() const

This function returns a new MIME data object to represent the contents of the text edit's current selection. It is called when the selection needs to be encapsulated into a newQMimeData object; for example, when a drag and drop operation is started, or when data is copyied to the clipboard.

If you reimplement this function, note that the ownership of the returnedQMimeData object is passed to the caller. The selection can be retrieved by using thetextCursor() function.

QMenu * QTextEdit::createStandardContextMenu()

This function creates the standard context menu which is shown when the user clicks on the text edit with the right mouse button. It is called from the defaultcontextMenuEvent() handler. The popup menu's ownership is transferred to the caller.

We recommend that you use the createStandardContextMenu(QPoint) version instead which will enable the actions that are sensitive to where the user clicked.

QMenu * QTextEdit::createStandardContextMenu(constQPoint & position)

This function creates the standard context menu which is shown when the user clicks on the text edit with the right mouse button. It is called from the defaultcontextMenuEvent() handler and it takes theposition of where the mouse click was. This can enable actions that are sensitive to the position where the user clicked. The popup menu's ownership is transferred to the caller.

This function was introduced in Qt 4.4.

QTextCharFormat QTextEdit::currentCharFormat() const

Returns the char format that is used when inserting new text.

See alsosetCurrentCharFormat().

[signal]void QTextEdit::currentCharFormatChanged(constQTextCharFormat & f)

This signal is emitted if the current character format has changed, for example caused by a change of the cursor position.

The new format isf.

See alsosetCurrentCharFormat().

QFont QTextEdit::currentFont() const

Returns the font of the current format.

See alsosetCurrentFont(),setFontFamily(), andsetFontPointSize().

QTextCursor QTextEdit::cursorForPosition(constQPoint & pos) const

returns aQTextCursor at positionpos (in viewport coordinates).

[signal]void QTextEdit::cursorPositionChanged()

This signal is emitted whenever the position of the cursor changed.

QRect QTextEdit::cursorRect(constQTextCursor & cursor) const

returns a rectangle (in viewport coordinates) that includes thecursor.

QRect QTextEdit::cursorRect() const

returns a rectangle (in viewport coordinates) that includes the cursor of the text edit.

[slot]void QTextEdit::cut()

Copies the selected text to the clipboard and deletes it from the text edit.

If there is no selected text nothing happens.

See alsocopy() andpaste().

QTextDocument * QTextEdit::document() const

Returns a pointer to the underlying document.

See alsosetDocument().

[virtual protected]void QTextEdit::dragEnterEvent(QDragEnterEvent * e)

Reimplemented fromQWidget::dragEnterEvent().

[virtual protected]void QTextEdit::dragLeaveEvent(QDragLeaveEvent * e)

Reimplemented fromQWidget::dragLeaveEvent().

[virtual protected]void QTextEdit::dragMoveEvent(QDragMoveEvent * e)

Reimplemented fromQWidget::dragMoveEvent().

[virtual protected]void QTextEdit::dropEvent(QDropEvent * e)

Reimplemented fromQWidget::dropEvent().

void QTextEdit::ensureCursorVisible()

Ensures that the cursor is visible by scrolling the text edit if necessary.

QList<ExtraSelection> QTextEdit::extraSelections() const

Returns previously set extra selections.

This function was introduced in Qt 4.2.

See alsosetExtraSelections().

bool QTextEdit::find(constQString & exp,QTextDocument::FindFlags options = 0)

Finds the next occurrence of the string,exp, using the givenoptions. Returns true ifexp was found and changes the cursor to select the match; otherwise returns false.

[virtual protected]void QTextEdit::focusInEvent(QFocusEvent * e)

Reimplemented fromQWidget::focusInEvent().

[virtual protected]bool QTextEdit::focusNextPrevChild(bool next)

Reimplemented fromQWidget::focusNextPrevChild().

[virtual protected]void QTextEdit::focusOutEvent(QFocusEvent * e)

Reimplemented fromQWidget::focusOutEvent().

QString QTextEdit::fontFamily() const

Returns the font family of the current format.

See alsosetFontFamily(),setCurrentFont(), andsetFontPointSize().

bool QTextEdit::fontItalic() const

Returns true if the font of the current format is italic; otherwise returns false.

See alsosetFontItalic().

qreal QTextEdit::fontPointSize() const

Returns the point size of the font of the current format.

See alsosetFontFamily(),setCurrentFont(), andsetFontPointSize().

bool QTextEdit::fontUnderline() const

Returns true if the font of the current format is underlined; otherwise returns false.

See alsosetFontUnderline().

int QTextEdit::fontWeight() const

Returns the font weight of the current format.

See alsosetFontWeight(),setCurrentFont(),setFontPointSize(), andQFont::Weight.

[virtual protected]void QTextEdit::inputMethodEvent(QInputMethodEvent * e)

Reimplemented fromQWidget::inputMethodEvent().

[virtual protected]QVariant QTextEdit::inputMethodQuery(Qt::InputMethodQuery property) const

Reimplemented fromQWidget::inputMethodQuery().

[virtual protected]void QTextEdit::insertFromMimeData(constQMimeData * source)

This function inserts the contents of the MIME data object, specified bysource, into the text edit at the current cursor position. It is called whenever text is inserted as the result of a clipboard paste operation, or when the text edit accepts data from a drag and drop operation.

Reimplement this function to enable drag and drop support for additional MIME types.

[slot]void QTextEdit::insertHtml(constQString & text)

Convenience slot that insertstext which is assumed to be of html formatting at the current cursor position.

It is equivalent to:

edit->textCursor().insertHtml(fragment);

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, useQTextDocument::setDefaultStyleSheet() instead.

[slot]void QTextEdit::insertPlainText(constQString & text)

Convenience slot that insertstext at the current cursor position.

It is equivalent to

edit->textCursor().insertText(text);

[virtual protected]void QTextEdit::keyPressEvent(QKeyEvent * e)

Reimplemented fromQWidget::keyPressEvent().

[virtual protected]void QTextEdit::keyReleaseEvent(QKeyEvent * e)

Reimplemented fromQWidget::keyReleaseEvent().

[virtual]QVariant QTextEdit::loadResource(int type, constQUrl & name)

Loads the resource specified by the giventype andname.

This function is an extension ofQTextDocument::loadResource().

See alsoQTextDocument::loadResource().

void QTextEdit::mergeCurrentCharFormat(constQTextCharFormat & modifier)

Merges the properties specified inmodifier into the current character format by callingQTextCursor::mergeCharFormat on the editor's cursor. If the editor has a selection then the properties ofmodifier are directly applied to the selection.

See alsoQTextCursor::mergeCharFormat().

[virtual protected]void QTextEdit::mouseDoubleClickEvent(QMouseEvent * e)

Reimplemented fromQWidget::mouseDoubleClickEvent().

[virtual protected]void QTextEdit::mouseMoveEvent(QMouseEvent * e)

Reimplemented fromQWidget::mouseMoveEvent().

[virtual protected]void QTextEdit::mousePressEvent(QMouseEvent * e)

Reimplemented fromQWidget::mousePressEvent().

[virtual protected]void QTextEdit::mouseReleaseEvent(QMouseEvent * e)

Reimplemented fromQWidget::mouseReleaseEvent().

void QTextEdit::moveCursor(QTextCursor::MoveOperation operation,QTextCursor::MoveMode mode = QTextCursor::MoveAnchor)

Moves the cursor by performing the givenoperation.

Ifmode isQTextCursor::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.

This function was introduced in Qt 4.2.

See alsoQTextCursor::movePosition().

[virtual protected]void QTextEdit::paintEvent(QPaintEvent * event)

Reimplemented fromQWidget::paintEvent().

This event handler can be reimplemented in a subclass to receive paint events passed inevent. It is usually unnecessary to reimplement this function in a subclass ofQTextEdit.

Warning: The underlying text document must not be modified from within a reimplementation of this function.

[slot]void QTextEdit::paste()

Pastes the text from the clipboard into the text edit at the current cursor position.

If there is no text in the clipboard nothing happens.

To change the behavior of this function, i.e. to modify whatQTextEdit can paste and how it is being pasted, reimplement the virtualcanInsertFromMimeData() andinsertFromMimeData() functions.

See alsocut() andcopy().

void QTextEdit::print(QPrinter * printer) const

Convenience function to print the text edit's document to the givenprinter. This is equivalent to calling the print method on the document directly except that this function also supportsQPrinter::Selection as print range.

This function was introduced in Qt 4.3.

See alsoQTextDocument::print().

[slot]void QTextEdit::redo()

Redoes the last operation.

If there is no operation to redo, i.e. there is no redo step in the undo/redo history, nothing happens.

This function was introduced in Qt 4.2.

See alsoundo().

[signal]void QTextEdit::redoAvailable(bool available)

This signal is emitted whenever redo operations become available (available is true) or unavailable (available is false).

[virtual protected]void QTextEdit::resizeEvent(QResizeEvent * e)

Reimplemented fromQWidget::resizeEvent().

[virtual protected]void QTextEdit::scrollContentsBy(int dx,int dy)

Reimplemented fromQAbstractScrollArea::scrollContentsBy().

[slot]void QTextEdit::scrollToAnchor(constQString & name)

Scrolls the text edit so that the anchor with the givenname is visible; does nothing if thename is empty, or is already visible, or isn't found.

[slot]void QTextEdit::selectAll()

Selects all text.

See alsocopy(),cut(), andtextCursor().

[signal]void QTextEdit::selectionChanged()

This signal is emitted whenever the selection changes.

See alsocopyAvailable().

[slot]void QTextEdit::setAlignment(Qt::Alignment a)

Sets the alignment of the current paragraph toa. Valid alignments areQt::AlignLeft,Qt::AlignRight,Qt::AlignJustify andQt::AlignCenter (which centers horizontally).

See alsoalignment().

void QTextEdit::setCurrentCharFormat(constQTextCharFormat & format)

Sets the char format that is be used when inserting new text toformat by callingQTextCursor::setCharFormat() on the editor's cursor. If the editor has a selection then the char format is directly applied to the selection.

See alsocurrentCharFormat().

[slot]void QTextEdit::setCurrentFont(constQFont & f)

Sets the font of the current format tof.

See alsocurrentFont(),setFontPointSize(), andsetFontFamily().

void QTextEdit::setDocument(QTextDocument * document)

Makesdocument the new document of the text editor.

Note:The editordoes not take ownership of the document unless it is the document's parent object. The parent object of the provided document remains the owner of the object.

The editor does not delete the current document, even if it is a child of the editor.

See alsodocument().

void QTextEdit::setExtraSelections(constQList<ExtraSelection> & selections)

This function allows temporarily marking certain regions in the document with a given color, specified asselections. This can be useful for example in a programming editor to mark a whole line of text with a given background color to indicate the existence of a breakpoint.

This function was introduced in Qt 4.2.

See alsoQTextEdit::ExtraSelection andextraSelections().

[slot]void QTextEdit::setFontFamily(constQString & fontFamily)

Sets the font family of the current format tofontFamily.

See alsofontFamily() andsetCurrentFont().

[slot]void QTextEdit::setFontItalic(bool italic)

Ifitalic is true, sets the current format to italic; otherwise sets the current format to non-italic.

See alsofontItalic().

[slot]void QTextEdit::setFontPointSize(qreal s)

Sets the point size of the current format tos.

Note that ifs is zero or negative, the behavior of this function is not defined.

See alsofontPointSize(),setCurrentFont(), andsetFontFamily().

[slot]void QTextEdit::setFontUnderline(bool underline)

Ifunderline is true, sets the current format to underline; otherwise sets the current format to non-underline.

See alsofontUnderline().

[slot]void QTextEdit::setFontWeight(int weight)

Sets the font weight of the current format to the givenweight, where the value used is in the range defined by theQFont::Weight enum.

See alsofontWeight(),setCurrentFont(), andsetFontFamily().

[slot]void QTextEdit::setText(constQString & text)

Sets the text edit'stext. The text can be plain text or HTML and the text edit will try to guess the right format.

UsesetHtml() orsetPlainText() directly to avoid text edit's guessing.

This function was introduced in Qt 4.2.

See alsotext(),toPlainText(), andtoHtml().

[slot]void QTextEdit::setTextBackgroundColor(constQColor & c)

Sets the text background color of the current format toc.

This function was introduced in Qt 4.4.

See alsotextBackgroundColor().

[slot]void QTextEdit::setTextColor(constQColor & c)

Sets the text color of the current format toc.

See alsotextColor().

void QTextEdit::setTextCursor(constQTextCursor & cursor)

Sets the visiblecursor.

See alsotextCursor().

[virtual protected]void QTextEdit::showEvent(QShowEvent *)

Reimplemented fromQWidget::showEvent().

QColor QTextEdit::textBackgroundColor() const

Returns the text background color of the current format.

This function was introduced in Qt 4.4.

See alsosetTextBackgroundColor().

QColor QTextEdit::textColor() const

Returns the text color of the current format.

See alsosetTextColor().

QTextCursor QTextEdit::textCursor() const

Returns a copy of theQTextCursor that represents the currently visible cursor. Note that changes on the returned cursor do not affectQTextEdit's cursor; usesetTextCursor() to update the visible cursor.

See alsosetTextCursor().

[slot]void QTextEdit::undo()

Undoes the last operation.

If there is no operation to undo, i.e. there is no undo step in the undo/redo history, nothing happens.

This function was introduced in Qt 4.2.

See alsoredo().

[signal]void QTextEdit::undoAvailable(bool available)

This signal is emitted whenever undo operations become available (available is true) or unavailable (available is false).

[virtual protected]void QTextEdit::wheelEvent(QWheelEvent * e)

Reimplemented fromQWidget::wheelEvent().

[slot]void QTextEdit::zoomIn(int range = 1)

Zooms in on the text by making the base font sizerange points larger and recalculating all font sizes to be the new size. This does not change the size of any images.

See alsozoomOut().

[slot]void QTextEdit::zoomOut(int range = 1)

This is an overloaded function.

Zooms out on the text by making the base font sizerange points smaller and recalculating all font sizes to be the new size. This does not change the size of any images.

See alsozoomIn().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.


[8]ページ先頭

©2009-2025 Movatter.jp