Merge "Add right shift handling for text controller" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / logical-model-impl.h
1 #ifndef DALI_TOOLKIT_TEXT_LOGICAL_MODEL_IMPL_H
2 #define DALI_TOOLKIT_TEXT_LOGICAL_MODEL_IMPL_H
3
4 /*
5  * Copyright (c) 2019 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/common/dali-vector.h>
23 #include <dali/public-api/common/intrusive-ptr.h>
24 #include <dali/public-api/object/ref-object.h>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/internal/text/bidirectional-line-info-run.h>
28 #include <dali-toolkit/internal/text/bidirectional-paragraph-info-run.h>
29 #include <dali-toolkit/internal/text/color-run.h>
30 #include <dali-toolkit/internal/text/embedded-item.h>
31 #include <dali-toolkit/internal/text/font-run.h>
32 #include <dali-toolkit/internal/text/font-description-run.h>
33 #include <dali-toolkit/internal/text/paragraph-run.h>
34 #include <dali-toolkit/internal/text/script-run.h>
35
36 namespace Dali
37 {
38
39 namespace Toolkit
40 {
41
42 namespace Text
43 {
44
45 class LogicalModel;
46 typedef IntrusivePtr<LogicalModel> LogicalModelPtr;
47 struct InputStyle;
48
49 /**
50  * @brief A logical text model contains layout independent information.
51  *
52  * This includes:
53  * - A series of UTF-32 characters in logical order
54  */
55 class LogicalModel : public RefObject
56 {
57 public:
58
59   /**
60    * @brief Create a new instance of a LogicalModel.
61    *
62    * @return A pointer to a new LogicalModel.
63    */
64   static LogicalModelPtr New();
65
66   // Language support interface.
67
68   /**
69    * @brief Retrieves the script for the given character index.
70    *
71    * @param[in] characterIndex Index to the character.
72    *
73    * @return The character's script.
74    */
75   Script GetScript( CharacterIndex characterIndex ) const;
76
77   // Bidirectional support interface.
78
79   /**
80    * @brief Retrieves the direction of a characters.
81    *
82    * See GetCharacterDirections().
83    *
84    * @param[in] characterIndex Index to a character.
85    *
86    * @return The character's direction.
87    */
88   CharacterDirection GetCharacterDirection( CharacterIndex characterIndex ) const;
89
90   // Visual <--> Logical conversion tables.
91
92   /**
93    * @brief Retrieves the logical cursor index for the given visual cursor index.
94    *
95    * @pre The method FetchBidirectionalLineInfo() must be called before. If the result of FetchBidirectionalLineInfo() is false,
96    *      then the character is not in a bidirectional line and the result will be invalid.
97    *
98    * @param[in] visualCursorIndex The visual cursor index.
99    *
100    * @return The logical cursor index.
101    */
102   CharacterIndex GetLogicalCursorIndex( CharacterIndex visualCursorIndex );
103
104   /**
105    * @brief Retrieves the logical character index for the given visual character index.
106    *
107    * @pre The method FetchBidirectionalLineInfo() must be called before. If the result of FetchBidirectionalLineInfo() is false,
108    *      then the character is not in a bidirectional line and the result will be invalid.
109    *
110    * @param[in] visualCharacterIndex The visual character index.
111    *
112    * @return The logical character index.
113    */
114   CharacterIndex GetLogicalCharacterIndex( CharacterIndex visualCharacterIndex );
115
116   /**
117    * @brief Fetch the bidirectional line info for the given character.
118    *
119    * Call GetBidirectionalLineInfo() to retrieve the last fetched line.
120    *
121    * @param[in] characterIndex The character index.
122    *
123    * @return @e true if the given @e character is in a bidirectional line.
124    */
125   bool FetchBidirectionalLineInfo( CharacterIndex characterIndex );
126
127   /**
128    * @brief Retrieves the last fetched bidirectional line info.
129    *
130    * @return The index of the bidirectional line info.
131    */
132   BidirectionalLineRunIndex GetBidirectionalLineInfo() const;
133
134   // Text style.
135
136   /**
137    * @brief Updates the text's style runs with the added or removed text.
138    *
139    * @param[in] index The character's index.
140    * @param[in] numberOfCharacters The number of characters added or removed. If the value is negative the characters are removed.
141    */
142   void UpdateTextStyleRuns( CharacterIndex index, int numberOfCharacters );
143
144   /**
145    * @brief Retrieves the text's style for the given character index.
146    *
147    * @param[in] index The character index.
148    * @param[out] style The text's style in the given style.
149    */
150   void RetrieveStyle( CharacterIndex index, InputStyle& style );
151
152   /**
153    * @brief Clears the font description runs.
154    */
155   void ClearFontDescriptionRuns();
156
157   // Paragraphs
158
159   /**
160    * @brief Creates the paragraph info.
161    *
162    * @pre The line break info must be set.
163    *
164    * @param[in] startIndex The character from where the paragraph info is set.
165    * @param[in] numberOfCharacters The number of characters.
166    */
167   void CreateParagraphInfo( CharacterIndex startIndex,
168                             Length numberOfCharacters );
169
170   /**
171    * @brief Find the paragraphs which contains the given characters.
172    *
173    * @param[in] index The first character's index of the run.
174    * @param[in] numberOfCharacters The number of characters of the run.
175    * @param[out] paragraphs Indices to the paragraphs which contain the characters.
176    */
177   void FindParagraphs( CharacterIndex index,
178                        Length numberOfCharacters,
179                        Vector<ParagraphRunIndex>& paragraphs );
180
181   // Embedded images
182
183   /**
184    * @brief Clears the embedded images.
185    */
186   void ClearEmbeddedImages();
187
188 protected:
189
190   /**
191    * @brief A reference counted object may only be deleted by calling Unreference().
192    */
193   virtual ~LogicalModel();
194
195 private:
196
197   /**
198    * @brief Private constructor.
199    */
200   LogicalModel();
201
202   // Undefined
203   LogicalModel( const LogicalModel& handle );
204
205   // Undefined
206   LogicalModel& operator=( const LogicalModel& handle );
207
208 public:
209
210   Vector<Character>                     mText;
211   Vector<ScriptRun>                     mScriptRuns;
212   Vector<FontRun>                       mFontRuns;
213   Vector<ColorRun>                      mColorRuns;
214   Vector<FontDescriptionRun>            mFontDescriptionRuns;
215   Vector<LineBreakInfo>                 mLineBreakInfo;
216   Vector<WordBreakInfo>                 mWordBreakInfo;
217   Vector<ParagraphRun>                  mParagraphInfo;
218   Vector<BidirectionalParagraphInfoRun> mBidirectionalParagraphInfo;
219   Vector<CharacterDirection>            mCharacterDirections;              ///< For each character, whether is right to left. ( @e flase is left to right, @e true right to left ).
220   Vector<BidirectionalLineInfoRun>      mBidirectionalLineInfo;
221   Vector<EmbeddedItem>                  mEmbeddedItems;
222
223   BidirectionalLineRunIndex             mBidirectionalLineIndex;           ///< The last fetched bidirectional line info.
224 };
225
226 } // namespace Text
227
228 } // namespace Toolkit
229
230 } // namespace Dali
231
232 #endif // DALI_TOOLKIT_TEXT_LOGICAL_MODEL_IMPL_H