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.
What is the replacement of
QInputContext
in Qt5? (Because I read somewhere about onscreen keybord by implementingQInputContext
but this is not supported by Qt 5.)Where can I find
QPlatformInputContext
andQInputPanel
(on an internet search I found these two as alternatives ofQInputContext
but not sure about that and also I was unable to find them)?
My requirements:
Keyboard will not use QML or any external library (already build other keyboards).
Keyboard will use Qt Gui (traditional).