Tagged Questions
0
votes
2answers
24 views
How can I set a border color when I set border-image in a QToolButton?
I am trying to create a QToolButton with a resized image, a background color and a border. I have successfully gotten the image (using border-image) and background color to appear correctly. ...
0
votes
2answers
32 views
Fit background-image to content in Qt
Is there any way to define a fit-to-content background-image in stylesheet?
Such as if the host widget is 40x40 and the images is 100x100 it will not be clipped but rather scaled to fit the 40x40 ...
1
vote
1answer
78 views
PyQt styling with css classes fails
I'm working on a GUI in which i have to display some ToolButtons.
I'm using an external CSS file to style them.
To make it easy i defined a CSS class (with setProperty) and i'm using in the CSS file ...
0
votes
0answers
146 views
How to set Qt pushbutton like this
I try to write a simple Player with Qt.
I try to set Play button look like this
Use stylesheet or use a QPixmap like a button.
My code is
playCtrl = new QPushButton(this);
...
0
votes
0answers
71 views
Change size columns custom QTreeView doesn´t work
I want to have a QTreeView with two columns. The first contains the normal elements with the branches. It works. The other has just a button for delete (or whatever action) at the rightmost position ...
0
votes
0answers
26 views
Can't get actual size from qss stylized QWidgets
I can´t get the real size of the widgets that i stylized with a StyleSheet in QT 4.7 after adding the contents.
For example, i want to get the size so I set an offset to the widget when shown so it ...
0
votes
0answers
117 views
css properties in a pushbutton are not overridden in :checked ? (Qt qss)
I use this in Qt 4.
The code for both:
QPushButton#groupBoxTitleExpand
{
min-height: 25px;
max-height: 25px;
border-style: solid;
border-width: 0px 17px 0px 3px;
border-image: ...
0
votes
0answers
54 views
How could you make a widget float up the border over its parent? (Qt)
It´s a custom QGroupBox.
It has a button on the top, and then a frame under it with the rest of the contents. The button makes the contents hide.
I wan´t to do this (they float over the top. But the ...
0
votes
0answers
55 views
QGroupBox title styles won't work on Mac
Is there any kind of problem stylizing with a QSS sheet a title of a QGroupBox?
I used this style:
QGroupBox#parametersContainer::title
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, ...
2
votes
2answers
402 views
Is the Qt 5 dark Fusion theme available for Windows?
After some research I found out, that Qt 5 now offers a so called Fusion theme which is desribed in one of their blog posts. I really like the theme with the black color configuration you can see in ...
2
votes
1answer
96 views
Is it possible to specify more than just “regular” and “bold” versions of a font in a Qt Stylesheet?
I have a font that has several font weights within one family (extra light, light, regular, semibold, bold, black). For this example, I'm using the free Google Webfont Source Sans Pro, but I've had ...
2
votes
0answers
58 views
Styling checked item in QTreeView
How can I style checked item in QTreeView. I Have this code:
QTreeView::indicator:checked, QTableView::indicator:checked
{
image: none;
}
QTreeView::item:checked, QTableView::item:checked
{
...
2
votes
1answer
200 views
How to highlight a string of text within a QTextEdit
I'm a student programmer currently developing an application for work using Qt4. I am building an equation editor and I'm having issues attempting to highlight a string within my QTextEdit field. I ...
0
votes
0answers
61 views
Accessing and adapting stylesheet within QStyledItemDelegate
Is it possible to access stylesheet data from a QStyledItemDelegate overwritten functions? And then possibly change them?
Setting style in CSS is fine but some things are hard to express or not ...
0
votes
0answers
149 views
Styling Qt Model/View items based on their ItemDataRole properties
I have a QTreeView with items from my own model (QAbstractItemModel derived). Now I would like to style the items (with a stylesheet on the QTreeView) so that depending on various properties they ...
0
votes
3answers
220 views
QT Stylesheet for HLine/VLine color
I'm pretty new to this QT thing and it's whole stylesheet system. My background of HTML/CSS helps a little to understand the system, but a lot of things just happens for no apparent reason....or don't ...
-1
votes
1answer
56 views
control the border of the frame and its components
I have a frame in qt qith some components in it. When I change the stylesheet the components in it also change, but i don't want this, as i'm changing only the border of the frame.
border-width: 1px; ...
0
votes
1answer
133 views
Setting padding and margin to 0 doesn´t work
It´s just a container and i want to put widgets inside and hide them and show them. I don´t want it to have any margins or paddings, and it will be invisible (no border, no background)
I set the ...
3
votes
1answer
252 views
How to remove the arrow from a QCombobox popup?
I have a QComboBox that shows a selection arrow by default on the left when clicked - snapshot attached below.
My stylesheet is as below
#define PROFILE_PAGE_COMBOBOX_CSS_ACTIVE " \
QComboBox ...
1
vote
2answers
123 views
QPushButton with an alpha level of 0% turns solid when moused over. How to fix Qt with C++ (with stylesheets?)
I have designed two different kinds of QPushButtons in Qt Designer. One is the default, the other I want to be clear.
In QT Designer I set the latter's initial style sheet like such:
...
0
votes
1answer
144 views
Customise QPushButton with an image
I am using Qt5 and having some problems in setting the back ground image of a QPushButton. I am using Qt Creator and Design to drag and drop the QPushButton. After that I created a source folder and ...
1
vote
2answers
191 views
Make QGroupBox::title expand
Using a stylesheet I manage to set the background for the title element as shown in the image above (1.) using:
QGroupBox::title
{
background-color: rgb(255, 255, 0);
subcontrol-origin: ...
0
votes
2answers
370 views
qt stylesheets with qtreeview::item only applies to child items?
I want to style the items of a QTreeView, namely increase their top/bottom padding a bit.
This is my snippet:
QTreeView::item
{
padding-top: 8px;
padding-bottom: 8px;
color: red;
}
...
0
votes
1answer
94 views
Qt set contentsMargins from stylesheet
I'm struggling to set contentsMargins to 0 from Qlayout objects in qt from the stylesheet. I can remove them with layout->setCOntentsMargins(0 0 0 0) but i would like to do it from stylesheet. How can ...
1
vote
1answer
233 views
Qt stylesheet, how to set color of QPalette::Link and QPlatte::LinkVisited
I use a library which uses colors of QPalette::Link and QPalette::LinkVisited as background and border color for a widget.
I would like to change these colors with stylesheet. How can I set color of ...
1
vote
1answer
131 views
Styling QTabWidget
I have a QTabWidget with a background gradient and two problems.
How dow I remove the anoying outline around the active tab (see image)? I tried "outline: none" like with push buttons but it does ...
1
vote
1answer
102 views
Why isn't QToolButton's icon displayed?
I meet the problem, so I take a test at MainWindow, the problem remains the same.
Here is the code in "MainWindow::MainWindow(QWidget *parent)..."
QToolButton* bt = new QToolButton(this);
...
0
votes
2answers
127 views
How To Remove click effect from a QPushButton
In QT: I only want to show an icon and some text, so I use QPushButton. But how can I remove the click effect from it? Tank you.
1
vote
1answer
162 views
How to Set style sheet for a Phonon::SeekSlider in Qt
I want to know how can I set a style sheet for a Phonon::SeekSlider as like as a QSlider in Qt. With QSliders we can assign so many attributes by easily calling something like this.
...
2
votes
1answer
231 views
Change style on Hover state of parent QWidget in Qt
I have a composite control in Qt that is a QWidget with a QHBoxLayout containing 3 sub controls (QWidget > QHBoxLayout > 3 QLabels). On one of those controls, which is just a QLabel displaying an ...
3
votes
1answer
1k views
Qt - Stylesheet for custom button on mouse hovered and clicked
I would like to have an invisible button, but when the user hovers the mouse on it, I would like to have a light blue color, and when he clicks it, I would like to have a darker blue.
After I did ...
0
votes
1answer
287 views
How can you modify a Qt stylesheet?
How can I modify an existing stylesheet?
For example: if I want to create buttons, which when pressed each modify a single aspect of the stylesheet. One button can insert a margin-left attribute of ...
0
votes
2answers
298 views
QPushButton Stylesheet Causes Artefact On Press
I'm having a problem with my stylesheet on a QPushButton:
QPushButton#convertButton
{
color: #00FF00;
}
Pretty simple as you can see and the text colour gets set correctly. The problem arises ...
0
votes
1answer
217 views
How to set the back ground brush of a QGraphicsScene with a style sheet
Is it possible to set the background brush of a QGraphicsScene with a Qt style sheet? I tried
QGraphicsScene {
background-color: #f00;
}
but it doesn't work. Is it possible to use stylesheets in ...
1
vote
1answer
649 views
Qt Gui Application background color stylesheet
I want to set background color for my form
like this
body
{
background-color: #fff;
}
I am using QWidget selector but i only want to change window background;
And how i can ise one stylesheet ...
2
votes
2answers
284 views
Using Qt stylesheets with QMenu::indicator
I'm using stylesheets to customize the appearance of one of my Qt apps (pyqt actually, but just the same).
Here's the stylesheet code I'm using for the QMenu's. It correctly colors all my QMenu's, ...
0
votes
1answer
588 views
Preserving corners while stretching border image usging qt stylesheet
I'm using Qt 4.7 and trying to apply Qt stylesheets to my application.
As mentioned here with the help of border-image you can stretch image with corners left "as is". Here is a good example of how ...
0
votes
1answer
290 views
Animated Gif static in QStyleSheet
I'm wanting to customize the look of a QProgressBar with a stylesheet. I'd like to give it that animated, 'indeterminate' look. So I made an animated GIF to stick in the background of the ...
0
votes
0answers
232 views
QCheckBox focus style
I am trying to style the focus for QCheckBox. It seems to adding an extra inner border that I can not control. Hoping someone here might know how to override it.
If I specify the indicator focus ...
0
votes
0answers
710 views
Difficulty styling a QTreeView with stylesheets
I'm trying to make the parent items in my QTreeView taller, have larger fonts, a custom expanded/collapsed icon in the right and be underlined. Here's my style sheet so far:
...
0
votes
0answers
337 views
QTableView StyleSheet up/down arrow images not working
So i have a database program i am writing in Qt, and for the normal tables, in the MainWindwo (subclassed from QMainWindow) part of the program, i have replaced the sort arrows with some png arrows, ...
1
vote
1answer
591 views
How can I set the stylesheet of a certain element of Qmessagebox
I have made a QMessageBox in the following way:
msgBox.setText("Are you sure?");
msgBox.setStandardButtons(QMessageBox::Yes| QMessageBox::No);
msgBox.setStyleSheet("background-image: url(image)");
...
1
vote
0answers
115 views
Customizing the branch icons on a QtTreePropertyBrowser?
I inherited a code project and am tasked with redesigning the GUI with Qt's Style Sheets.
There is a subclassed QtTreePropertyBrowser which I've styled to change the background colors/font color, but ...
2
votes
2answers
93 views
Limiting the effects of a stylesheet to the parent widget?
I am setting the background color of a QWidget subclass. When I do this using a stylesheet, the styles of the other components in the QWidget change (eg, the color of a PushButton, and its look ...
1
vote
1answer
119 views
How do I capture errors printed when calling setStyleSheet() in Qt C++?
For example:
mywidget->setStyleSheet("QSlider::groove:horizontal { hight: 200px; }");
prints this to the console in Qt Creator:
Unknown property hight
It is obvious to the programmer in this ...
0
votes
2answers
189 views
Can't set size QMainWindow to less than 200x100 px
Currently I am trying to style QMainWindow using qss stylesheets. It works well, except of setting the size. I am using following qss params: width, height, min-width, min-height. max-width, ...
0
votes
2answers
1k views
How to use stylesheet to customize handle of QSlider on MacOS
On MacOS 10.6, the default handle of QSlider is a ball, if a QSlider has ticks, then the handle changes its appearence (one side arrow shape), I want this kind of handle, but I don't like the ticks Qt ...
2
votes
1answer
876 views
How to make QComboBox popup upwards?
my QComboBox-derived class lives in a QGraphicsScene at the bottom end of the (visible) screen - but it pops up downwards, thus out of view.
(How) is it possible to force the popup to open above the ...
2
votes
1answer
809 views
QComboBox drop down button outside combo box frame
I'm trying to go outside combo box frame with this CSS Qt style sheet:
QComboBox#tab_combo {
margin: 0 26px 0 0; /* make room for the arrow */
padding: 2px 1px 2px 1px;
min-width: 19px;
min-height: ...
3
votes
1answer
642 views
QTableWidget with stylesheet don’t scroll items
In the following code there are two stylesheets: problemStylesheet and okStylesheet.
Everything works fine when I’m using okStylesheet for QTableWidget. Labels are scrolling.
Problem is that labels ...



