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

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

Версия от 12:07, 29 января 2009; Root (Обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

[править] Obsolete Members for Q3Accel

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 Q3Accel::keyToString ( QKeySequence k ) [static]

Creates an accelerator string for the key k. For instance CTRL+Key_O gives "Ctrl+O". The "Ctrl" etc. are translated (using QObject::tr()) in the " Q3Accel" context.

The function is superfluous. Cast the QKeySequence k to a QString for the same effect.

[править]
QKeySequence Q3Accel::stringToKey ( const QString & s ) [static]

Returns an accelerator code for the string s. For example "Ctrl+O" gives CTRL+UNICODE_ACCEL+'O'. The strings "Ctrl", "Shift", "Alt" are recognized, as well as their translated equivalents in the " Q3Accel" context (using QObject::tr()). Returns 0 if s is not recognized.

This function is typically used with tr(), so that accelerator keys can be replaced in translations:

 Q3PopupMenu *file = new Q3PopupMenu(this);
 file->insertItem(p1, tr("&Open..."), this, SLOT(open()),
                   Q3Accel::stringToKey(tr("Ctrl+O", "File|Open")));

Notice the "File|Open" translator comment. It is by no means necessary, but it provides some context for the human translator.

The function is superfluous. Construct a QKeySequence from the string s for the same effect.

See also QObject::tr() and Internationalization with Qt.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2