Formatting API
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / accessibility-gesture-event.h
index 30a54f2..816059b 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTEGRAION_ACCESSIBILITY_GESTURE_STRUCTS_H
 
 /*
- * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -24,7 +24,6 @@
 
 namespace Dali
 {
-
 struct AccessibilityGestureEvent
 {
   // Construction & Destruction
@@ -60,12 +59,12 @@ struct AccessibilityGestureEvent
 
   enum State
   {
-    Clear,      ///< There is no state associated with this gesture. @SINCE_1_0.0
-    Started,    ///< The touched points on the screen have moved enough to be considered a gesture. @SINCE_1_0.0
-    Continuing, ///< The gesture is continuing. @SINCE_1_0.0
-    Finished,   ///< The user has lifted a finger or touched an additional point on the screen. @SINCE_1_0.0
-    Cancelled,  ///< The gesture has been cancelled. @SINCE_1_0.0
-    Possible    ///< A gesture is possible. @SINCE_1_0.0
+    CLEAR,      ///< There is no state associated with this gesture. @SINCE_1_9.28
+    STARTED,    ///< The touched points on the screen have moved enough to be considered a gesture. @SINCE_1_9.28
+    CONTINUING, ///< The gesture is continuing. @SINCE_1_9.28
+    FINISHED,   ///< The user has lifted a finger or touched an additional point on the screen. @SINCE_1_9.28
+    CANCELLED,  ///< The gesture has been cancelled. @SINCE_1_9.28
+    POSSIBLE    ///< A gesture is possible. @SINCE_1_9.28
   };
 
   State state;
@@ -77,11 +76,12 @@ struct AccessibilityGestureEvent
    * @param[in]  state  The state of the gesture
    */
   AccessibilityGestureEvent(AccessibilityGestureEvent::State state)
-  : timeDelta( 0 ),
-  numberOfTouches( 0 ),
-  state( state ),
-  time( 0 )
-  {}
+  : timeDelta(0),
+    numberOfTouches(0),
+    state(state),
+    time(0)
+  {
+  }
 };
 
 } // namespace Dali