Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    Custom stylesheet properties

    General and Desktop
    2
    2
    1285
    Loading More Posts
    • 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.
    • R
      Rollmops last edited by

      Hi!

      I have really searched the whole internet for this...without any success.

      So here is my question.

      I have my own class (OwnObject) derived from QObject and i do have a stylesheet. Is it possible to use custom properties in my stylesheet and to access them from my own class?
      Like:

      stylesheet:

      OwnObject {
      my_property: 10;
      }

      code (Python):

      class OwnObject(QObject):
      ...
      a = self.property('my_property')

      Thanks for your help!!

      Greetings!

      1 Reply Last reply Reply Quote 0
      • A
        andre last edited by

        No, it is not. Style sheet parsing is private in Qt.

        However, what you can do, is make you style sheet set any property you want, including custom properties. That might be enough for you, depending on your purposes.

        1 Reply Last reply Reply Quote 0
        • First post
          Last post