Copied some TextInput grab/selection handle code
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / text / bidirectional-support.h
1 #ifndef __DALI_TOOLKIT_TEXT_BIDIRECTIONAL_SUPPORT_H__
2 #define __DALI_TOOLKIT_TEXT_BIDIRECTIONAL_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-toolkit/public-api/text/bidirectional-line-info-run.h>
24 #include <dali-toolkit/public-api/text/bidirectional-paragraph-info-run.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 namespace Text
33 {
34
35 class LogicalModel;
36 class VisualModel;
37
38 /**
39  * Sets the bidirectional info into the logical model.
40  *
41  * @param[in] text Vector of UTF-32 characters.
42  * @param[in] lineBreakInfo The line break info.
43  * @param[out] bidirectionalInfo Vector with the bidirectional infor for each paragraph.
44  */
45 void SetBidirectionalInfo( const Vector<Character>& text,
46                            const Vector<LineBreakInfo>& lineBreakInfo,
47                            Vector<BidirectionalParagraphInfoRun>& bidirectionalInfo );
48
49 /**
50  * Sets the visual to logical and logical to visual map tables.
51  *
52  * Any map tables previously set are removed.
53  *
54  * @pre The @p logicalModel needs to have a text set.
55  * @pre The @p logicalModel needs to have the bidirectional info indices for each paragraph set.
56  * @pre The @p visualModel needs to have the laid-out lines info set.
57  *
58  * @param[in] bidirectionalInfo Vector with the bidirectional infor for each paragraph.
59  * @param[in] lineRuns The line runs converted to characters.
60  * @param[out] lineInfoRuns line runs with the visual to logical and logical to visual conversion maps.
61  */
62 void ReorderLines( const Vector<BidirectionalParagraphInfoRun>& bidirectionalInfo,
63                    const Vector<CharacterRun>& lineRuns,
64                    Vector<BidirectionalLineInfoRun>& lineInfoRuns );
65
66 } // namespace Text
67
68 } // namespace Toolkit
69
70 } // namespace Dali
71
72 #endif // __DALI_TOOLKIT_TEXT_BIDIRECTIONAL_SUPPORT_H__