X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Faccessibility.h;h=1f49d2bae8d568ca5833db23a35525347b588a70;hp=3196176e4aea7ec94497b79d94bd74407ebf9e44;hb=fc7b883f6198c5683f596b82a79d11d063eca361;hpb=75f0e39e093c5c26dc41e36d883a0327e834183b diff --git a/dali/devel-api/adaptor-framework/accessibility.h b/dali/devel-api/adaptor-framework/accessibility.h index 3196176..1f49d2b 100644 --- a/dali/devel-api/adaptor-framework/accessibility.h +++ b/dali/devel-api/adaptor-framework/accessibility.h @@ -42,13 +42,14 @@ namespace Dali namespace Accessibility { /** - * @brief Enumeration describing signal that occurs when object moves out of screen. + * @brief Enumeration describing type of object move relative to the screen. Only outgoing moves are signalled to AT-clients. */ -enum class MovedOutOfScreenType +enum class ScreenRelativeMoveType { - NONE, - TOP_LEFT, ///< Object moves out of top(or left) side of screen - BOTTOM_RIGHT ///< Object moves out of bottom(or right) side of screen + OUTSIDE = 0, ///< Object moves outside of the screen + OUTGOING_TOP_LEFT = 1, ///< Object moves out through the top(or left) side of the screen. Maps to: ATSPI_MOVE_OUTED_TOP_LEFT + OUTGOING_BOTTOM_RIGHT = 2, ///< Object moves out through the bottom(or right) side of the screen. Maps to: ATSPI_MOVE_OUTED_BOTTOM_RIGHT + INSIDE ///< Object moves into the screen or moves inside the screen }; /**