I have a QMainWindow to which I need to add a vertical toolbar. The problem is that if I use QMainWindow::AddToolbar(Qt::BottomToolBarArea, toolbar) it will ignore QToolbar::SetOrientation(Qt::Vertical).
Is there a way to force the orientation or add it to a different place at the bottom of the QMainWindow so that it's still below all the side panel Widgets?
I tried adding it to my QStatusBar, but couldn't get it to work without messing up the layout of the status bar, which I need to remain intact.