(Text Controller) Moved some input properties into a different class & some functiona...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / property-string-parser.h
1 #ifndef DALI_TOOLKIT_PROPERTY_STRING_PARSER_H
2 #define DALI_TOOLKIT_PROPERTY_STRING_PARSER_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
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/property-map.h>
23
24 // INTERNAL INCLUDES
25
26 namespace Dali
27 {
28 // Forward declaration
29 struct Vector2;
30
31 namespace Toolkit
32 {
33 // Forward declaration
34 class TreeNode;
35
36 namespace Text
37 {
38 /**
39  * @brief Creates a map with pairs 'key,value' with the property's parameters.
40  *
41  * @param[in] node Data structure with the property's parameters.
42  * @param[out] map A map with the property's parameters.
43  *
44  */
45 void CreatePropertyMap(const TreeNode* const node, Property::Map& map);
46
47 /**
48  * @brief Parses a property string.
49  *
50  * @param[in] property A property string.
51  * @param[out] map A map with the property's parameters.
52  *
53  */
54 void ParsePropertyString(const std::string& property, Property::Map& map);
55
56 } //namespace Text
57
58 } //namespace Toolkit
59
60 } //namespace Dali
61
62 #endif //DALI_TOOLKIT_PROPERTY_STRING_PARSER_H