Ok, let's say you have a QMenuBar. If you look at this documentation, then you will see that you can easily add more menus to this menubar. One of this menu will have "Apps" item in it (after you add it).
Hint: You can add this item with the following QMenuBar's (or QMenu's) method:
QAction * addAction ( const QString & text, const QObject * receiver, const char * member );
To copy to clipboard, switch view to plain text mode
when you use it for your "Apps" item you actually say "when the item with that says <text>(in your case Apps) is pressed, i want to execute <member> method, and my the way, <receiver> has this method".
The next thing you do is implement this method which in fact does the following:
1. Create QDialog. (or it may be already been created, it depends on your design).
2. Show this dialog.
Bookmarks