Qt Virtual Keyboard [PyQt 5.8]- Стиль не найден, невозможно изменить размер виртуальной клавиатуры

Я пытался работать с Qt Virtual Keyboard, и все шло довольно хорошо, пока...


Проблема в:

  1. Переменные среды устанавливаются. (вроде проверка)
  2. QT_VIRTUALKEYBOARD_STYLE (не найдено). Я уже создал свой собственный стиль из другого поста stackru, кажется довольно хорошим, но он не найден.

ВНИМАНИЕ: Не удается найти стиль ".../INTERACT/ Interactive / II / Tools/en_GB/customkb.qml" - отступление: "по умолчанию"

Некоторые попытки:

  1. Поместите один файл customkeyboard.qml внутри моего собственного проекта и установите переменную в его путь.
  2. Поместите всю папку "en_GB" из папки Qt по умолчанию в мой проект с моей модификацией.
  3. Также установил переменную с исходным путем из папки Qt с моим стилем.
  4. Скачал Qt 5.8/5.7/5.6 и сделал то же самое для всей клавиатуры qtvirtual.
  5. После просмотра вышеуказанной ошибки (резерв: "по умолчанию") я попытался добавить свои элементы qml в файл default.qml из папки qt. [.../Qt/5,8/Src/qtvirtualkeyboard/ SRC / экранная клавиатура / содержание / стили / по умолчанию]
  6. Откройте файл qtvirtualkeyboard.so с QTCreator и соберите все после изменения моих файлов qml также, чтобы посмотреть, изменит ли это что-то, и ничего не изменилось.

Кажется, ни один из них не изменяет размер и расположение моей клавиатуры.


Вот файлы, которые имеют значение с небольшим примером.

1 - Небольшой пример использования клавиатуры.

import os
import sys

from PyQt5.QtCore import QProcessEnvironment
from PyQt5.QtWidgets import QApplication
from PyQt5.QtWidgets import QLineEdit
from PyQt5.QtWidgets import QMainWindow
from PyQt5.QtWidgets import QVBoxLayout
from PyQt5.QtWidgets import QWidget

os.environ["QT5DIR"] = "/home/epson/Qt/5.8/gcc_64"
os.environ["QT_QPA_PLATFORM_PLUGIN_PATH"] = "/home/epson/Qt/5.8/gcc_64/plugins/platforms"
os.environ["QT_PLUGIN_PATH"] = "/home/epson/Qt/5.8/gcc_64/plugins"
os.environ["QML_IMPORT_PATH"] = "/home/epson/Qt/5.8/gcc_64/qml"
os.environ["QML2_IMPORT_PATH"] = "/home/epson/Qt/5.8/gcc_64/qml"

os.environ["QT_VIRTUALKEYBOARD_LAYOUT_PATH"] = "/home/epson/INTERACT/interact-ii/tools/en_GB/customkb.qml"
os.environ["QT_VIRTUALKEYBOARD_STYLE"] = "/home/epson/Qt/5.8/Src/qtvirtualkeyboard/src/virtualkeyboard/content/styles"
os.environ["QT_IM_MODULE"] = "qtvirtualkeyboard"

for i in QProcessEnvironment.systemEnvironment().keys():
    print(i)

class MainWindow(QMainWindow):

    def __init__(self):
        super(MainWindow, self).__init__()
        self.line_edit = None


        self.init_ui()

    def init_ui(self):
        self.line_edit = QLineEdit()
        self.line_edit2 = QLineEdit()
        self.layout = QVBoxLayout()
        self.main_widget = QWidget()
        self.main_widget.setLayout(self.layout)
        self.layout.addWidget(self.line_edit)
        self.layout.addWidget(self.line_edit2)
        self.setCentralWidget(self.main_widget)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    mw = MainWindow()
    mw.show()
    sys.exit(app.exec_())

2 - Мой customkeyboard.qml

/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 2.0
import QtQuick.Window 2.2
import QtQuick.VirtualKeyboard 2.1
import "content"

