Text segmentation implementation
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / text / multi-language-support.h
1 #ifndef __DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_H__
2 #define __DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_H__
3
4 /*
5  * Copyright (c) 2015 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 // INTERNAL INCLUDES
22 #include <dali/public-api/common/dali-vector.h>
23 #include <dali/public-api/object/base-handle.h>
24 #include <dali-toolkit/public-api/text/font-run.h>
25 #include <dali-toolkit/public-api/text/script-run.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Text
34 {
35
36 namespace Internal DALI_INTERNAL
37 {
38
39 class MultilanguageSupport;
40
41 } // Internal
42
43 class LogicalModel;
44
45 /**
46  * @brief Sets the character's scripts to the model and validates the fonts set by the user or assigns default ones.
47  */
48 class MultilanguageSupport : public BaseHandle
49 {
50 public:
51
52   /**
53    * @brief Create an uninitialized MultilanguageSupport handle.
54    */
55   MultilanguageSupport();
56
57   /**
58    * @brief Destructor
59    *
60    * This is non-virtual since derived Handle types must not contain data or virtual methods.
61    */
62   ~MultilanguageSupport();
63
64   /**
65    * @brief This constructor is used by MultilanguageSupport::Get().
66    *
67    * @param[in] implementation A pointer to the internal multi-language support object.
68    */
69   explicit DALI_INTERNAL MultilanguageSupport( Internal::MultilanguageSupport* implementation );
70
71   /**
72    * @brief Retrieve a handle to the MultilanguageSupport instance.
73    *
74    * @return A handle to the MultilanguageSupport.
75    */
76   static MultilanguageSupport Get();
77
78   /**
79    * @brief Sets the scripts of the whole text.
80    *
81    * Scripts are used to validate and set default fonts and to shape the text in further steps.
82    *
83    * @param[in] text Vector of UTF-32 characters.
84    * @param[out] scripts Vector containing the script runs for the whole text.
85    */
86   void SetScripts( const Vector<Character>& text,
87                    Vector<ScriptRun>& scripts );
88
89   /**
90    * @brief Validates the character's font of the whole text.
91    *
92    * It may update fonts set by application developers.
93    *
94    * This method ensures all characters are going to be rendered using an appropriate font. Provided a valid font
95    * exists in the platform.
96    *
97    * For those characters with no font set, it sets a default one.
98    *
99    * If a font has been set by the application developer, this method checks if the font supports the character.
100    * If it doesn't, this method replaces it by a default one.
101    *
102    * @param[in] text Vector of UTF-32 characters.
103    * @param[in] scripts Vector containing the script runs for the whole text.
104    * @param[in,out] fonts Initially contains the fonts set by the application developers. Returns the validated fonts.
105    */
106   void ValidateFonts( const Vector<Character>& text,
107                       const Vector<ScriptRun>& scripts,
108                       Vector<FontRun>& fonts );
109 };
110
111 } // namespace Text
112
113 } // namespace Toolkit
114
115 } // namespace Dali
116
117 #endif // __DALI_TOOLKIT_TEXT_MULTI_LANGUAGE_SUPPORT_H__