Details
-
Suggestion
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
None
-
qt gui on all platforms
Description
QMdiArea should expose tabbar widget in order to provide more control over the tabbar in tabbed view mode
the implementation may be as simple as
QMdiArea.cpp
QTabBar *QMdiArea::tabBar()
{ return d_func()->tabBar; }
furthermore it would be nice to have a kind of 'resetSystemMenu()' member function in the QMdiSubWindow public interface
an implementation can be like this:
QMdiSubWindow.cpp
void QMdiSubWindow::resetSystemMenu()
{
Q_D(QMdiSubWindow);
if (d->systemMenu) delete d->systemMenu;
d->createSystemMenu();
}