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
1
vote
0 answers

QML application virtual keyboard behind fullscreen application

I want to use Qt virtual keyboard in my QML application. I use Qt 5.9.4 and I am on Windows 7. I tried the Qt example called "basic", it works in "windowed" mode, but when I put the application window in full screen with view.showFullScreen(); //…
SteveTJS
  • 635
  • 17
  • 32
1
vote
0 answers

Qt Virtual Keyboard Bug in Lubuntu

I'm trying to active a Qt Virtual Keyboard whenever user touch a any textinput. I Can call Qt Virtual Keyboard like this command : os.environ["QT_IM_MODULE"] = "qtvirtualkeyboard" In Ubuntu and Xubuntu Virtual Keyboard works fine.Here is the…
1
vote
1 answer

Showing Qt Virtual Keyboard in the same window as the application

Here is my question, I want to use qtvirtual keyboard for a touch screen app. When I call it, it pops up on a different window. How do I get the keyboard to pop up on the same window? If I have tried using QQuick view and QqmlApplicationEngine (the…
kpo8
  • 59
  • 1
  • 7
1
vote
1 answer

How to use arrows to navigate through a QtVirtualKeyboard

I want to control the QtVirtualKeyboard with keypresses on a system keyboard, which is an embedded system with limited keys, for example only arrows. The problem is everything I have tried and I have seen suggested doesn't seem to work. I have seen…
Petar Petrov
  • 702
  • 5
  • 14
1
vote
1 answer

Remove "British-English" in Virtual Keyboard QML

How to remove "British-English" which is in the spacebar? Please refer below image. [Update 1]: Following is the code that i am using for input panel: InputPanel { id: inputPanel parent:mainWindow.contentItem z: 1000002 …
pra7
  • 834
  • 2
  • 21
  • 50
1
vote
1 answer

smiley face key in Qt Virtual Keyboard

I am using Qt VirtualKeyboard on a raspberry pi and it is working fine for most part but when the keyboard appears, it is shown as: Now there is this smiley face key on the bottom right and I am not sure what I need to do to get rid of it. I copied…
Luca
  • 10,458
  • 24
  • 107
  • 234
1
vote
2 answers

QML Virtual Keyboard Add New Layout

I use qt qml 5.7 on Yocto project for raspberry pi. My project need virtual keyboard for Turkish language. QT Virtual Keyboard has no support Turkish language so i want to create my custom layout. I add my project example layout codes from here as…
test gprs
  • 169
  • 3
  • 16
1
vote
1 answer

qml virtual keyboard digits only

I am looking at the basic QML example for the virtual keyboard with the Qt 5.9 installation. A textfield which only takes digits can be instantiated as follows: TextField { id: digitsField width: parent.width previewText: "Digits only…
Luca
  • 10,458
  • 24
  • 107
  • 234
1
vote
2 answers

PyQt5 virtual keyboard (TypeError: missing 1 required positional argument)

I am trying to write a code for virtual keyboard in PyQt5 . Here is my code. from PyQt5.QtCore import * from PyQt5.QtWidgets import * class InputState: LOWER = 0 CAPITAL = 1 class KeyButton(QPushButton): sigKeyButtonClicked =…
1
vote
1 answer

Resize qtvirtualkeyboard according to QObject

I'm using the qml qtvirtual keyboard: https://github.com/qt/qtvirtualkeyboard I'm trying to "connect" it with the rest of my Qt app which is based on widgets. For example, when I click on a QLineEdit, I want the keyboard to show up and to act like a…
aida_m
  • 47
  • 1
  • 3
1
vote
3 answers

Show VirtualKeyboard in Dialog

I am using qtvirtualkeyboard module with qml. I use the following qml code to show the virtual keyboard. import QtQuick 2.5 import QtQuick.VirtualKeyboard 2.1 InputPanel { id: inputPanel y: Qt.inputMethod.visible ?…
test gprs
  • 169
  • 3
  • 16
0
votes
0 answers

Is it possible to make the InputPanel a WebEngineView element?

Is it possible to substitute the InputPanel (qt virtual keyboard) element with a WebEngineView? So that it still opens when input is requested but is a webview element. Changing the InputPanel to WebEngineView results in the virtual keyboard showing…
aberst
  • 47
  • 5
0
votes
0 answers

Is there a way to know when Linux needs keyboard input/an app is requesting it?

Is it possible to know when linux/an app on linux (pyqt - qwebengine) needs keyboard input? I am trying to build a kiosk web browser type app, which obviously needs keyboard input at some point. While the website/html document I control can send a…
aberst
  • 47
  • 5
0
votes
2 answers

How to fix VirtualKeyboard not found in Qt Creator QML?

I am developing a project using Qt QML and C++. I want to use Qt Virtual Keyboard in it. I installed the Component and imported it. My Qt configuration: Qt 6.4.2 Qt Creator 9.0.2 Cmake 4.3 Firstly, I had some problems in the CMakeList.txt file but…
Raghav
  • 33
  • 1
  • 8
0
votes
0 answers

How to switch language in qt virtual keyboard in my application qml page?

I have a Qt app on ARM board and because of touch I/O I should use the virtual keyboard. I have had config it and set English and Persian languages. Now I have a problem, I want to use just English for integer value, I can show the numbers in…
H.Ghassami
  • 1,012
  • 2
  • 21
  • 42