Mercurial > retraceit
view src/imagelabel.cpp @ 35:f10d4e035eec
(issue10) Use width of header as minimum of the column size
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 06 May 2015 16:08:41 +0200 |
parents | 6b9b5efcd7f4 |
children | 26e1521b9afd |
line wrap: on
line source
/* Copyright (C) 2015 by ETH Zürich * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=2) * and comes with ABSOLUTELY NO WARRANTY! * See LICENSE.txt for details. */ #include "imagelabel.h" ImageLabel::ImageLabel(QWidget *parent) : QWidget(parent) { label = new QLabel(this); label->setScaledContents(true); label->setFixedSize(0,0); } void ImageLabel::resizeEvent(QResizeEvent *event) { QWidget::resizeEvent(event); resizeImage(); } const QPixmap* ImageLabel::pixmap() const { return label->pixmap(); } void ImageLabel::setPixmap (const QPixmap &pixmap){ label->setPixmap(pixmap); resizeImage(); } void ImageLabel::resizeImage() { QSize pixSize = label->pixmap()->size(); pixSize.scale(size(), Qt::KeepAspectRatio); label->setFixedSize(pixSize); }