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. How to change the size of icons in QTableWidgetItem or in QTableWidget
Forum Updated to NodeBB v4.3 + New Features

How to change the size of icons in QTableWidgetItem or in QTableWidget

Scheduled Pinned Locked Moved General and Desktop
how to change t
2 Posts 2 Posters 4.3k 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.
  • B Offline
    B Offline
    Bidjc
    wrote on last edited by
    #1

    I want to create QTableWidget,Each row including pictures and text, and I want to make pictures and text images are the same size,the text can changed size ,but i do not know how to change the size of icon ,Who can solve my problem yet ,Thanks!

    mrjjM 1 Reply Last reply
    0
    • B Bidjc

      I want to create QTableWidget,Each row including pictures and text, and I want to make pictures and text images are the same size,the text can changed size ,but i do not know how to change the size of icon ,Who can solve my problem yet ,Thanks!

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

      @Bidjc
      HI and welcome
      please see
      http://doc.qt.io/qt-5/qabstractitemview.html#iconSize-prop
      so something like

      QTableWidget *table = new QTableWidget(this);
      table->setIconSize(QSize(100, 100));
      QTableWidgetItem *item = new QTableWidgetItem;
      item->setSizeHint(QSize(100, 100));
      item->setIcon(QIcon(fileName));
      table->setItem(0, 0, item);
      

      [edit: updated documentation link for latest version SGaist]

      1 Reply Last reply
      1

      • Login

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