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=04e8205d8b68db08eddc476034b756f8076a350b;hp=9a9e27ee0d2cf1cc75fd4b15d6a9cc41362db7ca;hb=4d3140d11ea9df2cf933d32419f49fc5e63fa4a9;hpb=20b42a9bcaba6b874f2271f03a56da6f884c4053 diff --git a/dali-toolkit/devel-api/controls/control-devel.h b/dali-toolkit/devel-api/controls/control-devel.h index 9a9e27e..04e8205 100755 --- 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) 2018 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 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. @@ -23,7 +23,6 @@ // INTERNAL INCLUDES #include #include -#include namespace Dali { @@ -53,13 +52,13 @@ namespace Property enum { - STYLE_NAME = Control::Property::STYLE_NAME, - BACKGROUND_COLOR = Control::Property::BACKGROUND_COLOR, - BACKGROUND_IMAGE = Control::Property::BACKGROUND_IMAGE, - KEY_INPUT_FOCUS = Control::Property::KEY_INPUT_FOCUS, - BACKGROUND = Control::Property::BACKGROUND, - MARGIN = Control::Property::MARGIN, - PADDING = Control::Property::PADDING, + STYLE_NAME = Control::Property::STYLE_NAME, + RESERVED_PROPERTY_01 = Control::Property::RESERVED_PROPERTY_01, + RESERVED_PROPERTY_02 = Control::Property::RESERVED_PROPERTY_02, + KEY_INPUT_FOCUS = Control::Property::KEY_INPUT_FOCUS, + BACKGROUND = Control::Property::BACKGROUND, + MARGIN = Control::Property::MARGIN, + PADDING = Control::Property::PADDING, /** * @brief Displays a tooltip when the control is hovered over. @@ -116,7 +115,13 @@ enum * @details Name "downFocusableActorId", type Property::INTEGER. * */ - DOWN_FOCUSABLE_ACTOR_ID = PADDING + 7 + DOWN_FOCUSABLE_ACTOR_ID = PADDING + 7, + + /** + * @brief The shadow of the control. + * @details Name "shadow", type Property::MAP. + */ + SHADOW = PADDING + 8 }; } // namespace Property @@ -270,35 +275,21 @@ DALI_TOOLKIT_API void DoAction( Control& control, Dali::Property::Index visualIn */ DALI_TOOLKIT_API void SetInputMethodContext( Internal::Control& control, InputMethodContext& inputMethodContext ); -/* - * @brief Get the layout associated with this control, if any. - * - * @return A handle to the layout, or empty. - */ -DALI_TOOLKIT_API Toolkit::LayoutItem GetLayout( Internal::Control& control ); - -/* - * @brief Get the layout associated with a control, if any. - * - * @return A handle to the layout, or empty. - */ -DALI_TOOLKIT_API Toolkit::LayoutItem GetLayout( Control control ); - /** - * @brief Set the layout on this control. - * - * @param[in] control The internal Control to set the layout on - * @param[in] layout Pointer to the layout + * @brief Visual Event signal type */ -DALI_TOOLKIT_API void SetLayout( Internal::Control& control, Toolkit::LayoutItem layout ); +using VisualEventSignalType = Signal< void ( Control, Dali::Property::Index, Dali::Property::Index ) >; /** - * @brief Set the layout on a control. + * @brief This signal is emitted when a visual has an event to notify. * - * @param[in] control The Control to set the layout on - * @param[in] layout Pointer to the layout + * A callback of the following type may be connected: + * @code + * void YourCallbackName( Control control, Dali::Property::Index visualIndex, Dali::Property::Index signalId ); + * @endcode + * @return The signal to connect to */ -DALI_TOOLKIT_API void SetLayout( Control control, Toolkit::LayoutItem layout ); +DALI_TOOLKIT_API VisualEventSignalType& VisualEventSignal( Control control ); } // namespace DevelControl