bug fixing
[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     //Q_UNUSED(parent);
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     setFlag(QGraphicsItem::ItemIgnoresTransformations);       
41 }
42
43
44 void FriendLocationItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
45 {
46     qDebug() << __PRETTY_FUNCTION__;
47     Q_UNUSED(event);
48     qDebug() << "Friends Location is " << position().x() << "  " << position().y();
49     qDebug() << "Friends user ID is " << m_userId.toAscii();
50     emit iconClicked(m_userId);
51 }
52
53 QString FriendLocationItem::userId() const
54 {
55     return m_userId;
56 }
57
58 void FriendLocationItem::setUserId(const QString &userId)
59 {
60     m_userId = userId;
61 }