Sorted src.pro file, added new signals/slots for showing/opening panels/tabs
[situare] / src / ui / friendlistpanel.h
index 54b7164..5b7f3bc 100644 (file)
@@ -1,9 +1,10 @@
- /*
+/*
     Situare - A location system for Facebook
     Copyright (C) 2010  Ixonos Plc. Authors:
 
         Kaj Wallin - kaj.wallin@ixonos.com
         Henri Lampela - henri.lampela@ixonos.com
+        Pekka Nissinen - pekka.nissinen@ixonos.com
 
     Situare is free software; you can redistribute it and/or
     modify it under the terms of the GNU General Public License
     along with Situare; if not, write to the Free Software
     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
     USA.
- */
+*/
 
 #ifndef FRIENDLISTPANEL_H
 #define FRIENDLISTPANEL_H
 
-#include <QtGui>
+#include <QWidget>
 
 class QLabel;
-class QWidget;
+class QPushButton;
 
 class FriendListItemDelegate;
 class GeoCoordinate;
@@ -34,21 +35,22 @@ class ListView;
 class User;
 
 /**
-* @brief Class for sliding friends list panel
-*
-* @author Kaj Wallin - kaj.wallin (at) ixonos.com
-* @class FriendListPanel friendlistpanel.h "ui/friendlistpanel.h"
-*/
+ * @brief Class for sliding friends list panel
+ *
+ * @author Kaj Wallin - kaj.wallin (at) ixonos.com
+ * @author Henri Lampela - henri.lampela (at) ixonos.com
+ * @author Pekka Nissinen - pekka.nissinen (at) ixonos.com
+ */
 class FriendListPanel : public QWidget
 {
     Q_OBJECT
 
 public:
     /**
-    * @brief Default constructor
-    *
-    * @param parent
-    */
+     * @brief Default constructor
+     *
+     * @param parent
+     */
     FriendListPanel(QWidget *parent = 0);
 
 /*******************************************************************************
@@ -56,31 +58,31 @@ public:
  ******************************************************************************/
 public slots:
     /**
-    * @brief Slot to update friend item's image
-    *
-    * @param user Friend
-    */
+     * @brief Slot to update friend item's image
+     *
+     * @param user Friend
+     */
     void friendImageReady(User *user);
 
     /**
-    * @brief Slot to refresh friends list
-    *
-    * @param friendList
-    */
+     * @brief Slot to refresh friends list
+     *
+     * @param friendList
+     */
     void friendInfoReceived(QList<User *> &friendList);
 
 private slots:
     /**
-    * @brief Slot to clear friend list filter.
-    */
+     * @brief Slot to clear friend list filter
+     */
     void clearFriendListFilter();
 
     /**
-    * @brief Slot to show friends in list.
-    *
-    * Shows only friends that are on userIDs list.
-    * @param userIDs list of user ID's
-    */
+     * @brief Slot to show friends in list
+     *
+     * Shows only friends that are on userIDs list
+     * @param userIDs list of user ID's
+     */
     void showFriendsInList(const QList<QString> &userIDs);
 
 /*******************************************************************************
@@ -88,21 +90,31 @@ private slots:
  ******************************************************************************/
 signals:
     /**
-    * @brief Signal for friend finding.
-    *
-    * @param coordinates Target coordinate
-    */
+     * @brief Signal for friend finding
+     *
+     * @param coordinates Target coordinate
+     */
     void findFriend(const GeoCoordinate &coordinates);
 
+    /**
+     * @brief Signal for requesting a panel to be opened
+     *
+     * @param widget Pointer to the widget that emitted the signal
+     */
+    void showPanelRequested(QWidget *widget);
+
 /*******************************************************************************
  * DATA MEMBERS
  ******************************************************************************/
 private:
-    QWidget *m_friendListHeaderWidget;  ///< Friend list header widget
     QLabel *m_friendListLabel;          ///< Friend list label
+
     QPushButton *m_clearFilterButton;   ///< Button to clear list filtering
-    ListView *m_friendListView;         ///< Friend list view
+
+    QWidget *m_friendListHeaderWidget;  ///< Friend list header widget
+
     FriendListItemDelegate *m_friendListItemDelegate;   ///< Friend list item delegate
+    ListView *m_friendListView;                         ///< Friend list view
 };
 
 #endif // FRIENDLISTPANEL_H