Item {
    width: 1280
    height: 720

    Item {
        id: appContainer
        width: Screen.width < Screen.height ? parent.height : parent.width
        height: Screen.width < Screen.height ? parent.width : parent.height
        anchors.centerIn: parent
        rotation: Screen.width < Screen.height ? 90 : 0
        Basic {
            id: virtualKeyboard
            anchors.left: parent.left
            anchors.top: parent.top
            anchors.right: parent.right
            anchors.bottom: inputPanel.top
        }

        /*  Handwriting input panel for full screen handwriting input.

            This component is an optional add-on for the InputPanel component, that
            is, its use does not affect the operation of the InputPanel component,
            but it also can not be used as a standalone component.

            The handwriting input panel is positioned to cover the entire area of
            application. The panel itself is transparent, but once it is active the
            user can draw handwriting on it.
        */
        HandwritingInputPanel {
            z: 79
            id: handwritingInputPanel
            anchors.fill: parent
            inputPanel: inputPanel
            Rectangle {
                z: -1
                anchors.fill: parent
                color: "black"
                opacity: 0.10
            }
        }

        /*  Container area for the handwriting mode button.

            Handwriting mode button can be moved freely within the container area.
            In this example, a single click changes the handwriting mode and a
            double-click changes the availability of the full screen handwriting input.
        */
        Item {
            z: 89
            visible: handwritingInputPanel.enabled && Qt.inputMethod.visible
            anchors { left: parent.left; top: parent.top; right: parent.right; bottom: inputPanel.top; }
            HandwritingModeButton {
                id: handwritingModeButton
                anchors.top: parent.top
                anchors.right: parent.right
                anchors.margins: 10
                floating: true
                flipable: true
                width: 76
                height: width
                state: handwritingInputPanel.state
                onClicked: handwritingInputPanel.active = !handwritingInputPanel.active
                onDoubleClicked: handwritingInputPanel.available = !handwritingInputPanel.available
            }
        }

        /*  Keyboard input panel.

            The keyboard is anchored to the bottom of the application.
        */
        InputPanel {
            id: keyboard;
            y: screenHeight; // position the top of the keyboard to the bottom of the screen/display

            anchors.left: parent.left;
            anchors.right: parent.right;

            states: State {
                name: "visible";
                when: keyboard.active;
                PropertyChanges {
                    target: keyboard;
                    // position the top of the keyboard to the bottom of the text input field
                    y: textInput.height;
                }
            }
            transitions: Transition {
                from: ""; // default initial state
                to: "visible";
                reversible: true; // toggle visibility with reversible: true;
                ParallelAnimation {
                    NumberAnimation {
                        properties: "y";
                        duration: 250;
                        easing.type: Easing.InOutQuad;
                    }
                }
            }
        }
    }
}

ВОПРОС:

Я что-то не так делаю с настройкой переменных STYLE и LAYOUT? Какой из них мне нужно настроить, это переменная STYLE или LAYOUT, которая будет изменять размер и расположение моей клавиатуры? Куда мне действительно положить файл qml? Что я делаю неправильно? Не вижу в чем проблема!!

Obs: Даже после этого поста не получилось. Сделал все точно так же, но, кажется, чего-то не хватает, или я что-то неправильно понимаю.

1 ответ

Решение

Я считаю, что вы путаете макеты стилей, что создает для вас несколько проблем.

Макеты

  1. Файлы.qml в каталоге en_GB - это то, что Qt использует для раскладки клавиатуры.
  2. Чтобы включить ваши пользовательские макеты, вы должны указать QT_VIRTUALKEYBOARD_LAYOUT_PATH var на каталог, который вы создали для своих пользовательских макетов (например, QT_VIRTUALKEYBOARD_LAYOUT_PATH=/path/to/custom/keyboard-layout/mycustomlayout). Затем, чтобы добавить пользовательский макет для британского английского, вы должны создать каталог en_GB в /path/to/custom/keyboard-layout/mycustomlayout. В вашей директории en_GB у вас должен быть, по крайней мере, main.qml.
  3. Вы назвали свой файл customkeyboard.qml. Чтобы Qt правильно находил, загружал и обрабатывал ваш пользовательский макет, вы должны следовать соглашению об именах файлов макетов по умолчанию (то есть main.qml, handwriting.qml, symbols.qml), как указано здесь.

Стили

Для пользовательских стилей вы должны поместить каталог пользовательских стилей в $$[QT_INSTALL_QML]/QtQuick/VirtualKeyboard/Styles, как указано здесь. Очевидно, ваш пользовательский файл style.qml помещается в каталог пользовательских стилей.

Надеюсь, это поможет прояснить некоторые вещи для вас.

Другие вопросы по тегам