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. Qt Menus
Qt 6.11 is out! See what's new in the release blog

Qt Menus

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 1.4k 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.
  • J Offline
    J Offline
    javiyt
    wrote on last edited by
    #1

    Hi, I have a couple of questions about the menus in Qt

    Everytime I try to make a new Options menu the action "Show open apps." is include by default. Is there any way to remove it?

    The code is this

    @
    QmlApplicationViewer viewer;

    QMenu* m_menu;
    m_menu = new QMenu();
    m_menu->addAction("Exit", &app, SLOT(quit()));

    QAction *optionsAction = new QAction("Options", &viewer);
    optionsAction->setSoftKeyRole(QAction::PositiveSoftKey);
    optionsAction->setMenu(m_menu);
    viewer.addAction(optionsAction);
    @

    The second question is about the action "exit". Is there any way to hide instead of exit? I saw some applications (like ovi contacts) do it to keep running the application in background. I tried with viewer.hide and viewer.showMinimized but it doesn't work.

    Thanks in advance!

    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