I'm working in my thesis project, I need to know if it's possible to "open" automatically a menu item in my QMainWindow. I mean, if my menu bar is:

    File        Help
       -Open      -About...
       -Close     -Manual
       ...        ...

How can I open the menu item and show the submenus without clicking them? Is there something like:

ui->menubar->items[0].show();

To open the "File" menu.

Thanks in advance, I really appreciate your help.

EDIT: I found how to do in this thread

Thanks

link|improve this question

38% accept rate
feedback

1 Answer

QMenu popup() should do the trick.

For more info:

http://developer.qt.nokia.com/doc/qt-4.8/qmenu.html#popup

link|improve this answer
Thanks, but popup requires a Qpoint where the menu item is. – Herman Feb 21 at 18:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.