Tuning the ListItemContextButtonBar look
[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         Sami Rämö - sami.ramo@ixonos.com
9
10     Situare is free software; you can redistribute it and/or
11     modify it under the terms of the GNU General Public License
12     version 2 as published by the Free Software Foundation.
13
14     Situare is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License
20     along with Situare; if not, write to the Free Software
21     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
22     USA.
23 */
24
25 #include <QApplication>
26 #include <QHBoxLayout>
27 #include <QLabel>
28 #include <QLineEdit>
29 #include <QPushButton>
30
31 #include "coordinates/geocoordinate.h"
32 #include "friendlistitem.h"
33 #include "friendlistitemdelegate.h"
34 #include "friendlistview.h"
35 #include "imagebutton.h"
36 #include "panelcommon.h"
37 #include "user/user.h"
38
39 #include "friendlistpanel.h"
40
41 FriendListPanel::FriendListPanel(QWidget *parent)
42     : PanelBase(parent),
43       m_mainWindowIsTopmost(false),
44       m_somePanelIsOpen(false)
45 {
46     qDebug() << __PRETTY_FUNCTION__;
47
48     const int FRIENDPANEL_FILTER_MARGIN_LEFT = PANEL_MARGIN_LEFT + 4;
49     const int FRIENDPANEL_FILTER_MARGIN_TOP = 0;
50     const int FRIENDPANEL_FILTER_MARGIN_RIGHT = PANEL_MARGIN_RIGHT + MAEMO5_SCROLLBAR_WIDTH + 4;
51     const int FRIENDPANEL_FILTER_MARGIN_BOTTOM = 0;
52
53     // --- HEADER, HOW MANY FRIENDS ARE SELECTED ---
54     m_headerWidget = new QWidget();
55
56     m_headerWidget->hide();
57     m_headerWidget->setAutoFillBackground(true);
58
59     QPalette headerPalette = m_headerWidget->palette();
60     headerPalette.setColor(QPalette::Background, Qt::black);
61     m_headerWidget->setPalette(headerPalette);
62
63     QHBoxLayout *headerLayout = new QHBoxLayout();
64     m_headerWidget->setLayout(headerLayout);
65     headerLayout->setContentsMargins(FRIENDPANEL_FILTER_MARGIN_LEFT,
66                                      FRIENDPANEL_FILTER_MARGIN_TOP,
67                                      FRIENDPANEL_FILTER_MARGIN_RIGHT,
68                                      FRIENDPANEL_FILTER_MARGIN_BOTTOM);
69
70     m_headerLabel = new QLabel(this);
71     headerLayout->addWidget(m_headerLabel, 0, Qt::AlignCenter);
72
73     // --- FRIEND LIST ---
74     m_friendListView = new FriendListView(this);
75     m_friendListView->setItemDelegate(new FriendListItemDelegate(this));
76
77     QVBoxLayout *listViewLayout = new QVBoxLayout;
78     listViewLayout->setContentsMargins(PANEL_MARGIN_LEFT, PANEL_MARGIN_TOP,
79                                        PANEL_MARGIN_RIGHT, PANEL_MARGIN_BOTTOM);
80     listViewLayout->addWidget(m_friendListView);
81
82     connect(m_friendListView, SIGNAL(friendItemClicked(GeoCoordinate)),
83             this, SIGNAL(findFriend(GeoCoordinate)));
84
85     connect(m_friendListView, SIGNAL(listItemSelectionChanged()),
86             this, SLOT(setRouteButtonDisabled()));
87
88     connect(m_friendListView, SIGNAL(listItemSelectionChanged()),
89             this, SLOT(onListItemSelectionChanged()));
90
91     // --- FOOTER, TEXT BASED FILTERING ---
92     QHBoxLayout *footerLayout = new QHBoxLayout();
93
94     m_filterField = new QLineEdit;
95     footerLayout->addWidget(m_filterField);
96
97     connect(m_filterField, SIGNAL(returnPressed()),
98             this, SLOT(clearTextFiltering()));
99
100     connect(m_filterField, SIGNAL(textChanged(QString)),
101             this, SLOT(filterTextChanged(QString)));
102
103     m_clearTextFilteringButton = new QPushButton();
104     footerLayout->addWidget(m_clearTextFilteringButton);
105     m_clearTextFilteringButton->setIcon(QIcon::fromTheme(QLatin1String("general_close")));
106
107     connect(m_clearTextFilteringButton, SIGNAL(clicked()),
108             this, SLOT(clearTextFiltering()));
109
110     connect(qApp, SIGNAL(topmostWindowChanged(bool)),
111             this, SLOT(topmostWindowChanged(bool)));
112
113     // --- MAIN LAYOUT ---
114     QVBoxLayout *friendListPanelLayout = new QVBoxLayout();
115     friendListPanelLayout->setMargin(0);
116     friendListPanelLayout->setSpacing(0);
117     setLayout(friendListPanelLayout);
118
119     friendListPanelLayout->addWidget(m_headerWidget);
120     friendListPanelLayout->addLayout(listViewLayout);
121     friendListPanelLayout->addLayout(footerLayout);
122
123     // --- CONTEXT BUTTONS ---
124     m_routeButton = new ImageButton(":res/images/route_to_friend.png",
125                                     ":res/images/route_to_friend_s.png",
126                                     ":res/images/route_to_friend_d.png", this);
127     m_routeButton->setDisabled(true);
128     connect(m_routeButton, SIGNAL(clicked()),
129             this, SLOT(routeToSelectedFriend()));
130
131     m_clearGroupFilteringButton = new ImageButton(":res/images/filtered.png",
132                                                   ":res/images/filtered_s.png",
133                                                   ":res/images/filtered_d.png", this);
134     m_clearGroupFilteringButton->setCheckable(true);
135     m_clearGroupFilteringButton->setDisabled(true);
136     connect(m_clearGroupFilteringButton, SIGNAL(clicked()),
137             this, SLOT(clearFiltering()));
138
139     m_itemButtonsLayout->addWidget(m_routeButton);
140     m_genericButtonsLayout->addWidget(m_clearGroupFilteringButton);
141 }
142
143 void FriendListPanel::anyPanelClosed()
144 {
145     qDebug() << __PRETTY_FUNCTION__;
146
147     m_somePanelIsOpen = false;
148     updateKeyboardGrabbing();
149
150     clearFiltering();
151
152     m_friendListView->clearItemSelection();
153     setRouteButtonDisabled();
154 }
155
156 void FriendListPanel::anyPanelOpened()
157 {
158     qDebug() << __PRETTY_FUNCTION__;
159
160     m_somePanelIsOpen = true;
161     updateKeyboardGrabbing();
162 }
163
164 void FriendListPanel::clearFiltering()
165 {
166     qDebug() << __PRETTY_FUNCTION__;
167
168     m_headerWidget->hide();
169     m_clearGroupFilteringButton->setChecked(false);
170     m_clearGroupFilteringButton->setDisabled(true);
171     m_friendListView->clearFilter();
172     clearTextFiltering();
173 }
174
175 void FriendListPanel::clearTextFiltering()
176 {
177     qDebug() << __PRETTY_FUNCTION__;
178
179     // clearing the filtering text field does cause also hiding the filtering layout
180     m_filterField->clear();
181 }
182
183 void FriendListPanel::filterTextChanged(const QString &text)
184 {
185     qDebug() << __PRETTY_FUNCTION__;
186
187     if (m_filterField->isHidden() && !text.isEmpty())
188         setFilteringLayoutVisibility(true);
189     else if (m_filterField->isVisible() && text.isEmpty())
190         setFilteringLayoutVisibility(false);
191
192     m_friendListView->filter(text);
193 }
194
195 void FriendListPanel::friendImageReady(User *user)
196 {
197     qDebug() << __PRETTY_FUNCTION__;
198
199     FriendListItem *item = static_cast<FriendListItem*>(m_friendListView->listItem(user->userId()));
200
201     if (item)
202         item->setAvatarImage(user->profileImage());
203 }
204
205 void FriendListPanel::friendInfoReceived(QList<User *> &friendList)
206 {
207     qDebug() << __PRETTY_FUNCTION__;
208
209     QStringList newUserIDs;
210
211     foreach (User *user, friendList) {
212         FriendListItem *item = 0;
213         if (!m_friendListView->contains(user->userId())) {
214             item = new FriendListItem();
215             item->setUserData(user);
216             m_friendListView->addListItem(user->userId(), item);
217         } else {
218             item = static_cast<FriendListItem *>(m_friendListView->takeListItemFromView(
219                     user->userId()));
220
221             if (item) {
222                 item->setUserData(user);
223                 m_friendListView->addListItemToView(item);
224             }
225         }
226
227         newUserIDs.append(user->userId());
228     }
229
230     m_friendListView->clearUnused(newUserIDs);
231 }
232
233 void FriendListPanel::hideEvent(QHideEvent *event)
234 {
235     qDebug() << __PRETTY_FUNCTION__;
236
237     QWidget::hideEvent(event);
238     updateKeyboardGrabbing();
239     clearFiltering();
240
241     m_friendListView->clearItemSelection();
242     setRouteButtonDisabled();
243 }
244
245 void FriendListPanel::routeToSelectedFriend()
246 {
247     qDebug() << __PRETTY_FUNCTION__;
248
249     FriendListItem *item = dynamic_cast<FriendListItem *>(m_friendListView->selectedItem());
250
251     if (item)
252         emit routeToFriend(item->coordinates());
253 }
254
255 void FriendListPanel::setFilteringLayoutVisibility(bool visible)
256 {
257     qDebug() << __PRETTY_FUNCTION__;
258
259     m_filterField->setVisible(visible);
260     m_clearTextFilteringButton->setVisible(visible);
261 }
262
263 void FriendListPanel::updateKeyboardGrabbing()
264 {
265     qDebug() << __PRETTY_FUNCTION__;
266
267     if (!m_mainWindowIsTopmost || !m_somePanelIsOpen || !isVisible()) {
268         if (QWidget::keyboardGrabber() == m_filterField)
269             m_filterField->releaseKeyboard();
270     } else if (m_mainWindowIsTopmost && m_somePanelIsOpen && isVisible()) {
271         if (QWidget::keyboardGrabber() != m_filterField)
272             m_filterField->grabKeyboard();
273     }
274 }
275
276 void FriendListPanel::setRouteButtonDisabled()
277 {
278     qDebug() << __PRETTY_FUNCTION__;
279
280     m_routeButton->setDisabled(m_friendListView->selectedItems().isEmpty());
281 }
282
283 void FriendListPanel::showEvent(QShowEvent *event)
284 {
285     qDebug() << __PRETTY_FUNCTION__;
286
287     QWidget::showEvent(event);
288     updateKeyboardGrabbing();
289     setFilteringLayoutVisibility(false);
290 }
291
292 void FriendListPanel::showFriendsInList(const QList<QString> &userIDs)
293 {
294     qDebug() << __PRETTY_FUNCTION__;
295
296     m_headerLabel->setText(tr("Selected: %1").arg(userIDs.count()));
297
298     m_headerWidget->show();
299     m_clearGroupFilteringButton->setDisabled(false);
300     m_clearGroupFilteringButton->setChecked(true);
301     m_friendListView->filter(userIDs);
302
303     clearTextFiltering();
304
305     emit openPanelRequested(this);
306 }
307
308 void FriendListPanel::topmostWindowChanged(bool mainWindowIsTopmost)
309 {
310     qDebug() << __PRETTY_FUNCTION__ << mainWindowIsTopmost;
311
312     m_mainWindowIsTopmost = mainWindowIsTopmost;
313     updateKeyboardGrabbing();
314 }