24 lines
509 B
C
24 lines
509 B
C
|
#ifndef ASPECTRATIOPIXMAPLABEL_H
|
||
|
#define ASPECTRATIOPIXMAPLABEL_H
|
||
|
|
||
|
#include <QLabel>
|
||
|
#include <QPixmap>
|
||
|
#include <QResizeEvent>
|
||
|
|
||
|
class AspectRatioPixmapLabel : public QLabel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit AspectRatioPixmapLabel(QWidget *parent = 0);
|
||
|
virtual int heightForWidth( int width ) const;
|
||
|
virtual QSize sizeHint() const;
|
||
|
QPixmap scaledPixmap() const;
|
||
|
public slots:
|
||
|
void setPixmap ( const QPixmap & );
|
||
|
void resizeEvent(QResizeEvent *);
|
||
|
private:
|
||
|
QPixmap pix;
|
||
|
};
|
||
|
|
||
|
#endif // ASPECTRATIOPIXMAPLABEL_H
|