184
|
1 |
/*
|
1066
|
2 |
* Hedgewars, a free turn based strategy game
|
184
|
3 |
* Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
|
|
4 |
*
|
|
5 |
* This program is free software; you can redistribute it and/or modify
|
|
6 |
* it under the terms of the GNU General Public License as published by
|
|
7 |
* the Free Software Foundation; version 2 of the License
|
|
8 |
*
|
|
9 |
* This program is distributed in the hope that it will be useful,
|
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12 |
* GNU General Public License for more details.
|
|
13 |
*
|
|
14 |
* You should have received a copy of the GNU General Public License
|
|
15 |
* along with this program; if not, write to the Free Software
|
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
17 |
*/
|
|
18 |
|
|
19 |
#include <QPaintEvent>
|
|
20 |
#include <QPainter>
|
|
21 |
#include "SquareLabel.h"
|
|
22 |
|
|
23 |
SquareLabel::SquareLabel(QWidget * parent) :
|
310
|
24 |
QWidget(parent)
|
184
|
25 |
{
|
|
26 |
|
|
27 |
}
|
|
28 |
|
|
29 |
void SquareLabel::paintEvent(QPaintEvent * event)
|
|
30 |
{
|
|
31 |
QPainter painter(this);
|
|
32 |
int pixsize;
|
|
33 |
if (width() > height()) {
|
|
34 |
pixsize = height();
|
|
35 |
painter.translate((width() - pixsize) / 2, 0);
|
|
36 |
} else {
|
|
37 |
pixsize = width();
|
|
38 |
painter.translate(0, (height() - pixsize) / 2);
|
|
39 |
}
|
310
|
40 |
painter.drawPixmap(0, 0, pixsize, pixsize, pixmap.scaled(pixsize, pixsize, Qt::KeepAspectRatio));
|
184
|
41 |
}
|
310
|
42 |
|
|
43 |
void SquareLabel::setPixmap(const QPixmap & pixmap)
|
|
44 |
{
|
|
45 |
this->pixmap = pixmap;
|
|
46 |
repaint();
|
|
47 |
}
|