I'm looking to essentially replicate this:
What is the most appropriate Qt container widget for displaying my custom widgets containing image+subscript? I'm looking at QTableView
and it seems to be supposed to have a set number of rows/columns, while I would like my program to change layout depending on window width (so that there is no horizontal scroll), and adding new widget should be done with addWidget(QWidget * w)
, not setWidget(int row, int column, QWidget * w)
. Is there a better component for this than QTableView (which requires much coding for my task)?
There isn't a widget specifically made for displaying images, but this can be done with the label widget. We do this with the pixmap property. QPixmap pic("/path/to/your/image"); ui->label->setPixmap(pic);
You should use QListWidget
(or QListView
and subclass QAbstractItemModel
) and set it's view mode to IconMode
.
Example :
m_listeWidget->setViewMode(QListWidget::IconMode); m_listeWidget->setIconSize(QSize(200,200)); m_listeWidget->setResizeMode(QListWidget::Adjust); m_listeWidget->addItem(new QListWidgetItem(QIcon("../earth.jpg"),"Earth")); m_listeWidget->addItem(new QListWidgetItem(QIcon("../tornado.jpg"),"Tornado")); m_listeWidget->addItem(new QListWidgetItem(QIcon("../ics.jpg"),"Wallpaper"));
Result :
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With