How to make "west" tabs horizontal?
Hello Hello ;)
If one is making a window with 2 tabs, it is possible to put tabs at "west" like this:
tabWidget->setTabPosition(QTabWidget::West);
tabWidget->addTab(PressTab, tr("Pressure"));
tabWidget->addTab(TempTab, tr("Temperature"));
The tabs are parallel to the left side of window. I don't like it.
Question: Does it possible to make tabs and text in there horizontal
and still keep them at "west"?
Thank you
Re: How to make "west" tabs horizontal?
No. You'd have to reimplement the style and do the drawing yourself.
Re: How to make "west" tabs horizontal?
Quote:
Originally Posted by
wysota
No. You'd have to reimplement the style and do the drawing yourself.
OK, thanks a lot, Wysota.
:crying: