部署指南

概述

此文档编制描述如何部署和使用 Qt Virtual Keyboard 插件与 Qt 5 应用程序。

部署

各种 Qt Virtual Keyboard 插件和文件被部署在以下位置:

Item 桌面安装路径 Boot2Qt 安装路径
qtvirtualkeyboardplugin $$[QT_INSTALL_PLUGINS]/platforminputcontexts /system/plugins/platforminputcontexts
qtvirtualkeyboardextensionplugin $$[QT_INSTALL_PLUGINS]/virtualkeyboard /system/plugins/virtualkeyboard
qtvirtualkeyboardplugin QML files $$[QT_INSTALL_QML]/QtQuick/VirtualKeyboard /system/qml/QtQuick/VirtualKeyboard
qtvirtualkeyboardstylesplugin $$[QT_INSTALL_QML]/QtQuick/VirtualKeyboard/Styles /system/qml/QtQuick/VirtualKeyboard/Styles

集成方法

Qt Virtual Keyboard currently supports two alternative integration methods for using the plugin:

  • Desktop : requires no changes to existing applications. The virtual keyboard is available to all of the Qt 5 applications in the system.

    In this integration method, the keyboard is shown in a dedicated top-level window.

  • 应用程序 : the virtual keyboard is embedded within the Qt application itself by instantiating an InputPanel item in QML.

    This method is mandatory in environments where there is no support for multiple top-level windows (such as embedded devices), but can be used in desktop applications too.

    This method can also be used by Qt Wayland compositors in order to provide a server-side virtual keyboard. See the section below for details.

The integration method is automatically selected by the project files. However, in desktop environments, it is possible to override the desktop integration method and use the application integration method instead, by adding CONFIG+=disable-desktop qmake 命令行。

使用 Qt Virtual Keyboard 与 Qt Wayland

This section explains how to use Qt Virtual Keyboard to interact with the Qt Widgets 行编辑范例 使用 纯 QML 范例 as a compositor.

We will be using Ubuntu 18.04 to run the example, using the X11 as the windowing system. The example compositor ( pure-qml ) will open as a window within an X11 session.

  1. Start the compositor:
    QT_XCB_GL_INTEGRATION=xcb_egl QT_WAYLAND_CLIENT_BUFFER_INTEGRATION=xcomposite-egl QT_IM_MODULE=qtvirtualkeyboard ./pure-qml -platform xcb
    							
  2. Before running the client application, ensure that QT_IM_MODULE is unset:
    unset QT_IM_MODULE
    							
  3. Start the Line Edits example as the client:
    ./lineedits -platform wayland
    							
  4. Click on a line edit and Qt Virtual Keyboard's input panel will open.

If issues are encountered, the following environment variables can be set when running the compositor to get debug output that can help diagnose the issue:

WAYLAND_DEBUG=1
QT_LOGGING_RULES="qt.virtualkeyboard=true;qt.qpa.wayland*=true"
					

加载插件

In both integration methods, the application must use the QT_IM_MODULE environment variable to load the plugin. For example:

$ QT_IM_MODULE=qtvirtualkeyboard myapp
					

or in the main() function:

qputenv("QT_IM_MODULE", QByteArray("qtvirtualkeyboard"));
					

In the desktop integration method, this step is all that is required to use Qt Virtual Keyboard. In the application integration method, the application is required to create an instance of InputPanel as explained in the following chapter.

创建 InputPanel

The following example shows how to create an InputPanel and how to divide the screen area with the application container.

import QtQuick 2.0
import QtQuick.VirtualKeyboard 2.1
Item {
    id: root
    Item {
        id: appContainer
        anchors.left: parent.left
        anchors.top: parent.top
        anchors.right: parent.right
        anchors.bottom: inputPanel.top
        ...
    }
    InputPanel {
        id: inputPanel
        y: Qt.inputMethod.visible ? parent.height - inputPanel.height : parent.height
        anchors.left: parent.left
        anchors.right: parent.right
    }
}
					

The input panel must be a sibling element next to the application container. It is important not to put the input panel within the application container, as it would then overlap with the contents of the application. Also, the input panel height will be automatically updated according to the available width; the aspect ratio of the input panel is constant.

环境变量

There are several environment variables defined by the module that are listed below:

变量 目的
QT_VIRTUALKEYBOARD_HUNSPELL_DATA_PATH Overrides the location of the Hunspell data files.

The default location depends on the value of QLibraryInfo::location(QLibraryInfo::DataPath) . For example, for Qt libraries built from source, it could be qtbase/qtvirtualkeyboard/hunspell .

Hunspell Integration 了解更多信息。

QT_VIRTUALKEYBOARD_PINYIN_DICTIONARY Overrides the location of the Pinyin dictionary.

By default, the dictionary is bundled into the plugin's resources.

To disable resource bundling, add CONFIG+=no-bundle-pinyin in the plugin's qmake command line. In this scenario, the default location depends on the value of QLibraryInfo::location(QLibraryInfo::DataPath) . For example, for Qt libraries built from source, it could be qtbase/qtvirtualkeyboard/pinyin/dict_pinyin.dat .

QT_VIRTUALKEYBOARD_CANGJIE_DICTIONARY Overrides the location of the Cangjie dictionary.

By default, the dictionary is bundled into the plugin's resources.

To disable resource bundling, add CONFIG+=no-bundle-tcime in the plugin's qmake command line. In this scenario, the default location depends on the value of QLibraryInfo::location(QLibraryInfo::DataPath) . For example, for Qt libraries built from source, it could be qtbase/qtvirtualkeyboard/tcime/dict_cangjie.dat .

QT_VIRTUALKEYBOARD_ZHUYIN_DICTIONARY Overrides the location of the Zhuyin dictionary.

By default, the dictionary is bundled into the plugin's resources.

To disable resource bundling, add CONFIG+=no-bundle-tcime in the plugin's qmake command line. In this scenario, the default location depends on the value of QLibraryInfo::location(QLibraryInfo::DataPath) . For example, for Qt libraries built from source, it could be qtbase/qtvirtualkeyboard/tcime/dict_zhuyin.dat .

QT_VIRTUALKEYBOARD_PHRASE_DICTIONARY Overrides the location of the phrase dictionary.

By default, the dictionary is bundled into the plugin's resources.

To disable resource bundling, add CONFIG+=no-bundle-tcime in the plugin's qmake command line. In this scenario, the default location depends on the value of QLibraryInfo::location(QLibraryInfo::DataPath) . For example, for Qt libraries built from source, it could be qtbase/qtvirtualkeyboard/tcime/dict_phrases.dat .

QT_VIRTUALKEYBOARD_STYLE Specifies the location of the style to use with the virtual keyboard.

This can also be specified in QML by setting VirtualKeyboardSettings::styleName , or at build time by using the qmake configuration options .

QT_VIRTUALKEYBOARD_LAYOUT_PATH Specifies the location of the layouts to be used with the virtual keyboard.
LIPI_ROOT Specifies the location of lipi-toolkit.

The default location depends on the value of QLibraryInfo::location(QLibraryInfo::DataPath) . For example, for Qt libraries built from source, it could be qtbase/qtvirtualkeyboard/lipi_toolkit .

LIPI_LIB Specifies the location of lipi-toolkit plugins.

The default location depends on LIPI_ROOT :

  • LIPI_ROOT + "/lib" if LIPI_ROOT 有设置。
  • QLibraryInfo::location(QLibraryInfo::PluginsPath) + "/lipi_toolkit" if LIPI_ROOT is not set.