Qt Forum

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

    Update: Forum Guidelines & Code of Conduct

    Unsolved Show Icon and Text for QToolButton with defaultAction

    General and Desktop
    3
    3
    7054
    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.
    • S
      sarlaa last edited by

      I have QToolButton with ToolButtonStyle ToolButtontTextBesideIcon, that has a default action with setDefaultAction(). My QAction has icon (using setIcon()) and text using (setText()), but It show's ony the icon. So how can I show both icon and text ?

      1 Reply Last reply Reply Quote 0
      • SGaist
        SGaist Lifetime Qt Champion last edited by

        Hi and welcome to devnet,

        What version of Qt are out using ?
        On what platform ?
        With which compiler ?
        Can you provide a minimal sample example so that other people can test it ?

        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 Reply Quote 0
        • A
          ambershark last edited by

          Works fine for me.... Example code below:

              auto toolButton = new QToolButton(toolBar);
              toolButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
              auto act = new QAction();
              act->setIcon(QIcon(":/icon.png"));
              act->setText("some text");
              toolButton->setDefaultAction(act);
          

          My L-GPL'd C++ Logger github.com/ambershark-mike/sharklog

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