Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. virtualkeyboard
    Log in to post
    • All categories
    • D

      Unsolved Windows virtual keyboard is not showing when touching QLineEdit
      General and Desktop • touch showinputpanel virtualkeyboard qinputmethod • • Dadi

      4
      0
      Votes
      4
      Posts
      76
      Views

      SGaist

      @Dadi can you provide a minimal compilable example to your bug report ? That will make the debugging of the situation easier.

    • H

      Unsolved Qml Virtual Keyboard shows InputPanel without any keys
      Mobile and Embedded • keyboard virtualkeyboard embedded applic qtquick qml • • HesperZ

      1
      0
      Votes
      1
      Posts
      92
      Views

      No one has replied

    • P

      Unsolved Correct InputMethod for QtQuick.VirtualKeyboard / qtvirtualkeyboard
      QML and Qt Quick • qtvirtualkeyboa virtualkeyboard inputmethod inputcontext inputengine • • Predot

      1
      0
      Votes
      1
      Posts
      192
      Views

      No one has replied

    • Y

      Unsolved Opening QVitualKeyboard automatically when opening a popup window
      General and Desktop • virtualkeyboard c++ • • Yina

      1
      0
      Votes
      1
      Posts
      99
      Views

      No one has replied

    • Y

      Unsolved How to use Qt 6.1.2 QtVirtualKeyboard layout in Qt 6.2.0
      Qt 6 • virtualkeyboard qt 6 • • Yina

      3
      0
      Votes
      3
      Posts
      167
      Views

      Y

      hello,

      the 6.1.2 version :
      6.1.2KeyBoard.PNG

      the 6.2.0 version:
      6.2.0KeyBoard.PNG

      there ain't much difference but the big difference is the close keyboard button which is in the 6.2.0 version under the comma(you need to hold it) which is annoying/confusing for the user.

      Kind regards
      Yina

    • Y

      Solved WindeployQT QTVirtualKeyboard not working after deployment
      Installation and Deployment • virtualkeyboard c++ qt windeployqt • • Yina

      5
      0
      Votes
      5
      Posts
      369
      Views

      Y

      @raven-worx
      Thank you very much for your time, my issue is resolved :-)

      It was indeed the debug build causing the issue, and I am using the correct qlmdir to avoid unnecessary imports.

      Thank you again and have a nice day!

    • D

      Unsolved How to handle back button event when android native virtual keyboard is active?
      Mobile and Embedded • android keyboar textinput textarea virtualkeyboard • • Darknes

      1
      0
      Votes
      1
      Posts
      181
      Views

      No one has replied

    • R

      Unsolved VirtualKeyboard cycling through layouts
      QML and Qt Quick • virtualkeyboard • • Rab1

      1
      0
      Votes
      1
      Posts
      148
      Views

      No one has replied

    • lopeztel

      Solved Android qml imports
      Announcements • android qml macros virtualkeyboard • • lopeztel

      5
      0
      Votes
      5
      Posts
      646
      Views

      lopeztel

      @sierdzio Thanks, this is exactly what I needed! Ended up doing:

      #if defined(Q_OS_ANDROID) const QUrl url(QStringLiteral("qrc:/main_android.qml")); #elif defined (Q_OS_LINUX) const QUrl url(QStringLiteral("qrc:/main_linux.qml")); #endif

      in my main.cpp

    • D

      Solved TextField selection handles issue
      QML and Qt Quick • virtualkeyboard select all textfield dialog columnlayout • • Deedss

      4
      0
      Votes
      4
      Posts
      384
      Views

      D

      Was able to solve it by outcommenting selectionHandle in the custom keyboard style.qml file.

    • RG97

      Unsolved How to implement virtual keyboard with PySide2 and QML
      Mobile and Embedded • qml pyside2 virtualkeyboard python3 qml binding • • RG97

      7
      0
      Votes
      7
      Posts
      1778
      Views

      M

      try to add this to main.py

      import os os.environ["QT_IM_MODULE"] = "qtvirtualkeyboard"
    • R

      Unsolved Does VirtualKeyboard offer any way to have a dark transparent overlay surrounding the TextField that activates the inputPanel?
      QML and Qt Quick • qml virtualkeyboard overlay input panel • • red.green

      2
      0
      Votes
      2
      Posts
      387
      Views

      J.Hilk

      @red.green
      hi, I'm unfamiliar with the virtual keyboard.

      But I have the following idea.

      inside your TextField, you listend to onActiveFocusChanged if that becomes true, that the virtual keyboard should be called forth.

      On you can than listen to the editingFinished signal and force the focus on the parent. to guarantee that the active focus is really gone after editing

      Item{//arbitary parent TextField{ onActiveFocusChanged: if(activeFocus) //do stuff onEditingFinished: parent.forceActiveFocus() } }
    • R

      Solved How is it possible to catch when Key_Cancel pressed from a custom virtual keyboard in qml?
      QML and Qt Quick • qml virtualkeyboard input panel • • red.green

      3
      0
      Votes
      3
      Posts
      922
      Views

      R

      @raven-worx

      Thanks. I'm really new to QML, so didn't know about the Keys option.

    • T

      Unsolved Qtvirtualkeyboard embedded widget jetson does not work
      Mobile and Embedded • virtualkeyboard qwidget jetson • • tyggylpp

      2
      0
      Votes
      2
      Posts
      346
      Views

      P

      @tyggylpp Hello, I got quite similar problem. How did you resolve yours? The qtvirtualkeyboard is functioning but it is invisible, so when I click on widget, letters are typed in the text field but I can not see where the keyboard is.

    • J.Hilk

      Unsolved QQuickwidget does not call the virtual keyboard in ios
      QML and Qt Quick • qquickwidget ios virtualkeyboard • • J.Hilk

      3
      0
      Votes
      3
      Posts
      772
      Views

      J.Hilk

      @raven-worx
      mmh, I'm unsure but I'll look into it.

      However that gave me an idea. The TextInput QML-Item should have it's own c++ class(I'm however unsure what it's called), somewhere with QQuickItem as it's very base class.

      I could look into creating my own myTextInput Item that handles the QInputMethod-Query

    • _

      Solved Android keyboard stays English latin when it should be Hindi
      Mobile and Embedded • android qml qt5.11 virtualkeyboard languagechange • • _.-rFLo_.-

      2
      0
      Votes
      2
      Posts
      643
      Views

      _

      Alright, I found the error:

      In the TextEdit {} I had inputMethodHints: Qt.ImhNoPredictiveText because in earlier tests, sending emojis to TextEdit crashed the app.

      But with PredictiveText disabled, all fancy input methods and hence the different keyboards don't work. Also, Emojis are no problem anymore and animated Gifs are disabled.