backup
authorlampehe-local <henri.lampela@ixonos.com>
Tue, 29 Jun 2010 07:43:42 +0000 (10:43 +0300)
committerlampehe-local <henri.lampela@ixonos.com>
Tue, 29 Jun 2010 07:43:42 +0000 (10:43 +0300)
src/engine/engine.h
src/map/frienditemshandler.h
src/map/mapengine.cpp
src/map/mapengine.h
src/situareservice/situareservice.h
src/ui/friendlistpanel.cpp
src/ui/friendlistpanel.h
src/ui/mainwindow.h

index 763c69a..bf88208 100644 (file)
@@ -223,6 +223,11 @@ private slots:
     */
     void enableAutomaticLocationUpdate(bool enabled, int updateIntervalMsecs = 0);
 
+    /**
+    * @brief Slot to intercept signal when user's/friend's image is downloaded
+    *
+    * @param user Instance of user/friend
+    */
     void imageReady(User *user);
 
     /**
@@ -274,6 +279,11 @@ signals:
     */
     void friendsLocationsReady(QList<User *> &friendList);
 
+    /**
+    * @brief Signals when friend's image is ready
+    *
+    * @param user Instance of friend
+    */
     void friendImageReady(User *user);
 
     /**
index ef84121..ad7a133 100644 (file)
@@ -3,6 +3,7 @@
     Copyright (C) 2010  Ixonos Plc. Authors:
 
         Sami Rämö - sami.ramo@ixonos.com
+        Henri Lampela - henri.lampela@ixonos.com
 
     Situare is free software; you can redistribute it and/or
     modify it under the terms of the GNU General Public License
@@ -188,7 +189,13 @@ private:
 
 private slots:
 
+    /**
+    * @brief Slot updating friend item's profile image
+    *
+    * @param user Friend
+    */
     void friendImageReady(User *user);
+
     /**
     * @brief Slot for upgrading friend items and groups
     *
index 5bd236b..66fb041 100644 (file)
@@ -6,6 +6,7 @@
        Jussi Laitinen - jussi.laitinen@ixonos.com
        Pekka Nissinen - pekka.nissinen@ixonos.com
        Ville Tiensuu - ville.tiensuu@ixonos.com
+       Henri Lampela - henri.lampela@ixonos.com
 
    Situare is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
index 60e3357..8f676c9 100644 (file)
@@ -6,6 +6,7 @@
        Jussi Laitinen - jussi.laitinen@ixonos.com
        Pekka Nissinen - pekka.nissinen@ixonos.com
        Ville Tiensuu - ville.tiensuu@ixonos.com
+       Henri Lampela - henri.lampela@ixonos.com
 
    Situare is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
@@ -392,6 +393,11 @@ signals:
      */
     void fetchImage(int zoomLevel, int x, int y);
 
+    /**
+    * @brief Signal when friend image is ready
+    *
+    * @param user Friend
+    */
     void friendImageReady(User *user);
 
     /**
index 11ab781..cacea93 100644 (file)
@@ -201,6 +201,11 @@ signals:
     */
     void fetchImage(const QUrl &url);
 
+    /**
+    * @brief Signals when user's/friend's image is downloaded
+    *
+    * @param user Instance of user/friend
+    */
     void imageReady(User *user);
 
     /**
index 4831fce..6ce3037 100644 (file)
@@ -3,6 +3,7 @@
     Copyright (C) 2010  Ixonos Plc. Authors:
 
         Kaj Wallin - kaj.wallin@ixonos.com
+        Henri Lampela - henri.lampela@ixonos.com
 
     Situare is free software; you can redistribute it and/or
     modify it under the terms of the GNU General Public License
index e780eed..4411422 100644 (file)
@@ -3,6 +3,7 @@
     Copyright (C) 2010  Ixonos Plc. Authors:
 
         Kaj Wallin - kaj.wallin@ixonos.com
+        Henri Lampela - henri.lampela@ixonos.com
 
     Situare is free software; you can redistribute it and/or
     modify it under the terms of the GNU General Public License
@@ -60,6 +61,11 @@ public slots:
     */
     void friendInfoReceived(QList<User *> &friendList);
 
+    /**
+    * @brief Slot to update friend item's image
+    *
+    * @param user Friend
+    */
     void friendImageReady(User *user);
 
 private slots:
index c2ba90b..b2d005b 100644 (file)
@@ -443,6 +443,11 @@ signals:
     */
     void findUser(const QPointF &coordinates);
 
+    /**
+    * @brief Signals when friend's profile image is ready
+    *
+    * @param user Friend
+    */
     void friendImageReady(User *user);
 
     /**