Formatted API
[platform/core/uifw/dali-core.git] / dali / public-api / events / point-state.h
index b970c5e..7abad8a 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_POINT_STATE_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.
@@ -31,25 +31,24 @@ namespace Dali
  */
 namespace PointState
 {
-
 /**
  * @brief Enumeration for point state type.
  * @SINCE_1_1.37
  */
 enum Type
 {
-  STARTED,        /**< Touch or hover started */
-  FINISHED,       /**< Touch or hover finished */
-  DOWN = STARTED, /**< Screen touched */
-  UP = FINISHED,  /**< Touch stopped */
-  MOTION,         /**< Finger dragged or hovered */
-  LEAVE,          /**< Leave the boundary of an actor */
-  STATIONARY,     /**< No change from last event. Useful when a multi-point event occurs where
+  STARTED,         /**< Touch or hover started */
+  FINISHED,        /**< Touch or hover finished */
+  DOWN = STARTED,  /**< Screen touched */
+  UP   = FINISHED, /**< Touch stopped */
+  MOTION,          /**< Finger dragged or hovered */
+  LEAVE,           /**< Leave the boundary of an actor */
+  STATIONARY,      /**< No change from last event. Useful when a multi-point event occurs where
                        all points are sent but indicates that this particular point has not changed
                        since the last time */
-  INTERRUPTED,    /**< A system event has occurred which has interrupted the touch or hover event sequence. */
+  INTERRUPTED,     /**< A system event has occurred which has interrupted the touch or hover event sequence. */
 };
-}
+} // namespace PointState
 
 /**
  * @}