How to pass "ui" object to colors class from mainwindow.cpp
-
Hi are there a reason you do not use style sheets ?
Besides changing colors, it can change many other things. Like a logo (image)
like
http://thesmithfam.org/blog/2009/09/10/qt-stylesheets-tutorial/
You can then change colors and logo without even recompile.You can make Color Class Friend of QMainwinow, and it will be able to use its private members.
http://www.cprogramming.com/tutorial/friends.htmlBut Im not sure why a stylesheet would not be much better. ?
-
@mrjj Good question. I had to keep putting stylesheets on every little thing, whereas with my colors class I can grab things by class and apply things in bulk. I still use stylesheets, but use my colors class to recolor what was already styled. For instance, I may have a series of buttons that are of a certain class, and unfortunately Qt doesn't allow me to put widgets in a certain class and apply a stylesheet to that class. So, my colors class loads a colors.ini in my resource file that is short and sweet. I change that little file, and the whole application changes, while not touching the other styling.
The way I achieved "class" was to take a little-used property "accessibleDescription" and put something in there like "success", "info", "warning", "danger" (if you are familiar with how Twitter Bootstrap does their color classes). Then, my colors class grabs all the buttons, looks at that property, applies the appropriate color combination from that, and then removes the accessibleDescription value. So, as I draw a widget on a page, I can say, "Oh, well, I'm adding something -- this is an add function button, so I'll want to apply the 'success' style to it," or, I can say, "On this button, I'm removing something, so I'll want to apply the 'danger' style to it."
It would be nice if a future version of Qt would have a class property on each widget. That way, we could make a global stylesheet where I could take buttons of say, class 'danger', and make them all red. Lacking that, I came up with another system.
-
@maximo
Hi
Well you can do the same with style sheet. If you apply stylesheet to mainwindow, its
applies to all widgets within. You can define By class, like sample where
its all QFrame and subtypes. If you made your own frame, like HappyFrame, you could use that
as Type also to have it apply to all of that type.
Here we also say, must to named "TestDisplayFrame" and
have the dynamic property error set to true.
So you can group/mass apply with stylesheets.QFrame#TestDisplayFrame[error="true"]
{
background-color: red;
border: 2px solid rgba(205, 92, 92, 255);
border-radius: 20px;
}So you can easy get all of class danger, by use its Type. And if its mixed widget you can use
the [error="true"] where you just use your own property , that you can easy define in Designer and then
use in stylesheet. So it can do it already :) -
@mrjj said:
So you can easy get all of class danger, by use its Type. And if its mixed widget you can use
the [error="true"] where you just use your own property , that you can easy define in Designer and then
use in stylesheet. So it can do it already :)Interesting. I'm still a bit new to Qt. What's a "mixed widget"? How do I set "my own property" easily in the Designer? So there's an ability to add a custom property to a widget in the Designer that I can then edit the value on? If so, I could create one called widgetClass where I can use a MainWindow Stylesheet to adjust it.
-
@maximo
By mixed, I mean Like the following situation:
You have 15 Labels. Only some of them you want to change color of.
If you do
QLabel {
background-color: rgb(170, 85, 127);
}All of them will change.
Then you can use their Objectname (set in designer)
QLabel#label_2{
background-color: rgb(170, 85, 127);
}
QLabel#label_3{
background-color: rgb(170, 85, 127);
}
..
For those you want to change. (Case important for name!)If you then need to do it more dynamic, then in Designer
Over the Properties List , right of "filter" is Big Green +.
That let you add new property, you can then check for.
Do read the link SGaist provided on how to update if you change this
Dynamic property from code to make it really update.So overall you can group on ClassType, Like "All QLabels",
with subgroups using a dynamic property, so you can say
All QLabels that has DoMe=true.
Or simply by names, Like All QLabels, Named a and b and cNot saying it is better than your color setup, but just want to note
that StyleSheet applies from Object set on and all subchildren and
does provides ways to point to which WIdgets you want to change.Note: I had issues getting it to check in Designer when using dynamic properties and had to use
code. Might have done something wrong. But By Type and by Name works as expected in Designer. -
@mrjj said:
I had issues getting it to check in Designer when using dynamic properties and had to use
code.Yeah, I see what you mean. I tried getting the stylesheet to recognize my dynamic property and it just wouldn't do it. I then tried to set the stylesheet from code on the main window, pulling from a CSS in a resource file, and the moment I used QPushButton[buttonClass="danger"]{ blah blah} , it generated a non-fatal runtime error (but still load) that said something like, "could not parse stylesheet for object [some hex number]". I think this is because I need to do the steps for QPROPERTY(), and that looked confusing and difficult for every button on my form, and more work than the way I was doing it in my colors class. Diminishing returns.
So, I went back to doing it my code way where I read a colors.ini file from the resource file, and then apply that to the objects in a colors class. However, because you showed me how to do a dynamic property, I was able to use this dynamic property in code with
.property("buttonClass").toString()
so that I didn't have to kludge it by using.accessibleDescription()
. So, thanks! :) -
@maximo
Well, i did try the
style()->unpolish();
style()->polish();
for Mainwindow but ended up checking the dynamic property
in code and then assign a single style sheet to those I had flagged.
Maybe you are right and it must be for widgets for it to work.Btw if you ever need to do something to all Widgets, its not that much code.
QList<QWidget *> widgets = findChildren<QWidget *>(); foreach (QWidget* b, widgets) { b->SOMETHING }
and you can replace QWidget * with say QPushButton * to get all buttons.
Anyways, good that you found use for Dynamic Properties.
-
@maximo
Ok :)
I am going to test again with stylesheets.
It would be very nice it it worked as docs says.
Or at least to understand why it did not.Update:
Ok, one must unpolish/ polish each widget as doing it to
Mainwindow doesn't seems to work.
But it also works with
setStyleSheet(styleSheet());
in MainWindow to reload (whole) style sheet.Update 2:
Ok. Having qframes with bool error property.
It will update in Designer, if setting it.
No code. Sheet on MWindow.
So it does work with properties it seems.