Reviewed by: Kaj Wallin
[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
32 {
33     qDebug() << __PRETTY_FUNCTION__;
34
35     setPixmap(icon);
36     setPosition(QPointF( friendsLocation.x(), friendsLocation.y() ));
37     setZValue(FRIEND_LOCATION_ICON_Z_LEVEL);
38     setOffset(-icon.width()/2, -icon.height()/2);
39     setFlag(QGraphicsItem::ItemIgnoresTransformations);       
40 }
41
42
43 void FriendLocationItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
44 {
45     qDebug() << __PRETTY_FUNCTION__;
46     Q_UNUSED(event);
47     qDebug() << "Friends Location is " << position().x() << "  " << position().y();
48     qDebug() << "Friends user ID is " << m_userId.toAscii();
49     emit iconClicked(m_userId);
50 }
51
52 QString FriendLocationItem::userId() const
53 {
54     qDebug() << __PRETTY_FUNCTION__;
55     return m_userId;
56 }
57
58 void FriendLocationItem::setUserId(const QString &userId)
59 {
60     qDebug() << __PRETTY_FUNCTION__;
61     m_userId = userId;
62 }
63
64 void FriendLocationItem::setProfileImageUrl(const QUrl &url)
65 {
66     qDebug() << __PRETTY_FUNCTION__;
67     m_profileImageUrl = url;
68 }
69
70 QUrl FriendLocationItem::profileImageUrl() const
71 {
72     qDebug() << __PRETTY_FUNCTION__;
73     return m_profileImageUrl;
74 }
75