Added missing PanelTabBar to src.pro.
[situare] / src / ui / friendlistpanel.cpp
1 /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@ixonos.com
6         Henri Lampela - henri.lampela@ixonos.com
7         Pekka Nissinen - pekka.nissinen@ixonos.com
8
9     Situare is free software; you can redistribute it and/or
10     modify it under the terms of the GNU General Public License
11     version 2 as published by the Free Software Foundation.
12
13     Situare is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License
19     along with Situare; if not, write to the Free Software
20     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
21     USA.
22 */
23
24 #include <QHBoxLayout>
25 #include <QLabel>
26 #include <QPushButton>
27
28 #include "../user/user.h"
29 #include "coordinates/geocoordinate.h"
30 #include "friendlistitem.h"
31 #include "friendlistitemdelegate.h"
32 #include "friendlistview.h"
33 #include "panelcommon.h"
34
35 #include "friendlistpanel.h"
36
37 FriendListPanel::FriendListPanel(QWidget *parent)
38     : QWidget(parent)
39 {
40     qDebug() << __PRETTY_FUNCTION__;
41
42     QVBoxLayout *friendListPanelLayout = new QVBoxLayout();
43     friendListPanelLayout->setMargin(0);
44     friendListPanelLayout->setSpacing(0);
45     setLayout(friendListPanelLayout);
46
47     QHBoxLayout *filterLayout = new QHBoxLayout();
48     filterLayout->setContentsMargins(FRIENDPANEL_FILTER_MARGIN_LEFT, 0,
49                                      FRIENDPANEL_FILTER_MARGIN_RIGHT, 0);
50
51     m_friendListHeaderWidget = new QWidget();
52     m_friendListHeaderWidget->setLayout(filterLayout);
53     m_friendListHeaderWidget->setAutoFillBackground(true);
54
55     m_routeButton = new QPushButton(tr("Route to friend"));
56
57     QPalette labelPalette = m_friendListHeaderWidget->palette();
58     labelPalette.setColor(QPalette::Background, Qt::black);
59
60     m_friendListHeaderWidget->setPalette(labelPalette);
61     m_friendListHeaderWidget->hide();
62     m_friendListLabel = new QLabel(this);
63     m_clearFilterButton = new QPushButton(tr("Show all"));
64
65     filterLayout->addWidget(m_friendListLabel);
66     filterLayout->addWidget(m_clearFilterButton);
67
68     m_friendListView = new FriendListView(this);
69     m_friendListView->setItemDelegate(new FriendListItemDelegate(this));
70
71     QVBoxLayout *listViewLayout = new QVBoxLayout;
72     listViewLayout->setContentsMargins(PANEL_MARGIN_LEFT, 0, PANEL_MARGIN_RIGHT, 0);
73     listViewLayout->addWidget(m_friendListView);
74
75     friendListPanelLayout->addWidget(m_routeButton);
76     friendListPanelLayout->addWidget(m_friendListHeaderWidget);
77     friendListPanelLayout->addLayout(listViewLayout);
78
79     connect(m_friendListView, SIGNAL(friendItemClicked(GeoCoordinate)),
80             this, SIGNAL(findFriend(GeoCoordinate)));
81
82     connect(m_clearFilterButton, SIGNAL(clicked()),
83             this, SLOT(clearFriendListFilter()));
84
85     connect(m_routeButton, SIGNAL(clicked()),
86             this, SLOT(routeToSelectedFriend()));
87 }
88
89 void FriendListPanel::friendImageReady(User *user)
90 {
91     qDebug() << __PRETTY_FUNCTION__;
92
93     FriendListItem *item = static_cast<FriendListItem*>(m_friendListView->listItem(user->userId()));
94
95     if (item)
96         item->setAvatarImage(user->profileImage());
97 }
98
99 void FriendListPanel::friendInfoReceived(QList<User *> &friendList)
100 {
101     qDebug() << __PRETTY_FUNCTION__;
102
103     QStringList newUserIDs;
104
105     foreach (User *user, friendList) {
106         FriendListItem *item = 0;
107         if (!m_friendListView->contains(user->userId())) {
108             item = new FriendListItem();
109             item->setUserData(user);
110             m_friendListView->addListItem(user->userId(), item);
111         } else {
112             item = static_cast<FriendListItem *>(m_friendListView->takeListItemFromView(
113                     user->userId()));
114
115             if (item) {
116                 item->setUserData(user);
117                 m_friendListView->addListItemToView(item);
118             }
119         }
120
121         newUserIDs.append(user->userId());
122     }
123
124     m_friendListView->clearUnused(newUserIDs);
125 }
126
127 void FriendListPanel::clearFriendListFilter()
128 {
129     qDebug() << __PRETTY_FUNCTION__;
130
131     m_friendListHeaderWidget->hide();
132     m_friendListView->clearFilter();
133 }
134
135 void FriendListPanel::routeToSelectedFriend()
136 {
137     qDebug() << __PRETTY_FUNCTION__;
138
139     FriendListItem *item = dynamic_cast<FriendListItem *>(m_friendListView->selectedItem());
140
141     if (item)
142         emit routeToFriend(item->coordinates());
143 }
144
145 void FriendListPanel::showFriendsInList(const QList<QString> &userIDs)
146 {
147     qDebug() << __PRETTY_FUNCTION__;
148
149     m_friendListLabel->setText(tr("Selected: %1").arg(userIDs.count()));
150
151     m_friendListHeaderWidget->show();
152     m_friendListView->filter(userIDs);
153 }