Qt 6.11 is out! See what's new in the release
blog
Widgets like Issues/Ouputs panels of QtCreators
-
I would like to use a resizable, tabbed widgets like the ones you can find in the bottom part of QtCreator:

I tried to inspect the source code, but it's far more complex than I can figure out.
Furthermore they don't resemble any other widget I can find in the Form Editor.Guessing in the wild I would say:
- add some checkable QPushButton in a QStatusBar
- add a QStackedWidget inside a QDockWidget
- populate each page of the QStackedWidget as desired
- handle the switching of the pages manually
However I wonder if there is something better than my idea.
-
Hi,
You can throw a QTabBar in the mix for the switch between your widget or depending on your needs a QTabWidget.
I don't think there's any status bar there. Rather a small custom one line widget.