Added new class AvatarImage.
[situare] / src / ui / avatarimage.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 "avatarimage.h"
23 #include <QPainter>
24 #include <QDebug>
25
26 const int BORDER_X_OFFSET = 7;
27 const int BORDER_Y_OFFSET = 7;
28 const int RECT_WIDTH_OFFSET = 1;
29 const int RECT_HEIGHT_OFFSET = 1;
30 const int ROUNDNESS = 9;
31 const int IMAGE_SIZE_X = 60;
32 const int IMAGE_SIZE_Y = 60;
33
34
35 QPixmap AvatarImage::make(const QPixmap &image)
36 {
37     QPixmap avatarImage;    // = QPixmap(IMAGE_SIZE_X, IMAGE_SIZE_Y);
38     QPainter painter(&avatarImage);
39 //    QLabel label;
40 //    label.setPixmap(image);
41
42     QRect widgetRect = QRect(0, 0, image.width(), image.height());
43
44     painter.setRenderHint(QPainter::Antialiasing);
45     QPainterPath roundedRect;
46     roundedRect.addRoundedRect(5, 5, widgetRect.width()+RECT_WIDTH_OFFSET,
47                                widgetRect.height()+RECT_HEIGHT_OFFSET,ROUNDNESS,ROUNDNESS);
48     painter.setClipPath(roundedRect);
49     //QRegion maskRegion = painter.clipRegion();
50
51     //label.setMask(maskRegion);
52
53     painter.drawPixmap(QPointF(5, 5), image);
54     //label.clearMask();
55
56     painter.drawPixmap(QPoint(0, 0), QPixmap(":/res/images/profile_pic_border.png"));
57
58
59     return avatarImage;
60 }