Minor cosmetic and other kind of changes to UserInfoPanel & FriendListPanel classes
[situare] / src / ui / userinfopanel.h
index 84f7440..ed4367f 100644 (file)
@@ -4,6 +4,7 @@
 
         Kaj Wallin - kaj.wallin@ixonos.com
         Katri Kaikkonen - katri.kaikkonen@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
 class UserInfo;
 
 /**
-* @brief Class for sliding user information panel
-*
-* @author Kaj Wallin - kaj.wallin (at) ixonos.com
-* @class UserInfoPanel
-*/
+ * @brief Class for sliding user information panel
+ *
+ * @author Kaj Wallin - kaj.wallin (at) ixonos.com
+ * @author Katri Kaikkonen - katri.kaikkonen (at) ixonos.com
+ * @author Pekka Nissinen - pekka.nissinen (at) ixonos.com
+ *
+ * @class UserInfoPanel
+ */
 class UserInfoPanel : public QWidget
 {
     Q_OBJECT
 
 public:
     /**
-    * @brief Default constructor
-    *
-    * @param parent
-    */
+     * @brief Default constructor
+     *
+     * @param parent
+     */
     UserInfoPanel(QWidget *parent = 0);
 
 /*******************************************************************************
@@ -52,10 +56,10 @@ public:
  ******************************************************************************/
 public slots:
     /**
-    * @brief Slot to capture returning user data from situareService
-    *
-    * @param user
-    */
+     * @brief Slot to capture returning user data from situareService
+     *
+     * @param user
+     */
     void userDataReceived(User *user);
 
 /*******************************************************************************
@@ -63,53 +67,52 @@ public slots:
  ******************************************************************************/
 signals:
     /**
-    * @brief Signal for finding user.
-    *
-    * @param coordinates user geo coordinates
-    */
+     * @brief Signal for finding user.
+     *
+     * @param coordinates user geo coordinates
+     */
     void findUser(const GeoCoordinate &coordinates);
 
     /**
-    * @brief Signal that used to inform user that his message/location update tp Situare server
-    *        was failed.
-    *        This signal is originally sended from UserInfo
-    * @param message message for notification
-    * @param modal true if modal notification otherwice false
-    */
+     * @brief Signal that used to inform user that his message/location update tp Situare server
+     *        was failed.
+     *        This signal is originally sended from UserInfo
+     *
+     * @param message message for notification
+     * @param modal true if modal notification otherwice false
+     */
     void notificateUpdateFailing(const QString &message, bool modal);
 
     /**
-    * @brief Signal for refreshing user data.
-    *
-    */
+     * @brief Signal for refreshing user data.
+     */
     void refreshUserData();
 
     /**
-    * @brief Signal for requesting reverseGeo from SituareEngine
-    *
-    */
+     * @brief Signal for requesting reverseGeo from SituareEngine
+     */
     void requestReverseGeo();
 
     /**
-    * @brief Signals, when address data is ready
-    *
-    * @param address Street address
-    */
+     * @brief Signals, when address data is ready
+     *
+     * @param address Street address
+     */
     void reverseGeoReady(const QString &address);
 
     /**
-    * @brief Signal Signal for requestLocationUpdate from SituareEngine via MainWindow class
-    *
-    * @param status Status message
-    * @param publish Publish on Facebook
-    */
+     * @brief Signal Signal for requestLocationUpdate from SituareEngine via MainWindow class
+     *
+     * @param status Status message
+     * @param publish Publish on Facebook
+     */
     void statusUpdate(const QString &status, const bool &publish);
 
     /**
-    * @brief Signals when updateLocationDialog's data must be cleared
-    *
-    */
+     * @brief Signals when updateLocationDialog's data must be cleared
+     */
     void clearUpdateLocationDialogData();
+
 /*******************************************************************************
  * DATA MEMBERS
  ******************************************************************************/