X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Fcontrol-devel.h;h=b6ddd7ea932f619b93a59063a6d1195003c9cc5a;hp=71071dbc7665c907e67f083e4e3dd4054c488944;hb=190a30974e11c5792335e3b0493bf1c212beec6a;hpb=d13e8792c0e8dd0a3f5fb167ca9ee7c0155b7afc diff --git a/dali-toolkit/devel-api/controls/control-devel.h b/dali-toolkit/devel-api/controls/control-devel.h index 71071db..b6ddd7e 100644 --- a/dali-toolkit/devel-api/controls/control-devel.h +++ b/dali-toolkit/devel-api/controls/control-devel.h @@ -30,6 +30,13 @@ namespace Toolkit namespace DevelControl { +enum State +{ + NORMAL, + FOCUSED, + DISABLED +}; + namespace Property { @@ -53,6 +60,50 @@ enum * @see Toolkit::Tooltip */ TOOLTIP = BACKGROUND + 1, + + /** + * @brief The current state of the control. + * @details Name "state", type DevelControl::State ( Property::INTEGER ) or Property::STRING + * + * @see DevelControl::State + */ + STATE = BACKGROUND + 2, + + /** + * @brief The current sub state of the control. + * @details Name "subState", type Property::INTEGER or Property::STRING. The enumeration used is dependent on the derived control. + * + * @see DevelControl::State + */ + SUB_STATE = BACKGROUND + 3, + + /** + * @brief The actor ID of the left focusable control. + * @details Name "leftFocusableActorId", type Property::INTEGER. + * + */ + LEFT_FOCUSABLE_ACTOR_ID = BACKGROUND + 4, + + /** + * @brief The actor ID of the right focusable control. + * @details Name "rightFocusableActorId", type Property::INTEGER. + * + */ + RIGHT_FOCUSABLE_ACTOR_ID = BACKGROUND + 5, + + /** + * @brief The actor ID of the up focusable control. + * @details Name "upFocusableActorId", type Property::INTEGER. + * + */ + UP_FOCUSABLE_ACTOR_ID = BACKGROUND + 6, + + /** + * @brief The actor ID of the down focusable control. + * @details Name "downFocusableActorId", type Property::INTEGER. + * + */ + DOWN_FOCUSABLE_ACTOR_ID = BACKGROUND + 7 }; } // namespace Property