i have a QMainWindow object that has tab view inside it.
each tab in the tab view contains its dockable tool bars.
is it possible make a new QMainWindow and add it to the tab view ?
i mean each view is a QMainWindow ?![]()
i have a QMainWindow object that has tab view inside it.
each tab in the tab view contains its dockable tool bars.
is it possible make a new QMainWindow and add it to the tab view ?
i mean each view is a QMainWindow ?![]()
yes... qmainwindow is a qwidget... so it can be done..
tabwidget->addWidget(mainwindow);
Bookmarks