PDA

View Full Version : Resize the height of QTabWidgets



tarod
18th July 2008, 07:35
Hello Qt developers!

I've got a QTabWidget in my QWidget form.

How can I change the height of the tab bar?

Thank you in advance.

munna
18th July 2008, 13:37
Re-implement the QTabWidget class and then use
QTabBar * QTabWidget::tabBar () const and
void QTabWidget::setTabBar ( QTabBar * tb ) to change the height of the tab bar.

tarod
21st July 2008, 06:53
How can I re-implement the class? Via inheritance?

Thank you again!

jacek
28th July 2008, 12:48
How can I re-implement the class? Via inheritance?
Yes .