Qt:Документация 4.3.2/qtextedit-qt3

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

Qt 3 Support Members for QTextEdit

The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.



Открытые типы

  • enum KeyboardAction { ActionBackspace, ActionDelete, ActionReturn, ActionKill, ActionWordBackspace, ActionWordDelete }

Открытые функции

  • 60 открытых функций унаследованных от QWidget
  • 8 открытых функций унаследованных от QObject
  • 8 открытых функций унаследованных от QPaintDevice

Открытые слоты

  • 1 открытый слот унаследованный от QWidget

Сигналы


Описание типов членов

enum QTextEdit::KeyboardAction

Constant Value
QTextEdit::ActionBackspace 0
QTextEdit::ActionDelete 1
QTextEdit::ActionReturn 2
QTextEdit::ActionKill 3
QTextEdit::ActionWordBackspace 4
QTextEdit::ActionWordDelete 5

Описание функций-членов

QTextEdit::QTextEdit ( QWidget * parent, const char * name )

Use one of the constructors that doesn't take the name argument and then use setObjectName() instead.

bool QTextEdit::bold () const

Use fontWeight() >= QFont::Bold instead.

See also setBold().

QColor QTextEdit::color () const

Use textColor() instead.

See also setColor().

void QTextEdit::currentColorChanged ( const QColor & color ) [signal]

Use currentCharFormatChanged() instead.

void QTextEdit::currentFontChanged ( const QFont & font ) [signal]

Use currentCharFormatChanged() instead.

void QTextEdit::doKeyboardAction ( KeyboardAction action )

Executes keyboard action action.

Use the QTextCursor class instead.

See also textCursor().

QString QTextEdit::family () const

Use fontFamily() instead.

See also setFamily().

bool QTextEdit::find ( const QString & exp, bool cs, bool wo )

This is an overloaded member function, provided for convenience.

Use the find() overload that takes a QTextDocument::FindFlags argument.

bool QTextEdit::hasSelectedText () const

Use textCursor().hasSelection() instead.

void QTextEdit::insert ( const QString & text )

Use insertPlainText() instead.

bool QTextEdit::isModified () const

Use document()->isModified() instead.

bool QTextEdit::isRedoAvailable () const

Use document()->isRedoAvailable() instead.

bool QTextEdit::isUndoAvailable () const

Use document()->isUndoAvailable() instead.

bool QTextEdit::italic () const

Use fontItalic() instead.

See also setItalic().

void QTextEdit::moveCursor ( CursorAction action, QTextCursor::MoveMode mode = QTextCursor::MoveAnchor )

This is an overloaded member function, provided for convenience.

Use the QTextCursor class instead.

void QTextEdit::moveCursor ( CursorAction action, bool select )

This is an overloaded member function, provided for convenience.

Use the QTextCursor class instead.

int QTextEdit::pointSize () const

Use int( fontPointSize()+0.5) instead.

See also setPointSize().

void QTextEdit::redo () const

This is an overloaded member function, provided for convenience.

Use the non-const overload instead.

QString QTextEdit::selectedText () const

Use textCursor().selectedText() instead.

void QTextEdit::setBold ( bool b )

Use setFontWeight() instead.

See also bold().

void QTextEdit::setColor ( const QColor & color ) [slot]

Use setTextColor() instead.

See also color().

void QTextEdit::setFamily ( const QString & family )

Use setFontFamily() instead.

See also family().

void QTextEdit::setItalic ( bool i )

Use setFontItalic() instead.

See also italic().

void QTextEdit::setModified ( bool m = true ) [slot]

Use document->setModified() instead.

See also isModified().

void QTextEdit::setPointSize ( int size )

Use setFontPointSize() instead.

See also pointSize().

void QTextEdit::setTextFormat ( Qt::TextFormat f )

Sets the text format to format f.

See also textFormat().

void QTextEdit::setUnderline ( bool b )

Use setFontUnderline() instead.

See also underline().

void QTextEdit::sync ()

Does nothing.

QString QTextEdit::text () const

Returns all the text in the text edit as plain text.

See also setText().

Qt::TextFormat QTextEdit::textFormat () const

Returns the text format.

See also setTextFormat().

bool QTextEdit::underline () const

Use fontUnderline() instead.

See also setUnderline().

void QTextEdit::undo () const

This is an overloaded member function, provided for convenience.

Use the non-const overload instead.


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2