Updates
[situare] / src / ui / situareuser.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Jukka Saastamoinen - jukka.saastamoinen@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #include "situareuser.h"
23 #include <QPainter>
24 #include <QDebug>
25
26 SituareUser::SituareUser(QWidget *parent)
27     : QLabel(parent)
28 {
29 }
30
31
32 void SituareUser::paintEvent(QPaintEvent *aPaintEvent)
33 {
34
35     int roundness(9);
36
37     QRect widgetRect = QRect(0,0,this->pixmap()->width(),this->pixmap()->height());
38
39     QPainter painter(this);
40     painter.save();
41
42     painter.setRenderHint(QPainter::Antialiasing);
43     QPainterPath roundedRect;
44     roundedRect.addRoundedRect(0,0,widgetRect.width()+2, widgetRect.height()+2,roundness,roundness);
45     painter.setClipPath(roundedRect);
46     QRegion maskRegion = painter.clipRegion();
47
48     setMask(maskRegion);
49
50     painter.drawPixmap(QPointF(0,0),(*(this->pixmap())));
51     painter.drawPixmap(QPointF(-6,-6),(QPixmap(":/resources/profile_pic_border.png")));
52     painter.restore();
53 }
54
55 QSize SituareUser::sizeHint() const
56 {
57     return QSize(50,50);
58 }