Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

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.

Public Types

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

Public Functions

  • 60 public functions inherited from QWidget
  • 8 public functions inherited from QObject
  • 8 public functions inherited from QPaintDevice

Public Slots

  • 1 public slot inherited from QWidget

Signals


Member Type Documentation

enum QTextEdit::KeyboardAction

ConstantValue
QTextEdit::ActionBackspace0
QTextEdit::ActionDelete1
QTextEdit::ActionReturn2
QTextEdit::ActionKill3
QTextEdit::ActionWordBackspace4
QTextEdit::ActionWordDelete5

Member Function Documentation

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 API 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. It behaves essentially like the above function.

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 )

Use the QTextCursor() class instead.

int QTextEdit::pointSize () const

Use int(fontPointSize()+0.5) instead.

See also setPointSize().

void QTextEdit::redo () const   [slot]

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.

See also undo().

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::setText ( const QString & text )

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

Use setHtml() or setPlainText() directly to avoid text edit's guessing.

See also text().

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   [slot]

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.

See also redo().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 94
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 42
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 6
Page suivante

Le Qt Quarterly au hasard

Logo

Bibliothèques et plug-ins

Qt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.0
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web