Warning, /plasma/plasma-bigscreen/kcms/plasma-settings-shell/+mediacenter/VirtualKeyboard.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2019 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 
0006 */
0007 
0008 import QtQuick 2.14
0009 import QtQuick.VirtualKeyboard 2.2
0010 
0011 InputPanel {
0012     id: inputPanel
0013     active:  Qt.inputMethod.visible
0014     visible: active
0015     width: parent.width
0016 
0017     //keep the default keyboard size
0018 
0019     //onHeightChanged: resizeKeyboard();
0020     //onWidthChanged: resizeKeyboard();
0021     //function resizeKeyboard() {
0022         //keyboard.style.keyboardDesignWidth = width*3
0023         //keyboard.style.keyboardDesignHeight = height*3
0024     //}
0025     //Component.onCompleted: resizeKeyboard()
0026 }