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. Adjust QListWidget size to content

Adjust QListWidget size to content

Scheduled Pinned Locked Moved Solved General and Desktop
3 Posts 2 Posters 3.4k Views 2 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.
  • S Offline
    S Offline
    smnsmn
    wrote on last edited by
    #1

    Hello,
    I've been trying to adjust the size of QListWidget to its contents (QListWidgetItems with text); solutions found in google either complicated (in my opinion) for such a trivial task or given little to no explanation or code snippets. I guess there's an easy and elegant solution but still have no clue.
    Thanks in advance.

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

      Hi,

      One possible source of information is QListWidget::sizeHintForColumn. You can use that to resize your widget.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      S 1 Reply Last reply
      0
      • SGaistS SGaist

        Hi,

        One possible source of information is QListWidget::sizeHintForColumn. You can use that to resize your widget.

        S Offline
        S Offline
        smnsmn
        wrote on last edited by smnsmn
        #3

        @SGaist,
        Got it.
        Here's the code snippet in case anyone's looking for an answer:

        ui->listWidget->setFixedSize(ui->listWidget->sizeHintForColumn(0) + ui->listWidget->frameWidth() * 2, ui->listWidget->sizeHintForRow(0) * ui->listWidget->count() + 2 * ui->listWidget->frameWidth());
        
        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