diff options
author | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-25 17:58:09 +0200 |
---|---|---|
committer | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-26 18:01:49 +0200 |
commit | 49daa163530ceabc9eaa8911ab96b5f799cfb552 (patch) | |
tree | 080d0b31eafd138cd8d47d5c2a52b75d3cfa6f28 /qml/VKeyboard.qml |
Initial Commit
Diffstat (limited to 'qml/VKeyboard.qml')
-rw-r--r-- | qml/VKeyboard.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/qml/VKeyboard.qml b/qml/VKeyboard.qml new file mode 100644 index 0000000..c97e120 --- /dev/null +++ b/qml/VKeyboard.qml @@ -0,0 +1,14 @@ +import QtQuick +import QtQuick.VirtualKeyboard +import QtQuick.VirtualKeyboard.Settings +import QtQuick.Window + +InputPanel { + id: panel + visible: active + y: active ? 0 : parent.height + anchors.left: parent.left + anchors.right: parent.right + property int textInputHeight: InputContext.cursorRectangle.height + property int textInputY: InputContext.cursorRectangle.y +} |