Added new scalable panels, deleted obsolite bitmaps and made some minor cosmetic...
[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 private slots:
64     /**
65     * @brief Slot to clear friend list filter.
66     */
67     void clearFriendListFilter();
68
69     /**
70     * @brief Slot to show friends in list.
71     *
72     * Shows only friends that are on userIDs list.
73     * @param userIDs list of user ID's
74     */
75     void showFriendsInList(const QList<QString> &userIDs);
76
77 /*******************************************************************************
78  * SIGNALS
79  ******************************************************************************/
80 signals:
81     /**
82     * @brief Signal for friend finding.
83     *
84     * @param coordinates longitude and latitude values
85     */
86     void findFriend(const QPointF &coordinates);
87
88 /*******************************************************************************
89  * DATA MEMBERS
90  ******************************************************************************/
91 private:
92     QWidget *m_friendListHeaderWidget;  ///< Friend list header widget
93     QLabel *m_friendListLabel;          ///< Friend list label
94     QPushButton *m_clearFilterButton;   ///< Button to clear list filtering
95     FriendListView *m_friendListView;   ///< Friend list view
96 };
97
98 #endif // FRIENDLISTPANEL_H