I created a new class clickable label which inherits from QLabel and acts as a sort of "push button".
I would like to use background images as the button it self. This way I could also change the background image for various states (disabled, clicked, released).
How can I either specify a style sheet to only change the attributes for that label, or change a property/attribute of Qlabel somehow? (I know the style sheet would be background-image url(xxx) but it would change all my buttons to that image in my custom class)
Thanks