First phase of userdata rewrite
[situare] / src / ui / friendlistpanel.h
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@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 #ifndef FRIENDLISTPANEL_H
23 #define FRIENDLISTPANEL_H
24
25 #include <QtGui>
26
27 #include "sidepanel.h"
28
29 class FriendListView;
30 class User;
31 class QLabel;
32 class QWidget;
33
34 /**
35 * @brief Class for sliding friends list panel
36 *
37 * @author Kaj Wallin - kaj.wallin (at) ixonos.com
38 * @class FriendListPanel friendlistpanel.h "ui/friendlistpanel.h"
39 */
40 class FriendListPanel : public SidePanel
41 {
42     Q_OBJECT
43
44 public:
45     /**
46     * @brief Default constructor
47     *
48     * @param parent
49     */
50     FriendListPanel(QWidget *parent = 0);
51
52 /*******************************************************************************
53  * MEMBER FUNCTIONS AND SLOTS
54  ******************************************************************************/
55 public slots:
56     /**
57     * @brief Slot to refresh friends list
58     *
59     * @param friendList
60     */
61     void friendInfoReceived(QList<User *> &friendList);
62
63     void friendImageReady(User *user);
64
65 private slots:
66     /**
67     * @brief Slot to clear friend list filter.
68     */
69     void clearFriendListFilter();
70
71     /**
72     * @brief Slot to show friends in list.
73     *
74     * Shows only friends that are on userIDs list.
75     * @param userIDs list of user ID's
76     */
77     void showFriendsInList(const QList<QString> &userIDs);
78
79 /*******************************************************************************
80  * SIGNALS
81  ******************************************************************************/
82 signals:
83     /**
84     * @brief Signal for friend finding.
85     *
86     * @param coordinates longitude and latitude values
87     */
88     void findFriend(const QPointF &coordinates);
89
90 /*******************************************************************************
91  * DATA MEMBERS
92  ******************************************************************************/
93 private:
94     QWidget *m_friendListHeaderWidget;  ///< Friend list header widget
95     QLabel *m_friendListLabel;          ///< Friend list label
96     QPushButton *m_clearFilterButton;   ///< Button to clear list filtering
97     FriendListView *m_friendListView;   ///< Friend list view
98 };
99
100 #endif // FRIENDLISTPANEL_H