Qt:Документация 4.3.2/qabstractitemdelegate-obsolete
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
Содержание |
Obsolete Members for QAbstractItemDelegate
The following class members are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.
Статические открытые члены
- QString elidedText ( const QFontMetrics & fontMetrics, int width, Qt::TextElideMode mode, const QString & text ) (obsolete)
Описание функций-членов
QString QAbstractItemDelegate::elidedText ( const QFontMetrics & fontMetrics, int width, Qt::TextElideMode mode, const QString & text ) [static]
Use QFontMetrics::elidedText() instead.
For example, if you have code like
QFontMetrics fm = ... QString str = QAbstractItemDelegate::elidedText(fm, width, mode, text);
you can rewrite it as
QFontMetrics fm = ... QString str = fm.elidedText(text, mode, width);
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|