I have played around with the QMainWindow example from Qt. I was able to customize it to my needs. But now I am facing some problems, especially concerning the saveLayout/loadLayout functionality.
I have a method named "autoSetupDockWidgets" which is called from the "setupDockWidgets" method (which is available in the example), I made it empty for the moment. In this method I have several lines like:
QDockWidget* DockWidget_instance;
DockWidget_instance = new QDockWidget;
Ui::FoobarClass FoobarClass_instance;
FoobarClass_instance.setupUi(DockWidget_instance);
m_widgetInstancesMap.insert("CategoryA", DockWidget_instance);
DockWidget_instance = new QDockWidget;
Ui::JustAnotherFoobarClass JustAnotherFoobarClass_instance;
JustAnotherFoobarClass_instance.setupUi(DockWidget_instance);
m_widgetInstancesMap.insert("CategoryA", DockWidget_instance);
DockWidget_instance = new QDockWidget;
Ui::WeLikeThisAndSoHaveSomeMore WeLikeThisAndSoHaveSomeMore_instance;
WeLikeThisAndSoHaveSomeMore_instance.setupUi(DockWidget_instance);
m_widgetInstancesMap.insert("CategoryB", DockWidget_instance);
/* ... */
Probably I should mention what m_widgetInstancesMap looks like:
QMultiMap<QString, QDockWidget*> m_widgetInstancesMap;
The thing is: I do not always want to display all QDockWidgets, but I want to have several views/perspectives/layouts where only specific QDockWidgets are visible. This is why I use the QMultiMap here with the QString containing a name for each view/perspective/layout (in my example "CategoryA", "CategoryB" and so on.
I automatically add some menu entries for each of these views/perspectives/layouts:
QString key;
foreach( key, m_widgetInstancesMap.uniqueKeys() ) // not: .keys() !
{
QAction *action = m_pSubaddressMenu->addAction( key );
connect(m_pSubaddressMenu, SIGNAL(triggered(QAction*)), this, SLOT(showCategory(QAction*)));
}
This works perfectly good so far. The showCategory method looks something like this:
hideAllDockWidgets();
// find out who has activated the action and what to do!
//QWidget *sender = (QWidget*)sender();
QString key = action->text();
// show those with the category expected
QList<QDockWidget*> values = m_widgetInstancesMap.values( key );
for( /* special iteration over the list is here */ )
{
addDockWidget( Qt::LeftDockWidgetArea, values.at(i) );
values.at(i)->show(); // else they might not show up, because they are hidden!
}
This still works so far, hooray! By the way my hideAllDockWidgets method iterates again over all the QDockWidgets and calls
removeDockWidget( values.at(i) );
I also tried to do:
values.at(i)->hide();
It still works. But maybe I am missing something here. Because when I now call save layout, exit the program and try to restore the layout this unfortunately does not work. Only after I have shown this category once. Am I missing something here? The layout file is only containg data for the at save time visible dock widgets, which is quite ok, if they could also be restored (made visible)!
Thanks for your help! Matthias
PS: Btw it should also be possible to save/restore mixed views of categories (i.e. some dockwidgets of "CategoryA" and some of "CategoryB".