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
0
votes
0 answers

qt virtual keyboard disable on certain TextInputs

here is example code TextField { id:needKeyboard } TextField { id:dontNeedKeyboard } if i focus to every above TextFields virtual keyboard will shown to me I want to disable qt virtual keyboard popup on certain TextField or TextInput, how is it…
Mohsen Zahraee
  • 3,309
  • 5
  • 31
  • 45
0
votes
1 answer

Qt plugin options for configuring

I am trying to build qtvirtualkeyboard plugin following this instructions with arrow-key-navigation option enabled. But I don't understand how to enable it in the right way. I have tried to add CONFIG += arrow-key-navigation into…
ephemerr
  • 1,833
  • 19
  • 22
0
votes
1 answer

Application Window and Dialog Issue in QML

I am not able to click on the VirtualKeyboard if the TextField is in the dialog and Application Window is the base class. Following is the code: import QtQuick 2.6 import QtQuick.Window 2.2 import QtQuick.Controls 2.2 import QtQuick.VirtualKeyboard…
pra7
  • 834
  • 2
  • 21
  • 50
0
votes
0 answers

Qt Virtual Keyboard orientation

I am trying to use the Qt Virtual keyboard in my application and one of the things that would be nice to have is to have the keyboard come from the right side of the screen and not basically align itself to use the full available width but say half…
Luca
  • 10,458
  • 24
  • 107
  • 234
0
votes
1 answer

qt virtual keyboard does not show up

I am trying to use the qt virtual keyboard on a raspberry pi and am having issues summoning the keyboard. I have configured the project as follows to allow for the use of virtual keyboard: //In the PRO file QT += qml quick quickcontrols2 xml static…
Pankaj Daga
  • 741
  • 5
  • 16
0
votes
1 answer

Qt VirtualKeyboard InputMethod connection to OS

Qt 5 has strong and complex mechanism to manipulate Virtual Keyboard (Input Method, Input Engine, Input Context) But it works only with Qt applications. How can i connect QtVirtualKeyboard with OS (e.g. Windows 10), to correct working Hunspell in…
Nikxp
  • 355
  • 3
  • 13
0
votes
1 answer

QtVirtualKeyboard - Change layout not working

Following the QT-API I got to make the custom style working putting it inside the correct folder and make the required modification from here. Now I have tried to use my own custom LAYOUT making the following modifications: I took the en_GB folder…
yurisnm
  • 1,630
  • 13
  • 29
0
votes
1 answer

QObject::findChildren() for QML object finding

I have an QML form with QQuickApplicationWindow. I need to get QQuickItem pointers on BaseKey elements of QtVirtualKeyboard (it's implementation is placed in separate QML file and loads with Loader of layout when program executes), but it has…
Nikxp
  • 355
  • 3
  • 13
0
votes
1 answer

How to / What to Query to get value of current QtVirtualKeyboard Input Method

Can anyone tell me what property I can check to determine the active input method (i.e. handwriting, keyboard, etc.)? Basically, I'm looking to have some logic like: if (inputMethod === "handwriting") { //do this } else { //do that } or if…
Matt Rose
  • 526
  • 2
  • 6
  • 14
0
votes
1 answer

QT5.8. custom Virtual keyboard including

I'm writing a custom virtual keyboard, which based on QtVirtualKeyboard. For my project I would need to be able to use my version of keyboard. But the only method, which i found is recompile project and replace original "qtvirtualkeyboardplugin.dll"…
Nikxp
  • 355
  • 3
  • 13
0
votes
1 answer

Virtual Keyboard qt how to put it in azerty

I want to change the VirtualKeyboard to [azerty]. I tried to put VirtualKeyboardSettings.locale = "fr_FR" but it doesn't work. I also tried to put CONFIG += lang-fr_FR in the .pro file like it says in the Qt documentation but still doesn't work.
0
votes
0 answers

Packaging the Qt 5.7 Virtual keyboard example on Surface Pro tablet

I have run the Qt Virtual Keyboard example successfully with Qt 5.7 in Qt Creator on Windows 10 desktop, but if I try to run the same exe on Windows Surface Pro (running on Windows 10) by including all necessary dlls and plugins, I am just getting…
user3807950
  • 75
  • 1
  • 9
1 2 3 4
5