Reposition the grab/selection handles position.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / segmentation.h
1 #ifndef __DALI_TOOLKIT_TEXT_SEGMENTATION_H__
2 #define __DALI_TOOLKIT_TEXT_SEGMENTATION_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 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/dali-vector.h>
23
24 // INTERNAL INCLUDES
25 #include <dali-toolkit/internal/text/text-definitions.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 namespace Text
34 {
35
36 class LogicalModel;
37
38 /**
39  * Sets line break info.
40  *
41  * Possible values for LineBreakInfo are:
42  *
43  *  - 0 is a LINE_MUST_BREAK.  Text must be broken into a new line.
44  *  - 1 is a LINE_ALLOW_BREAK. Is possible to break the text into a new line.
45  *  - 2 is a LINE_NO_BREAK.    Text can't be broken into a new line.
46  *
47  * @param[in] text Vector of UTF-32 characters.
48  * @param[out] lineBreakInfo The line break info
49  */
50 void SetLineBreakInfo( const Vector<Character>& text,
51                        Vector<LineBreakInfo>& lineBreakInfo );
52
53 /**
54  * Sets word break info.
55  *
56  * - 0 is a WORD_BREAK.    Text can be broken into a new word.
57  * - 1 is a WORD_NO_BREAK. Text can't be broken into a new word.
58  *
59  * @param[in] text Vector of UTF-32 characters.
60  * @param[out] wordBreakInfo The word break info.
61  */
62 void SetWordBreakInfo( const Vector<Character>& text,
63                        Vector<WordBreakInfo>& wordBreakInfo );
64
65 } // namespace Text
66
67 } // namespace Toolkit
68
69 } // namespace Dali
70
71 #endif // __DALI_TOOLKIT_TEXT_SEGMENTATION_H__