[dali_2.3.20] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-selection-popup-property-handler.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_SELECTION_POPUP_PROPERTY_HANDLER_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_SELECTION_POPUP_PROPERTY_HANDLER_H
3
4 /*
5  * Copyright (c) 2022 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #include <dali-toolkit/internal/controls/text-controls/text-selection-popup-impl.h>
21
22 namespace Dali::Toolkit::Internal
23 {
24 /**
25  * Class to manage properties for the TextSelectionPopup
26  */
27 struct TextSelectionPopup::PropertyHandler
28 {
29   /**
30    * Set properties on the text selection popup
31    *
32    * @param[in] selectionPopup The handle for the text selection popup
33    * @param[in] index The property index of the property to set
34    * @param[in] value The value to set
35    */
36   static void SetProperty(Toolkit::TextSelectionPopup selectionPopup, Property::Index index, const Property::Value& value);
37
38   /**
39    * Get properties from the text selection popup
40    *
41    * @param[in] selectionPopup The handle for the text selection popup
42    * @param[in] index The property index of the property to set
43    * @return the value
44    */
45   static Property::Value GetProperty(Toolkit::TextSelectionPopup selectionPopup, Property::Index index);
46 };
47
48 } // namespace Dali::Toolkit::Internal
49
50 #endif //DALI_TOOLKIT_INTERNAL_TEXT_SELECTION_POPUP_PROPERTY_HANDLER_H