[4.0] Supports screen rotation.
[platform/core/uifw/dali-core.git] / dali / public-api / events / touch-event.h
index e7d9926..f24ceba 100644 (file)
@@ -30,7 +30,7 @@ namespace Dali
  */
 
 /**
- * @DEPRECATED_1_1.37 Use TouchEventHandle instead
+ * @DEPRECATED_1_1.37 Use TouchData instead
  *
  * @brief Touch events are a collection of touch points at a specific moment in time.
  *
@@ -44,25 +44,25 @@ struct DALI_IMPORT_API TouchEvent
 
   /**
    * @DEPRECATED_1_1.37
-   * @brief Default constructor
+   * @brief Default constructor.
    * @SINCE_1_0.0
    */
-  TouchEvent();
+  TouchEvent() DALI_DEPRECATED_API;
 
   /**
    * @DEPRECATED_1_1.37
-   * @brief Constructor
+   * @brief Constructor.
    * @SINCE_1_0.0
    * @param[in] time The time the event occurred
    */
-  TouchEvent(unsigned long time);
+  TouchEvent(unsigned long time) DALI_DEPRECATED_API;
 
   /**
    * @DEPRECATED_1_1.37
-   * @brief Destructor
+   * @brief Destructor.
    * @SINCE_1_0.0
    */
-  ~TouchEvent();
+  ~TouchEvent() DALI_DEPRECATED_API;
 
   // Data
 
@@ -88,9 +88,9 @@ struct DALI_IMPORT_API TouchEvent
    * @brief Returns the total number of points in this TouchEvent.
    *
    * @SINCE_1_0.0
-   * @return Total number of Points.
+   * @return Total number of Points
    */
-  unsigned int GetPointCount() const;
+  unsigned int GetPointCount() const DALI_DEPRECATED_API;
 
   /**
    * @DEPRECATED_1_1.37
@@ -99,12 +99,12 @@ struct DALI_IMPORT_API TouchEvent
    * The first point in the set is always the primary
    * touch point (i.e. the first point touched in a multi-touch event).
    * @SINCE_1_0.0
-   * @param[in] point The index of the required Point.
+   * @param[in] point The index of the required Point
    * @return Point requested
    * @note "point" should be less than the value returned by GetPointCount().
    *       If out of range, then program asserts.
    */
-  const TouchPoint& GetPoint(unsigned int point) const;
+  const TouchPoint& GetPoint(unsigned int point) const DALI_DEPRECATED_API;
 };
 
 /**