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. remove space around qToolButton
QtWS25 Last Chance

remove space around qToolButton

Scheduled Pinned Locked Moved Unsolved General and Desktop
19 Posts 3 Posters 1.7k 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.
  • J Offline
    J Offline
    jkwok678
    wrote on last edited by
    #8

    @mrjj
    Ah, I think you misinterpreted what I mean, I've hand coded all the buttons and didn't use a ui file.
    So I want to try replicate your button that i saw in the image using code.

    mrjjM 1 Reply Last reply
    0
    • J jkwok678

      @mrjj
      Ah, I think you misinterpreted what I mean, I've hand coded all the buttons and didn't use a ui file.
      So I want to try replicate your button that i saw in the image using code.

      mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #9

      @jkwok678
      Yes i fairly sure i did :)
      its
      button1->setFixedSize(100,100);
      button1->setIconSize(QSize(100, 100));

      for 100x100 icon / button

      J 1 Reply Last reply
      0
      • B Bonnie

        @jkwok678 I'm not sure about this, but does setAutoRaise(true) act as you expected?

        J Offline
        J Offline
        jkwok678
        wrote on last edited by
        #10

        @Bonnie
        Thanks for the suggestion, it works in a way, but once the button is highlighted you can still see the border around the QIcon in the QToolButton. So the size of the button is still the same, I was hoping to shrink the size of the button, to being much closer to the size of the QIcon which is 16x16. I would prefer to have maybe 1/2 pixel border around the button. But also allow the button to expand if the screen resolution/ screen size is high.

        mrjjM 1 Reply Last reply
        0
        • J jkwok678

          @Bonnie
          Thanks for the suggestion, it works in a way, but once the button is highlighted you can still see the border around the QIcon in the QToolButton. So the size of the button is still the same, I was hoping to shrink the size of the button, to being much closer to the size of the QIcon which is 16x16. I would prefer to have maybe 1/2 pixel border around the button. But also allow the button to expand if the screen resolution/ screen size is high.

          mrjjM Offline
          mrjjM Offline
          mrjj
          Lifetime Qt Champion
          wrote on last edited by
          #11

          @jkwok678 said in remove space around qToolButton:

          But also allow the button to expand if the screen resolution/ screen size is high.

          Ok then DONT use setFixedSize to set size but just the normal ones

          1 Reply Last reply
          0
          • mrjjM mrjj

            @jkwok678
            Yes i fairly sure i did :)
            its
            button1->setFixedSize(100,100);
            button1->setIconSize(QSize(100, 100));

            for 100x100 icon / button

            J Offline
            J Offline
            jkwok678
            wrote on last edited by
            #12

            @mrjj
            With this implementation is the setFixedSize more of a default/intitial size?
            So when I have code that allows the button to resize, it can still do so?

            mrjjM 1 Reply Last reply
            0
            • J jkwok678

              @mrjj
              With this implementation is the setFixedSize more of a default/intitial size?
              So when I have code that allows the button to resize, it can still do so?

              mrjjM Offline
              mrjjM Offline
              mrjj
              Lifetime Qt Champion
              wrote on last edited by
              #13

              @jkwok678 said in remove space around qToolButton:

              setFixedSize

              Will set to a fixed size so nope, it wont resize then
              so dont use it if you want toolbuttons to grow

              1 Reply Last reply
              0
              • J Offline
                J Offline
                jkwok678
                wrote on last edited by
                #14

                What's the normal ones? I don't see just a set Size function in the documentation.

                mrjjM 1 Reply Last reply
                0
                • J jkwok678

                  What's the normal ones? I don't see just a set Size function in the documentation.

                  mrjjM Offline
                  mrjjM Offline
                  mrjj
                  Lifetime Qt Champion
                  wrote on last edited by
                  #15

                  @jkwok678

                  Hi
                  setGeometry and
                  resize

                  but if you put them in layout anyway, its pointless as then they scale and
                  icon gets border again since now iconSize is not matching anymore.

                  1 Reply Last reply
                  1
                  • J Offline
                    J Offline
                    jkwok678
                    wrote on last edited by
                    #16

                    So, what could I do to have the button have the same size as the QIcon, or at least just less blank space?

                    mrjjM 1 Reply Last reply
                    0
                    • J jkwok678

                      So, what could I do to have the button have the same size as the QIcon, or at least just less blank space?

                      mrjjM Offline
                      mrjjM Offline
                      mrjj
                      Lifetime Qt Champion
                      wrote on last edited by
                      #17

                      @jkwok678
                      well
                      button1->setFixedSize(100,100);
                      button1->setIconSize(QSize(100, 100));
                      set button to 100x100 and same with icon.
                      botton stay that size.

                      1 Reply Last reply
                      1
                      • J Offline
                        J Offline
                        jkwok678
                        wrote on last edited by
                        #18

                        Would it be able to do that and also expand?As in when the button expands the Icon could expand as well? Or perhaps switch to a different Icon that us higher resolution?

                        mrjjM 1 Reply Last reply
                        0
                        • J jkwok678

                          Would it be able to do that and also expand?As in when the button expands the Icon could expand as well? Or perhaps switch to a different Icon that us higher resolution?

                          mrjjM Offline
                          mrjjM Offline
                          mrjj
                          Lifetime Qt Champion
                          wrote on last edited by mrjj
                          #19

                          Hi
                          Sadly no.
                          If you want such things, make a custom button that does it.

                          However, Qt has support for HIRES displays that do scaling etc.
                          and QIcon can have hires version to be used on such displays
                          https://doc.qt.io/qt-5/highdpi.html

                          but this has nothing to do with you want icon to cover all of the button at all times :)
                          That is not a hires thing, in my opinion :)

                          here is example of custom button
                          https://stackoverflow.com/questions/31742194/dynamically-resize-qicon-without-calling-setsizeicon

                          It scales the cion to fit at any given time.
                          As you can see its not much code.

                          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