QVirtualKeyboardDictionary Class

An application-defined dictionary for virtual keyboard input methods. 更多...

头: #include <QVirtualKeyboardDictionary>
CMake: find_package(Qt6 COMPONENTS VirtualKeyboard REQUIRED)
target_link_libraries(mytarget PRIVATE Qt6::VirtualKeyboard)
qmake: QT += virtualkeyboard
继承: QObject

特性

公共函数

QStringList contents () const
QString name () const
void setContents (const QStringList & contents )

信号

void contentsChanged ()

详细描述

This class defines a named dictionary that consists of words or phrases. The dictionary can be enabled in the desired context and its usage depends on the current input method of the virtual keyboard.

特性文档编制

contents : QStringList

contents of the dictionary.

This property holds the contents of the dictionary. Typically, the content consists of words or phrases. Note that the dictionary is language neutral, meaning it is the application's responsibility to localize the dictionary if it contains language-dependent data.

The content can be set at any time, although it makes sense to set it when the input method is not active.

访问函数:

QStringList contents () const
void setContents (const QStringList & contents )

通知程序信号:

void contentsChanged ()

[read-only] name : const QString

name of the dictionary.

This property holds the name of the dictionary that was specified when the dictionary was created. The name is necessary when referring to a specific dictionary (for example when you activate it in the input context).

注意: The dictionary name cannot be changed later.

访问函数:

QString 名称 () const