#include <scim_proxy_imengine.h>
Inheritance diagram for scim::ProxyIMEngineFactoryBase:
Public Member Functions | |
ProxyIMEngineFactoryBase () | |
virtual | ~ProxyIMEngineFactoryBase () |
virtual WideString | get_name () const |
Get the name of this input method engine. | |
virtual String | get_uuid () const |
Get the UUID of this input method engine. | |
virtual String | get_icon_file () const |
Get the icon file path of this input method engine. | |
virtual WideString | get_authors () const |
Get the authors information of this input method engine. | |
virtual WideString | get_credits () const |
Get the credits information of this input method engine. | |
virtual WideString | get_help () const |
Get the help information of this input method engine. | |
virtual IMEngineInstancePointer | create_instance (const String &encoding, int id=-1) |
Create a new IMEngineInstance object. | |
virtual bool | validate_encoding (const String &encoding) const |
Check if a encoding is supported by this IMEngineFactory. | |
virtual bool | validate_locale (const String &locale) const |
Check if a locale is supported by this IMEngineFactory. | |
virtual String | get_language () const |
Get the supported language of this input method engine. | |
virtual WideString | inverse_query (const WideString &str) |
Get the original key string of a composed string. |
|
|
|
|
|
Get the name of this input method engine. This name should be a localized string.
Implements scim::IMEngineFactoryBase.
|
|
Get the UUID of this input method engine. Each input method engine has an unique UUID to distinguish itself from other engines. You may use uuidgen command shipped with e2fsprogs package to generate this UUID.
Implements scim::IMEngineFactoryBase.
|
|
Get the icon file path of this input method engine.
Implements scim::IMEngineFactoryBase.
|
|
Get the authors information of this input method engine. This string should be a localized string.
Implements scim::IMEngineFactoryBase.
|
|
Get the credits information of this input method engine. This string should be a localized string.
Implements scim::IMEngineFactoryBase.
|
|
Get the help information of this input method engine. This string should be a localized string.
Implements scim::IMEngineFactoryBase.
|
|
Create a new IMEngineInstance object. This method creates a new scim::IMEngineInstanceBase object with the given encoding and id.
Implements scim::IMEngineFactoryBase.
|
|
Check if a encoding is supported by this IMEngineFactory. The default implementation of this virtual function validates the encoding against the locale list set by method set_locales. It should be enough in most case.
Reimplemented from scim::IMEngineFactoryBase.
|
|
Check if a locale is supported by this IMEngineFactory. The default implementation of this virtual function validates the locale against the locale list set by method set_locales. It should be enough in most case.
Reimplemented from scim::IMEngineFactoryBase.
|
|
Get the supported language of this input method engine. The language name conforms to glibc locale naming standard, like: zh_CN Simplified Chinese zh_TW Traditional Chinese ja_JP Japanese ru_RU for Russian The second part of the name (territory id) can be omitted. The default implementation of this method will get the language name according to the return value of get_default_locale () method. This method maybe overwrited to return another language name, for example returning "~other" means other uncategorized languages. Reimplemented from scim::IMEngineFactoryBase.
|
|
Get the original key string of a composed string. For example, in the pinyin input method of Simplified Chinese: the key string of composed string "中国" can be "zhongguo". The default implementation just returns a empty string.
Reimplemented from scim::IMEngineFactoryBase.
|