Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
861 views

Change background of indexed QTabBar tabs using stylesheets

Using Qt stylesheets, is it possible to set a different background colour for each tab in a QTabBar that has 4 or more tabs? My Qt application has 6 tabs underneath the menu bar. I'd like to change ...
3
votes
2answers
2k views

Qt Increase QTabWidget's QTabBar size

I need to make the tabs that I have oriented at the bottom of my QTabWidget larger. We'll be using a touch-screen, so the default sizes are a little too small. I see no easy way to do this (currently ...
1
vote
1answer
24 views

Truncated tab bar in Qt

On this site there is a picture with two "tab-systems". I would like to have the second one, which is described as "A truncated tab bar shown in the Plastique widget style." There you have arrows, ...
1
vote
1answer
260 views

QTabWidget tabPosition when using stylesheets

I'm currently using stylesheets to theme an application. Here is the stylesheet I use for QTabWidget: /*QTabBar et QTabWidget*/ QTabBar::tab { background: qlineargradient(spread:pad, x1:0.5, ...
1
vote
1answer
2k views

Qt, making UI that shrinks and expands

I'm trying to learn how to create the layout of my Qt Symbian application so that it will expand/shrink and fit into the screen size of different devices. In my default ui I have added a QTabWidget ...
1
vote
2answers
806 views

QStackedWidget inside QTabWidget tab?

In my QT application I use a QTabWidget for the base navigation. This QTabWidget I setup in the ui. In some of the tabs of the QTabWidget I need to have QStackedWidget to be able to "drill down in the ...
0
votes
0answers
26 views

Order QTabBar in two rows

Is there a possibility to order the tabs in a QTabBar in two rows? I can't find anything in the API or examples which helps me.
0
votes
0answers
77 views

QT QTabBar. Move close button to right corner QTabBar West possition. Paint event

Professionals! I have an issue while using QTabBar. Let's look at picture. Here is code. class TestTabBar : public QTabBar { public: explicit TestTabBar(QWidget* parent=0) : ...
0
votes
1answer
73 views

QT: Position tabs within QTabBar block

There is a QTabBar element with a vertical size policy which is expanding. I want to make the tabs to be aligned to the bottom of the QTabBar element box, but they are always appearing from the top. ...
0
votes
1answer
74 views

QtabBar text and icon

hi i would like to place icon and an text below the icon in each tab of an tabbar in QtabBar widget. by default the text and icon are set next to each other i would like to display one below the other ...
0
votes
1answer
327 views

With PyQt4, why does setting a tabwidget tabbar icon widget to a label with an animated QMovie sometimes cause the animation to pause? [With Testcase]

I have a QMainWindow with a QTabWidget. From the QTabWidget, you can get a QTabBar and the set the QTabBar's TabButton as per http://doc.qt.nokia.com/4.7/qtabbar.html#setTabButton So, I'd like to do ...
0
votes
3answers
166 views

Different close buttons on tabs

I am using QTabWidget, and I would like to know if I can use different icons for close buttons on tabs? I think style and setCornerWidget may not work for this case. Thanks!
0
votes
1answer
159 views

Setup QTabBar position

If I use QTabWidget i can call setTabPosition to change it to "South" and have tabs appear at the bottom. Is there a similar behavior for QTabBar? Currently on Mac the top left and right corners are ...
0
votes
2answers
308 views

Using PyQt and Qt4, is this the proper way to get a throbber in a QTabWidget tab?

I have some code creating a QTabWidget from Python using PyQt4. I want to get a 'throbber' animated gif in the tab. The /only way/ I have found how to do this is the following convoluted method. ...
-1
votes
2answers
103 views

How to make all tabs in QTabBar not been selected?

How to make all tabs in QTabBar not been selected? Thank you.