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. SetText of QCheckBox in stylesheet ?
QtWS25 Last Chance

SetText of QCheckBox in stylesheet ?

Scheduled Pinned Locked Moved General and Desktop
3 Posts 3 Posters 1.8k 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.
  • D Offline
    D Offline
    deleted28
    wrote on last edited by
    #1

    IS it possible to set Text of QCheckBox in stylesheet dependend on state ?
    Already using similar approach to change indicator of checkbox :

    @ ui->checkBox->setStyleSheet(QString("QCheckBox::indicator {"
    "image: url(:/images/checkbox_circle_green.png);"
    "}"
    "QCheckBox::indicator:unchecked {"
    "image: url(:/images/checkbox_circle_red.png);"
    "}"
    ));
    @

    I would like to set text "connect" / "disconnect" on state unchecked / checked.

    1 Reply Last reply
    0
    • J Offline
      J Offline
      JvdGlind
      wrote on last edited by
      #2

      Well, you could always use an image instead of text, but I assume a style sheet does not change content, only its layout.

      Jeffrey VAN DE GLIND
      Principle Consultant @ Nalys
      www.nalys-group.com

      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #3

        Hi,

        IIRC, you can change a QObject property using something like

        @QPushButton { qproperty-iconSize: 20px 20px; }@

        It should be adaptable to QCheckBox's text

        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
        0

        • Login

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