Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Onscreen Keyboard in Qt 5

I want to create a onscreen keyboard for a desktop application. The application will be built in Qt 5. I have couple of questions, please clarify them.

  1. What is the replacement of QInputContext in Qt5? (Because I read somewhere about onscreen keybord by implementing QInputContext but this is not supported by Qt 5.)

  2. Where can I find QPlatformInputContext and QInputPanel (on an internet search I found these two as alternatives of QInputContext but not sure about that and also I was unable to find them)?

My requirements:

  1. Keyboard will not use QML or any external library (already build other keyboards).

  2. Keyboard will use Qt Gui (traditional).

like image 627
Jai Avatar asked Sep 24 '13 10:09

Jai


2 Answers

I understand there are two challenges you would have:

  1. Getting notified as to when to show/hide the on-screen keyboard, based on the focus being on text widgets
  2. How to post key-press event to the text widgets

ANSWER

  1. As for the former, you could use QObject::InstallEventFilter() on widgets that you want to provide the keyboard service to. You can then look for the mouseReleaseEvent along the lines of the Qt code in the link.
  2. This can be achieved by using QCoreApplication::postEvent()

As for QPlatformInputContext, get the example of a Qt Virtual Keyboard here.

like image 112
user1055604 Avatar answered Sep 19 '22 11:09

user1055604


I took me quite a while to find out how to do this in QT5 without qml and too much work. So thought I'd share:

#include <QCoreApplication>
#include <QGuiApplication>
#include <QKeyEvent>

void MainWindow::on_pushButton_clicked()
{
   Qt::Key key = Qt::Key_1;;

   QKeyEvent pressEvent = QKeyEvent(QEvent::KeyPress, key, Qt::NoModifier, QKeySequence(key).toString());
   QKeyEvent releaseEvent = QKeyEvent(QEvent::KeyRelease, key, Qt::NoModifier);
   QCoreApplication::sendEvent(QGuiApplication::focusObject(), &pressEvent);
   QCoreApplication::sendEvent(QGuiApplication::focusObject(), &releaseEvent);
}

The clue here is that by clicking buttons (if you would manually make your keyboard), launches a sendevent to the current object thas has focus (for example a textbox). You could of course hardcode a textbox, but that only works if you have only a single input to use your keyboard for.

The last thing you have to make sure, is to set the focusPolicy of your keyboard buttons to NoFocus, to prevent focus from shifting when the keyboard is pressed.

Credits go to https://www.wisol.ch/w/articles/2015-07-26-virtual-keyboard-qt/

Hope this helps someone.

like image 33
Arnout Avatar answered Sep 19 '22 11:09

Arnout