Merge "CanvasView: Do ApplyNativeFragmentShader for NativeImage buffer" into devel...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / text-controls / text-field-property-handler.h
1 #ifndef DALI_TOOLKIT_INTERNAL_TEXT_FIELD_PROPERTY_HANDLER_H
2 #define DALI_TOOLKIT_INTERNAL_TEXT_FIELD_PROPERTY_HANDLER_H
3
4 /*
5  * Copyright (c) 2021 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-field-impl.h>
21
22 namespace Dali::Toolkit::Internal
23 {
24 /**
25  * Class to manage properties for the TextField
26  */
27 struct TextField::PropertyHandler
28 {
29   static const char* const IMAGE_MAP_FILENAME_STRING; //<<< "filename" key for image map
30
31   /**
32    * Set properties on the text field / controller / decorator
33    *
34    * @param[in] textField The handle for the text field
35    * @param[in] index The property index of the property to set
36    * @param[in] value The value to set
37    */
38   static void SetProperty(Toolkit::TextField textField, Property::Index index, const Property::Value& value);
39
40   /**
41    * Get properties from the text field / controller / decorator
42    *
43    * @param[in] textField The handle for the text field
44    * @param[in] index The property index of the property to set
45    * @return the value
46    */
47   static Property::Value GetProperty(Toolkit::TextField textField, Property::Index index);
48
49 private:
50   /**
51    * Method to extract "filename" value from a Property::Map
52    *
53    * @param[in] The property value containing the Property::Map
54    * @return The resulting "filename" value if present
55    */
56   static std::string GetImageFileNameFromPropertyValue(const Property::Value& value);
57 };
58
59 } // namespace Dali::Toolkit::Internal
60
61 #endif //DALI_TOOLKIT_INTERNAL_TEXT_FIELD_PROPERTY_HANDLER_H