I use a QTabWidget, and set setMovable(True) to set free to move all tabs.
It works well to me, but I hope one more thing.
When tab move here to there, I want to get the SIGNAL the application to know.
currentChanged(int) SIGNAL doesn’t fit to that.
If I reimplement the QTabWidget, what I have to do?
Use the
tabMovedsignal ofQTabBar. You can get theQTabBarused inQTabWidgetwith thetabBar()method.