Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Qt creator application not fitting to the windows tablet screen

Qt creator application not fitting to the windows tablet screen

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 229 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Q Offline
    Q Offline
    qt121
    wrote on last edited by
    #1

    Hi,

    I am trying to run a qt application which was pre-designed and used the code to modify the application based on my desktop and tablet settings, however it's not running. Can anyone tell me the solution?

    ? 1 Reply Last reply
    0
    • Q qt121

      Hi,

      I am trying to run a qt application which was pre-designed and used the code to modify the application based on my desktop and tablet settings, however it's not running. Can anyone tell me the solution?

      ? Offline
      ? Offline
      A Former User
      wrote on last edited by
      #2

      @qt121 Hi could you please be a little more explicit about the problem ? What do you mean by "based on my desktop and tablet settings" ? What do you mean that it is "not fitting to the windows tablet screen" ? Do you mean you want fullscreen ?

      first : QtQuick or QtWidget ?

      assuming this is what you want

      • QtWidget : do window->showMaximized() ;
      • QtQuick with window instanciated on C++ side with QQuickWindow : exactly as in QtWidget case
      • QtQuick with window instanciated on QML side (only QQmlEngine on C++ side) :
      Window
      {
          id: mainWindow
          // other stuff
      
         Component.onCompleted: showMaximized()
      }
      

      showFullScreen is also available in all cases

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved