Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-18715

qt_s60_setPartialScreenInputMode function should also update inputcontext hints when mode changes.

    XMLWordPrintable

Details

    • 8a37a69c961092aae7dd7f55f30a15b3fae1b7cc

    Description

       
      int main(int argc, char **argv)
      {
          QApplication app(argc, argv);
      
          Q_DECL_IMPORT void qt_s60_setPartialScreenInputMode(bool enable);
          qt_s60_setPartialScreenInputMode(true);
      
          QDeclarativeView view;
          view.setSource(QUrl::fromLocalFile("myqml.qml"));
          view.show();
          return app.exec();
      }
      

      works as expected

       
      int main(int argc, char **argv)
      {
          QApplication app(argc, argv);
          QDeclarativeView view;
          view.setSource(QUrl::fromLocalFile("myqml.qml"));
          view.show();
      
          Q_DECL_IMPORT void qt_s60_setPartialScreenInputMode(bool enable);
          qt_s60_setPartialScreenInputMode(true);
      
          return app.exec();
      }
      

      Expected result: partial screen VKB used by inputcontext.
      Actual result: Full screen VKB used by inputcontext.

      Inputcontext is created before partial screen flag set.

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            samimeri Sami Merila (Inactive)
            samuelnevala Samuel Nevala
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes