Disable pixel alignment while scrolling the text
[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) 2016 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
29 // Forward declaration
30 struct Vector2;
31
32 namespace Toolkit
33 {
34
35 // Forward declaration
36 class TreeNode;
37
38 namespace Text
39 {
40
41 /**
42  * @brief Creates a map with pairs 'key,value' with the property's parameters.
43  *
44  * @param[in] node Data structure with the property's parameters.
45  * @param[out] map A map with the property's parameters.
46  *
47  */
48 void CreatePropertyMap( const TreeNode* const node, Property::Map& map );
49
50 /**
51  * @brief Parses a property string.
52  *
53  * @param[in] property A property string.
54  * @param[out] map A map with the property's parameters.
55  *
56  */
57 void ParsePropertyString( const std::string& property, Property::Map& map );
58
59 } //namespace Text
60
61 } //namespace Toolkit
62
63 } //namespace Dali
64
65 #endif //__DALI_TOOLKIT_PROPERTY_STRING_PARSER_H__