Hello there,
about two week early I tried to contact your support via mail but unfortunately without response. So I would like to try it here by using forum.
In my existing application where I'm using another Ribbon component I can create following menu:
screencast.com/t/iAKpptcPq3r
and when user select "New", sub-menu is displayed directly in the menu area:
screencast.com/t/q2hgNxtb8zr
but I didn't find any example how to do this using your component. When I tried to add menu object and add child action to this menu using following code:
QMenu* menuTest= popupBar->addMenu(tr("Test..."));
QAction * actTest = menuTest->addAction(QIcon(":/res/save.png"), tr("&Save"));
actTest->setShortcut(tr("Ctrl+S"));
actTest->setToolTip(tr("Save"));
actTest->setStatusTip(tr("Save the active document"));
this sub-menu is displayed like popup-menu and not in the main ribbon menu:
screencast.com/t/lAQEgZyP9V3
Is it possible to create ribbon menu like in the CodeJock component? And if so, could you please point me to any sample?
I'm nearly to finish my product but without that feature I can't release it. I will be grateful for any advice.
Thanks
Ludek