Multilevel QTabWidget
Solved
General and Desktop
-
You can put a tab widget inside the other tab widget, this way when switching tabs you'd get a different tab widget for each page. Another way you can do that is to have a
QStackWidget
for "Tab level 1" and change the page when a button from level 2 is clicked. And then have another stack widget for the tab area which would be controlled by the tab level 1 buttons. This is much more involved however and you'd need to manually manage the pages for the stack widgets.