I am not smart
I am not smart

Reputation: 1441

Detachable Tabs in Qt5+

I am looking to make a detachable/re attachable tab, much like how you can in Google Chrome. Does anyone know if this is possible in Qt 5+?

Upvotes: 1

Views: 521

Answers (1)

Iuliu
Iuliu

Reputation: 4091

Up to Qt 5.3 it doesn't support detachable tabs and for this you would need to implement your own widget.

The closest thing you can get from standard Qt Widgets are docked QDockWidgets but I don't recommend it:

enter image description here

Upvotes: 3

Related Questions