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. How can i get QAction from QMenu throught index
Forum Updated to NodeBB v4.3 + New Features

How can i get QAction from QMenu throught index

Scheduled Pinned Locked Moved General and Desktop
3 Posts 3 Posters 14.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.
  • R Offline
    R Offline
    Ruzik
    wrote on last edited by
    #1

    Hellow, how can i get QAction from QMenu throught index, dont QPoint
    Advance, many thanks fot your help

    1 Reply Last reply
    0
    • F Offline
      F Offline
      Franzk
      wrote on last edited by
      #2

      @QMenu *menu;
      //...
      menu->actions().at(index);
      @

      "Horse sense is the thing a horse has which keeps it from betting on people." -- W.C. Fields

      http://www.catb.org/~esr/faqs/smart-questions.html

      1 Reply Last reply
      0
      • R Offline
        R Offline
        rokemoon
        wrote on last edited by
        #3

        Hi, Ruzik.
        Try "this":http://doc.qt.nokia.com/4.7/qwidget.html#actions
        @QList<QAction*> actionList = yourMenu->actions()
        if (!actionList.empty()) {
        QAction *action = actionList.at(index);
        //bla bla
        }
        @
        Update: Franzk is faster :-)

        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