QTabBar is a Qt class providing a tab bar.

learn more… | top users | synonyms

0
votes
0answers
11 views

How to setStyleSheet for a tab in QTabBar based on it's name?

I want to setStyleSheet for a specific tab in QTabBar based on it's name. for example in my QTabBar I have a tab with text "Format", and I want to setStyleSheet for this tab, whether it's current or ...
0
votes
0answers
31 views

Qt, QWidget, QTabWidget, QTabBar: How to move the text to the bottom of icon?

By default, the text is always on the right-side of the tab icon... What should I do to move the text to the bottom of it ? And is there an option to do icon/text alignment ?? (I'm designing the ...
1
vote
1answer
74 views

How to display list of opened tabs in Qt 4.8 on Ctrl+Tab

Is there any straightforward (without listening to key events) way to display the list of opened tabs in Qt, like following (in Visual Studio). I just want to make sure Qt does not offer such a ...
0
votes
0answers
124 views

set color of background of a tab of qtabwidget

I have a Qtabwidget with 8 tabs and I want to change the color from tab > 3. but only the color of the background where the title text is dysplayed. I've searched in the QTabBar documentation but ...
6
votes
1answer
181 views

How to insert a space between two tabs in a QTabWidget?

I'd like to insert a space to separate the second tab from the third. Is this possible? I've tried some stylesheets but as this widget is kind of new to me I've had no success so far.
1
vote
0answers
83 views

How do i get rid of this annoying line at the end of the QTabWidget

So i have a fairly simple style sheet to change the look of the tabs in my Qt app (i'm using PySide, but it shouldn't make much, if any, difference); here it is: QWidget{ background: gray; } ...
2
votes
1answer
177 views

How can I set background color/image specific tab at QTabWidget?

After the long visitor status, finally, this is my first post. I create tabs dynamically in my TabWidget(from config). Like; -it is python code, pyqt, answers can be coded c++, dosn’t matter for me ...
2
votes
2answers
312 views

Tab close button position

I want to style my tabs in my Qt app as follows: I used following style sheet: QTabBar{background-color: #fff; border-top: 0px;} QTabBar::tab { border-image: url(:/New_UI/tab_inactive.png) 7 ...
1
vote
1answer
157 views

Qt: hiding bottom line in QTabBar

It seems like no possible to set stylesheet for bottom line QTabBar. I need remove bottom line: Please, help!
0
votes
1answer
135 views

Change cursor of selected tab in a QTabWidget

I wonder if it's possible to change the cursor of the selected tab of a QTabWidget. I mean : I would like to have an arrow for the selected tab and the "hand" for the others. I was able to set the ...
0
votes
1answer
104 views

How to Reduce the Memory when a Tab is closed

I'm new in this Qt programming. I am just trying to do a Browser application. In that i use a tab widget and a Webview for loading the url's. When am having more number of new tabs my memory keeps on ...
0
votes
1answer
348 views

Qt: hiding border for selected tab in QTabBar

QTabBar has a 1px border that separates tabs from their content. QTabWidget::pane { border:1px solid #C4C4C3; } I want the border to disappear under selected tab, like it's done in all browsers and ...
1
vote
1answer
179 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, ...
0
votes
1answer
307 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. ...
1
vote
1answer
931 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, ...
0
votes
2answers
280 views

How to make all tabs in QTabBar not been selected?

How to make all tabs in QTabBar not been selected? Thank you.
1
vote
1answer
260 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
582 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 ...
1
vote
3answers
537 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
251 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
502 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. ...
3
votes
1answer
1k 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 ...
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
1k 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 ...
7
votes
1answer
2k views

QTabBar vs QTabWidget

I am using QTabWidget in my project. Is there any stron reason I should use QTabBar and not QTabWidget? What advantages I have if I use QTabWidget?
8
votes
2answers
4k 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 ...