Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Can you open Qt/QML app not in fullscreen so that topbar and toolbar isn't there?
Qt 6.11 is out! See what's new in the release blog

Can you open Qt/QML app not in fullscreen so that topbar and toolbar isn't there?

Scheduled Pinned Locked Moved QML and Qt Quick
4 Posts 2 Posters 3.2k Views 1 Watching
  • 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.
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #1

    If I just want to open my app top of everything like 10x10 rectangle midle of screen, so that I can see dashboard, is that possible. I can do that with view.show(); but then I get the default top status bar and bottom toolbar.

    1 Reply Last reply
    0
    • D Offline
      D Offline
      dridk
      wrote on last edited by
      #2

      @void MyWindow::myShow()
      {
      show();
      statusBar()->hide();
      toolbar()->hide();
      resize(QApplication::desktop()->width(),QApplication::desktop()->height());

      }@

      Then call myShow.. ??
      Was it your question ?

      Nothing in Biology Makes Sense Except in the Light of Evolution

      1 Reply Last reply
      0
      • ? Offline
        ? Offline
        A Former User
        wrote on last edited by
        #3

        What are those statusbar() and toolbar(), I don't find those?

        1 Reply Last reply
        0
        • D Offline
          D Offline
          dridk
          wrote on last edited by
          #4

          http://qt-project.org/doc/qt-4.8/qmainwindow.html#statusBar

          Nothing in Biology Makes Sense Except in the Light of Evolution

          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