author | nemo |
Sun, 17 May 2009 14:25:45 +0000 | |
changeset 2072 | 6e0fcbcc3f60 |
parent 1066 | 1f1b3686a2b0 |
child 2098 | c977d7f2aa09 |
permissions | -rw-r--r-- |
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 |
{ |
2072
6e0fcbcc3f60
Custom controls implementing paintEvent play poorly with stars, especially SquareLabel
nemo
parents:
1066
diff
changeset
|
26 |
setAttribute(Qt::WA_PaintOnScreen, true); |
184 | 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 |
} |