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. QGridLayout max column width
Forum Updated to NodeBB v4.3 + New Features

QGridLayout max column width

Scheduled Pinned Locked Moved General and Desktop
3 Posts 3 Posters 11.3k Views 1 Watching
  • 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.
  • M Offline
    M Offline
    Mona2000
    wrote on last edited by
    #1

    How do I set a maximum width for QGridLayout columns?
    I don't want to set strech proportions with setColumnStretch, just a fixed maximum width.

    1 Reply Last reply
    0
    • M Offline
      M Offline
      mirswith
      wrote on last edited by
      #2

      Looking at the docs the QGridLayout takes QLayoutItem objects to fill its cells, can you sub class QLayoutItem and override its maximumSize property and use your new class in the grid?

      -=ben

      1 Reply Last reply
      0
      • EddyE Offline
        EddyE Offline
        Eddy
        wrote on last edited by
        #3

        Do you want to distribute your program to others? Or are you the only one that is going to use it? I guess not.

        In the first case you should consider the fact that others might want to use other fonts, and even bigger fonts. If your column width is not big enough for the bigger font you won't see it all. The purpose of Qt's layout system is to adapt automatically in this case.

        That's the reason why QGridLayout only has setMinimumColumnWidth and no similar function for maximum width.

        What you can do is use a widget for which you use setminimumsizehint. That way your column will adapt to the necessary space required to show that widget.

        Qt Certified Specialist
        www.edalsolutions.be

        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