Questions tagged [qtvirtualkeyboard]

The Qt Virtual Keyboard provides an input framework and Qt Quick-based reference keyboard front end for Qt 5.

The Qt Virtual Keyboard provides an input framework and Qt Quick-based reference keyboard front end for Qt 5.

The input framework makes it easy to write custom input methods or to integrate 3rd party input engines. The input methods can be implemented in C++ or QML.

72 questions
2
votes
0 answers

Qml virtual keyboard key press

I was able to show the virtual keyboard using the below code. import QtQuick.VirtualKeyboard 2.0 Window { visible: true width: 640 height: 480 title: qsTr("Hello KeyBoard") InputPanel { id: inputPanel z: 89 y: 0 …
prasanth
  • 19
  • 4
2
votes
1 answer

Qt Virtual Keyboard Custom Style

I need to build a custom Style for a Qt VirtualKeyboard on a small screen to maximize its readability. I have built a custom layout into my project, and using the QT_VIRTUALKEYBOARD_LAYOUT_PATH it works great. The problem I am having is that the…
Kyle Gray
  • 115
  • 1
  • 7
2
votes
0 answers

Block Virtual keyboard popup for a particular TextField/TextArea in QML

How to block virtual keyboard pop up for a TextField/TextArea? I tried using inputMethodHints: Qt.ImhNone and also declared an InputMethod by setting Visible:false but nothing is working. If i click on TextEdit/TextArea keyboard pops-up. Is there…
pra7
  • 834
  • 2
  • 21
  • 50
2
votes
2 answers

QML Virtual keyboard Hide button not working

I am having a problem if I click on keyboard hide button .Following is the code : import QtQuick 2.6 import QtQuick.Window 2.2 import QtQuick.Controls 2.2 import QtQuick.VirtualKeyboard 2.2 Window { visible: true width: 600 height: 500 …
pra7
  • 834
  • 2
  • 21
  • 50
2
votes
0 answers

qt virtual keyboard and non-modal dialog

Is it possible to make Qt Quick application to continue input, while TextField is in the non-modal Dialog, which parented to some of children of an ApplicationWindow and InputPanel is a footer of the window? Currently on desktop (Ubuntu 16.04 w/…
Tomilov Anatoliy
  • 15,657
  • 10
  • 64
  • 169
2
votes
1 answer

QT, How to focus on virtualkeyboard, and use keyboard to control virtualkeyboard

I'm using virtualkeyboard of Qt5 on embedded device, and no mouse, the keyboard is not full pc keyboard, but just has eleven keys, which include up/down/left/right, enter, esc.... so I want focus on virtualkeyboard, and use up/down/left/right/enter…
1
vote
1 answer

how to add qtvirtualkeyboard to a qt widget project

I have a Qt Widget project that I created using QtCreator and Qt version 5.15.2 to which I'm trying to add the QtVirtualKeyboard as matchbox-keyboard I've already tried using stays under the application when it's in fullscreen mode. However I'm…
1
vote
1 answer

QtVirtualKeyboard how to set default input method?

When the keyboard opens, the default layer is shown with letters How to do that by default shown a layer with numbers?
uralbash
  • 3,219
  • 5
  • 25
  • 45
1
vote
1 answer

How to capture Hide key event in Qt VirtualKeyboard

I am using Qt virtual Keypad in my project. I am able to print key values (using event.key) in console log for all keys, except hide key event (which is marked as red color in attached image). Can anyone please help me in capturing the hide key…
praveen
  • 67
  • 5
1
vote
1 answer

Issue with qtvirtualkeyboard while upgrading from Qt 5.9 to 5.12

I am working on upgrading an embedded target from Qt 5.9.3 to 5.12.10. Most packages work OK, however the qtvirtualkeyboard package is causing issues. The build process (using Yocto/bitbake) creates an upgrade package, which contains all the…
Borkhuis
  • 141
  • 3
  • 11
1
vote
0 answers

How to enable TextField selection handlers with QtVirtualKeyboard on a QQuickWidget?

I am integrating QtVirtualKeyboard in my QML app and this causes selection handlers to appear in text fields when some text is selected as shown below. However the handlers are not draggable if I integrate my QML app using a QQuickWidget. Instead…
Kazuto_Ute
  • 679
  • 6
  • 20
1
vote
1 answer

Soft keyboard is not visible on Android with Qt 5.15 on any input

We migrated from 5.12.9 to 5.15.2 and now soft Android keyboard is not visible (does not popup) on active focus for any of our inputs or text fields. Is it a bug (QTBUG-88069) or some workaround exists? Following Stackoverflow solution or…
1
vote
1 answer

Using PyQt5 Virtual Keyboard in Tinker Board with Armbian Bionic OS

I'm trying to use a virtual keyboard for a touchscreen, using python 3.6 and PyQt5.10 on Armbian Bionic (Linux for ARM development boards). My hardware is ASUS Tinker Board. I checked the answer by @eyllanesc in this Link. It's worked fine when I…
1
vote
2 answers

How to simulate key pressed event in Qml?

I'm implementing a customized virtual keyboard using QML. My purpose is simulating a physical key press signal of real keyboard when I click a button in virtual keyboard. I have followed the tutorial in Qt Virtual Keyboard and have successfully…
Dan Do
  • 79
  • 1
  • 8
1
vote
2 answers

raspbian qt virtual keyboard black top screen

I run Qt Virtual Keyboard example in ubuntu and windows 10 very nice, but on raspbian it runs just on full screen mode and i can not see text edit when typing with virtual keyboard. I want virtual keyboard width fit to window size and show under the…
Sajjad Aemmi
  • 2,120
  • 3
  • 13
  • 25