QTfrontend/SquareLabel.cpp
author unc0rr
Thu, 05 Oct 2006 16:33:18 +0000
changeset 183 57c2ef19f719
parent 93 c21ff3af56cf
child 184 f97a7a3dc8f6
permissions -rw-r--r--
Relicense to GPL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
93
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
     1
/*
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
     2
 * Hedgewars, a worms-like game
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2006 Andrey Korotaev <unC0Rr@gmail.com>
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
     4
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
93
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
     8
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
    12
 * GNU General Public License for more details.
93
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    13
 *
183
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
    14
 * You should have received a copy of the GNU General Public License
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
    15
 * along with this program; if not, write to the Free Software
57c2ef19f719 Relicense to GPL
unc0rr
parents: 93
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
93
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    17
 */
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    18
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    19
#include <QPaintEvent>
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    20
#include <QPainter>
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    21
#include "SquareLabel.h"
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    22
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    23
SquareLabel::SquareLabel(QWidget * parent) :
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    24
  QLabel(parent)
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    25
{
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    26
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    27
}
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    28
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    29
void SquareLabel::paintEvent(QPaintEvent * event)
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    30
{
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    31
	QPainter painter(this);
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    32
	int pixsize;
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    33
	if (width() > height()) {
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    34
		pixsize = height();
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    35
		painter.translate((width() - pixsize) / 2, 0);
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    36
	} else {
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    37
		pixsize = width();
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    38
		painter.translate(0, (height() - pixsize) / 2);
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    39
	}
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    40
	painter.drawPixmap(0, 0, pixsize, pixsize, pixmap()->scaled(pixsize, pixsize, Qt::KeepAspectRatio));
c21ff3af56cf - small fix to translation
unc0rr
parents:
diff changeset
    41
}