QInputContextFactory Class

The QInputContextFactory class creates QInputContext 對象。 更多...

頭: #include <QInputContextFactory>

靜態公共成員

QInputContext * create (const QString & key , QObject * parent )
QString description (const QString & key )
QString displayName (const QString & key )
QStringList keys ()
QStringList 語言 (const QString & key )

詳細描述

The QInputContextFactory class creates QInputContext 對象。

The input context factory creates a QInputContext object for a given key with QInputContextFactory::create ().

The input contexts are either built-in or dynamically loaded from an input context plugin (see QInputContextPlugin ).

keys () returns a list of valid keys. The keys are the names used, for example, to identify and specify input methods for the input method switching mechanism. The names have to be consistent with QInputContext::identifierName (), and may only contain ASCII characters.

A key can be used to retrieve the associated input context's supported languages using 語言 (). You can retrieve the input context's description using description () and finally you can get a user friendly internationalized name of the QInputContext object specified by the key using displayName ().

Copyright (C) 2003-2004 immodule for Qt Project. All rights reserved.

This file is written to contribute to Nokia Corporation and/or its subsidiary(-ies) under their own license. You may use this file under your Qt license. Following description is copied from their original file headers. Contact immodule-qt@freedesktop.org if any conditions of this licensing are not clear to you.

另請參閱 QInputContext and QInputContextPlugin .

成員函數文檔編製

[static] QInputContext * QInputContextFactory:: create (const QString & key , QObject * parent )

創建並返迴 QInputContext object for the input context specified by key 采用給定 parent 。鍵區分大小寫。

另請參閱 keys ().

[static] QString QInputContextFactory:: description (const QString & key )

Returns an internationalized brief description of the QInputContext object specified by key . You can, for example, use this description in a user interface.

另請參閱 keys () 和 displayName ().

[static] QString QInputContextFactory:: displayName (const QString & key )

Returns a user friendly internationalized name of the QInputContext object specified by key . You can, for example, use this name in a menu.

另請參閱 keys () 和 QInputContext::identifierName ().

[static] QStringList QInputContextFactory:: keys ()

Returns the list of keys this factory can create input contexts for.

The keys are the names used, for example, to identify and specify input methods for the input method switching mechanism. The names have to be consistent with QInputContext::identifierName (), and may only contain ASCII characters.

另請參閱 create (), displayName (),和 QInputContext::identifierName ().

[static] QStringList QInputContextFactory:: 語言 (const QString & key )

Returns the languages supported by the QInputContext object specified by key .

The languages are expressed as language code (e.g. "zh_CN", "zh_TW", "zh_HK", "ja", "ko", ...). An input context that supports multiple languages can return all supported languages as a QStringList . The name has to be consistent with QInputContext::language ().

This information may be used to optimize a user interface.

另請參閱 keys (), QInputContext::language (),和 QLocale .