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
8
votes
1 answer

QtVirtualKeyboard freezes QML application with platform WebGL, but desktop works fine. How to unfreeze it or work around it?

The long version I am running a QML application in the browser using WebGL as a platform. Everything is working fine until I try to integrate the QtVirtualKeyboard to fill in some textfields and editable ComboBox'es. When running the project in the…
Alexander Mayer
  • 316
  • 2
  • 11
7
votes
1 answer

How to change Qt 5.7 virtual keyboard layout/locale

I'm writing a small windows application with Qt 5.7 using qml. For my project I would need to be able to change the virtual keyboard layout. But After hours of reading the docs and trying various things I'm still unable to achieve it. My Qt…
StefanR
  • 676
  • 10
  • 20
6
votes
1 answer

Qt VirtualKeyboard enabling and disabling keys

I am writing an application that uses Qt 5.6.3 and QtVirtualKeyboard, and I need to be able to enable/disable its keys. I managed to do it by manually editing the layout files, but I need to do it dynamically, depending on user input. I have…
Kaldrr
  • 2,780
  • 8
  • 11
5
votes
1 answer

Install QtVirtualkeyboard in raspberry-pi?

I am try to implement Qt-Virtualkeyboard in Raspberry- pi, using PyQt5 - Show virtual keyboard but I did'nt find the prefix path for it, bin, plugin etc folder, actually whole Qt folder doesn't exist.
Peon
  • 53
  • 1
  • 6
5
votes
2 answers

PyQt5 - Show virtual keyboard

I'm trying to figure out how to use a virtual keyboard for a touchscreen, using python 3.8 and PyQt5 on Windows. I saw that Qt had his own plugin QtVirtualKeyboard. I pretty much followed what has been done in this link, first installing Qt 5.15…
Thecles
  • 53
  • 1
  • 1
  • 6
5
votes
3 answers

Hide key from Qt Virtual keyboard

Is there a way to hide the language selection key from the virtual keyboard without use a custom layout?
Rui Sebastião
  • 855
  • 1
  • 18
  • 36
5
votes
2 answers

How to use the QtVirtualKeyboard

I try to integrate the QtVirtualKeyboard into a prototype, but I fail. It is the first time I work with multiple projects or where I have to include non-basic-stuff in QML/QMake-Project. I got the code from the git-repository and were successfully…
4
votes
1 answer

How launch Qt Virtual keyboard only for Tablet Mode in Windows

I am making an application for Windows desktops and tablets. I need to launch Qt virtual keyboard in tablet mode. I followed this example in Qt docs I just put one line of code in my main.cpp to get Qt virtual keyboard…
samsix
  • 79
  • 6
4
votes
1 answer

Run QtVirtualKeyboard using QQuickWidget

I am trying to make the QtVirtualKeyboard example work with QQuickWidget instead of QQuickView. For QuickView, I use the following main.cpp code, which works fine for me: #include #include #include int…
pvb
  • 41
  • 3
3
votes
3 answers

How to find the window that contains the QtVirtualKeyboard

I'm using qt widgets on embedded device and have problem with virtual keyboard. Keyboard is shown as fullscreen and overlaps all app. In article Virtual keyboard top black screen in Yocto is described hack how to solve this issue. In short, you need…
Kubikula
  • 33
  • 4
3
votes
2 answers

How to get signal key pressed on QT virtual keyboard and play a sound click track?

in my QT application for embedded device , i want play a sound on key pressed event of the QML virtualkeyboard . Can I get this event? and How get it? I already have a class that play sound ( click effect) when a button was clicked that i use in…
pablodepas87
  • 197
  • 1
  • 16
3
votes
1 answer

qml virtual keyboard: keyboardDesignWidth and Height

I am looking at the QML Style for the virtual keyboard. What is the purpose of keyboardDesignWidth and Height? I seem to have a lot of trouble managing the width and height of the keyboard and can never set it to how I want it. Setting the…
Luca
  • 10,458
  • 24
  • 107
  • 234
2
votes
0 answers

QML VirtualKeyboard is coming on top of Popup

I am using QT5.15.2 and facing an issue displaying the Popup on top of QML Virtual keyboard. I am in process of migrating the application form 5.12.5 to 5.15.2 and found this issue. The same code works as expected in QT5.12.5. main.qml import…
pra7
  • 834
  • 2
  • 21
  • 50
2
votes
1 answer

QtVirtualKeyboard focus problem when editing a cell in a QTableView

I have been battling for the last couple of days to include the QtVirtualKeyboard into my QWidget based app that is running on a Raspberry Pi with a 7" touch screen display. Here's what I've done so far : Installed the plugin : sudo apt-get install…
Simpsons
  • 476
  • 1
  • 7
  • 17
2
votes
2 answers

Cmake: accessing qtvirtual keyboard module

Can anyone do a simple example of including qtvirtualkeyboard module into a cmake file? I want to access the classes but I cannot figure out how to include it.
kpo8
  • 59
  • 1
  • 7
1
2 3 4 5