X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fdevel-api%2Fcontrols%2Fcontrol-devel.h;h=fe95c7095da5627df77a41b5f7e9986c151ee2aa;hb=HEAD;hp=3a94e1b6c58e2a64e30db035c114e9d050d3e7b3;hpb=c9838bbf5eb41f8475bcef2198b338f7020b0397;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/devel-api/controls/control-devel.h b/dali-toolkit/devel-api/controls/control-devel.h index 3a94e1b..3fe85d9 100644 --- a/dali-toolkit/devel-api/controls/control-devel.h +++ b/dali-toolkit/devel-api/controls/control-devel.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_CONTROL_DEVEL_H /* - * Copyright (c) 2021 Samsung Electronics Co., Ltd. + * Copyright (c) 2024 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. @@ -68,6 +68,9 @@ typedef Signal AccessibilityGetDescriptionSignalType; /// @brief AccessibilityDoGesture signal type. typedef Signal&)> AccessibilityDoGestureSignalType; +/// @brief AccessibilityAction signal type. +typedef Signal AccessibilityActionSignalType; + enum State { NORMAL, @@ -161,7 +164,7 @@ enum ACCESSIBILITY_DESCRIPTION, /** - * @brief Current translation domain for accessibility clients. + * @brief Deprecated. Current translation domain for accessibility clients. * @details Name "accessibilityTranslationDomain", type Property::STRING. */ ACCESSIBILITY_TRANSLATION_DOMAIN, @@ -169,9 +172,8 @@ enum /** * @brief Role being performed in accessibility hierarchy. * @details Name "accessibilityRole", type Property::INTEGER. - * @note Property is stored as INTEGER, however its interpretaton - * depend on enumeration Dali::Accessibility::Role and should be read and written - * with usage of enumerated values. + * @note It gets integer value of AccessibilityRole enum then interprets to Dali::Accessibility::Role when requested by AT-SPI. + * Note that setting Dali::Accessibility::Role value is still accepted for backward compatibility but not preferred. * @see Dali::Accessibility::Role */ ACCESSIBILITY_ROLE, @@ -223,6 +225,30 @@ enum * It will also appear in the AT-SPI tree under the key "automationId". */ AUTOMATION_ID, + + /** + * @brief The accessibility value represented by the control. For example, "60%" for a slider object. + * @details Name "accessibilityValue", type Property::STRING. + */ + ACCESSIBILITY_VALUE, + + /** + * @brief Indicates the accessibility services treat the control as scrollable. + * @details Name "accessibilityScrollable", type Property::BOOLEAN. + */ + ACCESSIBILITY_SCROLLABLE, + + /** + * @brief Bitset integer of AccessibilityState which describes the current state of a control. + * @details Name "accessibilityStates", type Property::INTEGER. + */ + ACCESSIBILITY_STATES, + + /** + * @brief Indicates the accessibility services treat the controla as modal. + * @details Name "accessibilityIsModal", type Property::BOOLEAN. + */ + ACCESSIBILITY_IS_MODAL, }; } // namespace Property @@ -236,8 +262,7 @@ enum * * @note Derived class should not call visual.SetOnScene(actor). It is the responsibility of the base class to connect/disconnect registered visual to stage. * Use below API with enabled set to false if derived class wishes to control when visual is staged. - * @note If the depth-index is not set on the visual, then it is set to be above the currently registered visuals. - * @note If replacing a visual, then the depth-index of the visual being replaced is used for the visual. + * @note depth-index be used to Dali::Toolkit::DepthIndex::Ranges::AUTO_INDEX. */ DALI_TOOLKIT_API void RegisterVisual(Internal::Control& control, Dali::Property::Index index, Toolkit::Visual::Base& visual); @@ -247,7 +272,9 @@ DALI_TOOLKIT_API void RegisterVisual(Internal::Control& control, Dali::Property: * @param[in] control The control * @param[in] index The Property index of the visual, used to reference visual * @param[in] visual The visual to register - * @param[in] depthIndex The visual's depth-index is set to this + * @param[in] depthIndex The visual's depth-index is set to this. If the depth-index is set to DepthIndex::Ranges::AUTO_INDEX, + * the actual depth-index of visual will be determind automatically (Use previous visuals depth-index, or placed on top of all other visuals.) + * Otherwise, the visual's depth-index is set to clamped value, between DepthIndex::Ranges::MINIMUM_DEPTH_INDEX and DepthIndex::Ranges::MAXIMUM_DEPTH_INDEX. * * @note Derived class should not call visual.SetOnScene(actor). It is the responsibility of the base class to connect/disconnect registered visual to stage. * Use below API with enabled set to false if derived class wishes to control when visual is staged. @@ -265,8 +292,7 @@ DALI_TOOLKIT_API void RegisterVisual(Internal::Control& control, Dali::Property: * @param[in] visual The visual to register * @param[in] enabled false if derived class wants to control when visual is set on stage. * - * @note If the depth-index is not set on the visual, then it is set to be above the currently registered visuals. - * @note If replacing a visual, then the depth-index of the visual being replaced is used for the visual. + * @note depth-index be used to Dali::Toolkit::DepthIndex::Ranges::AUTO_INDEX. * * @see EnableVisual() */ @@ -279,7 +305,9 @@ DALI_TOOLKIT_API void RegisterVisual(Internal::Control& control, Dali::Property: * @param[in] index The Property index of the visual, used to reference visual * @param[in] visual The visual to register * @param[in] enabled false if derived class wants to control when visual is set on stage. - * @param[in] depthIndex The visual's depth-index is set to this + * @param[in] depthIndex The visual's depth-index is set to this. If the depth-index is set to DepthIndex::Ranges::AUTO_INDEX, + * the actual depth-index of visual will be determind automatically (Use previous visuals depth-index, or placed on top of all other visuals.) + * Otherwise, the visual's depth-index is set to clamped value, between DepthIndex::Ranges::MINIMUM_DEPTH_INDEX and DepthIndex::Ranges::MAXIMUM_DEPTH_INDEX. * * @see EnableVisual() * @see Visual::Base::GetDepthIndex() @@ -368,6 +396,18 @@ DALI_TOOLKIT_API Dali::Animation CreateTransition(Internal::Control& DALI_TOOLKIT_API void DoAction(Control& control, Dali::Property::Index visualIndex, Dali::Property::Index actionId, const Dali::Property::Value attributes); /** + * @brief Perform an action on a visual registered to this control. + * + * Visuals will have actions, this API is used to perform one of these actions with the given attributes. + * + * @param[in] control The control. + * @param[in] visualIndex The Property index of the visual. + * @param[in] actionId The action to perform. See Visual to find supported actions. + * @param[in] attributes Optional attributes for the action. + */ +DALI_TOOLKIT_API void DoActionExtension(Control& control, Dali::Property::Index visualIndex, Dali::Property::Index actionId, Dali::Any attributes); + +/** * @brief Set input method context. * * @param[in] control The control. @@ -478,6 +518,12 @@ DALI_TOOLKIT_API AccessibilityGetDescriptionSignalType& AccessibilityGetDescript DALI_TOOLKIT_API AccessibilityDoGestureSignalType& AccessibilityDoGestureSignal(Toolkit::Control control); /** + * @brief The signal is emitted when accessibility client call "DoAction" or "DoActionName" method via IPC mechanism. + * @return The signal to connect to + */ +DALI_TOOLKIT_API AccessibilityActionSignalType& AccessibilityActionSignal(Toolkit::Control control); + +/** * @brief The method allows connection with other actor with usage of concrete accessibility relation type. * * @param control object to append attribute to @@ -585,6 +631,40 @@ DALI_TOOLKIT_API Dali::Accessibility::States GetAccessibilityStates(Toolkit::Con */ DALI_TOOLKIT_API void NotifyAccessibilityStateChange(Toolkit::Control control, Dali::Accessibility::States states, bool recurse); +/** + * @brief The method to get the control's accessibility created or not. + * + * @param[in] control object to append attribute to + * @return True if accessible were created. False otherwise. + */ +DALI_TOOLKIT_API bool IsAccessibleCreated(Toolkit::Control control); + +/** + * @brief The method to set creatable of control's accessibility. + * @note This method doesn't remove that already created accessible. + * + * @param[in] control object to append attribute to + * @param[in] enable True if we allow to create accessible. False otherwise. + */ +DALI_TOOLKIT_API void EnableCreateAccessible(Toolkit::Control control, bool enable); + +/** + * @brief The method to get creatable of control's accessibility. + * + * @param[in] control object to append attribute to + * @return True if we allow to create accessible. False otherwise. + */ +DALI_TOOLKIT_API bool IsCreateAccessibleEnabled(Toolkit::Control control); + +/** + * @brief The method to emit accessibility state-changed event to accessibility clients + * + * @param actor The actor that has accessibility state change. + * @param state The accessibility state. + * @param newValue new value to set. + */ +DALI_TOOLKIT_API void EmitAccessibilityStateChanged(Dali::Actor actor, Dali::Accessibility::State state, int newValue); + } // namespace DevelControl } // namespace Toolkit