Fixed defects found in review
[situare] / src / map / friendlocationitem.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Ville Tiensuu - ville.tiensuu@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 <QDebug>
23 #include "friendlocationitem.h"
24 #include "mapengine.h"
25 #include "mapcommon.h"
26
27 FriendLocationItem::FriendLocationItem(const QPixmap &icon,
28                                        const QPointF &friendsLocation,
29                                        QObject *parent)
30     : BaseLocationItem(parent),
31       m_partOfGroup(false)
32
33 {
34     qDebug() << __PRETTY_FUNCTION__;
35
36     setPixmap(icon);
37     setPosition(QPointF( friendsLocation.x(), friendsLocation.y() ));
38     setZValue(FRIEND_LOCATION_ICON_Z_LEVEL);
39     setOffset(-icon.width()/2, -icon.height()/2);
40 }
41
42 bool FriendLocationItem::isPartOfGroup() const
43 {
44     return m_partOfGroup;
45 }
46
47 void FriendLocationItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
48 {
49     qDebug() << __PRETTY_FUNCTION__;
50     Q_UNUSED(event);
51     qDebug() << "Friends Location is " << position().x() << "  " << position().y();
52     qDebug() << "Friends user ID is " << m_userId.toAscii();
53     emit iconClicked(m_userId);
54 }
55
56 void FriendLocationItem::setPartOfGroup(bool value)
57 {
58     m_partOfGroup = value;
59
60     if (value)
61         hide();
62     else
63         show();
64 }
65
66 QString FriendLocationItem::userId() const
67 {
68     qDebug() << __PRETTY_FUNCTION__;
69     return m_userId;
70 }
71
72 void FriendLocationItem::setUserId(const QString &userId)
73 {
74     qDebug() << __PRETTY_FUNCTION__;
75     m_userId = userId;
76 }
77
78 void FriendLocationItem::setProfileImageUrl(const QUrl &url)
79 {
80     qDebug() << __PRETTY_FUNCTION__;
81     m_profileImageUrl = url;
82 }
83
84 QUrl FriendLocationItem::profileImageUrl() const
85 {
86     qDebug() << __PRETTY_FUNCTION__;
87     return m_profileImageUrl;
88 }
89