Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How can I access the background color from the application stylesheet in my custom widget?
QtWS25 Last Chance

How can I access the background color from the application stylesheet in my custom widget?

Scheduled Pinned Locked Moved General and Desktop
stylesheetqpaletteqcolorqpainter
18 Posts 4 Posters 11.3k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    SGaist
    Lifetime Qt Champion
    wrote on 21 Jan 2016, 22:46 last edited by
    #7

    One possible way would be to parse the style sheet itself and get the data you want from it in order to do the painting.

    AFAIK, Qt style sheets are currently not supported for custom QStyle subclasses so that's also a no-go

    Interested in AI ? www.idiap.ch
    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

    M 1 Reply Last reply 21 Jan 2016, 22:48
    0
    • S SGaist
      21 Jan 2016, 22:46

      One possible way would be to parse the style sheet itself and get the data you want from it in order to do the painting.

      AFAIK, Qt style sheets are currently not supported for custom QStyle subclasses so that's also a no-go

      M Offline
      M Offline
      mrjj
      Lifetime Qt Champion
      wrote on 21 Jan 2016, 22:48 last edited by
      #8

      @SGaist
      Ok. a bit surprising . :)

      J 1 Reply Last reply 15 Feb 2016, 14:21
      0
      • ? Offline
        ? Offline
        A Former User
        wrote on 21 Jan 2016, 22:49 last edited by
        #9

        As QWidgets are said to be "done" it should be safe to include private headers, right?

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 21 Jan 2016, 22:54 last edited by
          #10

          Done doesn't mean there's no work on them at all ;)

          Even so, the QStyleSheetStyle class doesn't export the information needed

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          J 1 Reply Last reply 22 Jan 2016, 08:02
          0
          • S SGaist
            21 Jan 2016, 22:54

            Done doesn't mean there's no work on them at all ;)

            Even so, the QStyleSheetStyle class doesn't export the information needed

            J Offline
            J Offline
            Jakob
            wrote on 22 Jan 2016, 08:02 last edited by
            #11

            @SGaist I noticed that if I ask the current style of my button, I actually get an instance of exactly that QStyleSheetStyle class. I then hoped that maybe I could simply do:

            auto st = style();
            st->polish(this);
            

            This seems to be what the Qt-code itself also does, except:

            • the color is still not updated
            • this seems to introduce an (infinite) loop in paintEvent somehow (maybe something to do with these RECURSION_GUARD macro calls??)
            1 Reply Last reply
            0
            • S Offline
              S Offline
              SGaist
              Lifetime Qt Champion
              wrote on 22 Jan 2016, 22:05 last edited by
              #12

              IIRC polish will trigger a paint event and there you have your loop.

              What do you need to paint on your push button ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              J 1 Reply Last reply 23 Jan 2016, 13:35
              0
              • S SGaist
                22 Jan 2016, 22:05

                IIRC polish will trigger a paint event and there you have your loop.

                What do you need to paint on your push button ?

                J Offline
                J Offline
                Jakob
                wrote on 23 Jan 2016, 13:35 last edited by
                #13

                @SGaist

                Something along the lines of http://ctrlv.in/701304. Doing the painting was quite easy - however, we have an elaborate set of colours defined for buttons, with specialisations for :flat buttons, in :checked and :!checked state, and also for the :hover state, and for each of the combinations.

                In the documentation of QPalette it states:
                'If you create a new widget we strongly recommend that you use the colors in the palette rather than hard-coding specific colours'

                But apparently all bets are off once stylesheets come into play.

                1 Reply Last reply
                0
                • S Offline
                  S Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on 23 Jan 2016, 20:24 last edited by
                  #14

                  Are you using something like described in this post ?

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  J 1 Reply Last reply 24 Jan 2016, 13:04
                  0
                  • S SGaist
                    23 Jan 2016, 20:24

                    Are you using something like described in this post ?

                    J Offline
                    J Offline
                    Jakob
                    wrote on 24 Jan 2016, 13:04 last edited by
                    #15

                    @SGaist No, not at all. We're not reusing any of the system styling anywhere. The application has its complete own styling defined in the stylesheet. By now the stylesheet is appr. 500 lines.

                    In a way I'm trying to achieve the opposite. Through the stylesheet we're overwriting all the default styling. Because stylesheets are supposed to be 'cascading' over predefined styles, my expectations was also that the QPalette instance would always be updated whenever the state of the button asks for it. So the first line in the example you linked, is actually precisely what I was trying to do, expecting to get the currently relevant color.

                    J 1 Reply Last reply 24 Jan 2016, 13:11
                    0
                    • J Jakob
                      24 Jan 2016, 13:04

                      @SGaist No, not at all. We're not reusing any of the system styling anywhere. The application has its complete own styling defined in the stylesheet. By now the stylesheet is appr. 500 lines.

                      In a way I'm trying to achieve the opposite. Through the stylesheet we're overwriting all the default styling. Because stylesheets are supposed to be 'cascading' over predefined styles, my expectations was also that the QPalette instance would always be updated whenever the state of the button asks for it. So the first line in the example you linked, is actually precisely what I was trying to do, expecting to get the currently relevant color.

                      J Offline
                      J Offline
                      Jakob
                      wrote on 24 Jan 2016, 13:11 last edited by
                      #16

                      @SGaist Btw, the documentation of QPalette seems even 'more confusing' now that I have seen some of the internals by some debugging efforts while looking for some 'loopholes'.

                      It seems that even the internal Qt-code can never rely on the correctness of the QPalette instance once the paintEvent() method is entered. If I follow things correctly, it seems also internal code explicitly always calls some special 'update' function in order to update the internal QPalette instance. This is for me the exact opposite of what I would expect based on the QPalette documentation, which to me suggests that the palette is continuously being updated before entering the paintEvent() function.

                      Have I encountered some kind of (extensive) bug in the code, in the documentation? Or maybe I'm completely misunderstanding something?

                      1 Reply Last reply
                      0
                      • M mrjj
                        21 Jan 2016, 22:48

                        @SGaist
                        Ok. a bit surprising . :)

                        J Offline
                        J Offline
                        Jakob
                        wrote on 15 Feb 2016, 14:21 last edited by
                        #17

                        @mrjj @SGaist As it turns out, not only colors are not updated in the palette, also any margins set through the stylesheet, are not updated in the widget's contentsRect, what I would actually expect.

                        This thread has been around for some while now without a satisfying answer, so I'll post some bugs I guess, and consider this thread as 'closed' by those bug reports.

                        1 Reply Last reply
                        1
                        • S Offline
                          S Offline
                          SGaist
                          Lifetime Qt Champion
                          wrote on 15 Feb 2016, 23:19 last edited by
                          #18

                          Please share any bug report you are opening so that other may find them more easily.

                          Interested in AI ? www.idiap.ch
                          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                          1 Reply Last reply
                          1

                          • Login

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • Users
                          • Groups
                          • Search
                          • Get Qt Extensions
                          • Unsolved