Removed some redundant methods from TextController & Moved some code to other files
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / hyphenator.h
1 #ifndef DALI_TOOLKIT_TEXT_HYPHENATOR_H
2 #define DALI_TOOLKIT_TEXT_HYPHENATOR_H
3
4 /*
5  * Copyright (c) 2021 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/font-run.h>
26 #include <dali-toolkit/internal/text/script-run.h>
27
28 namespace Dali
29 {
30 namespace Toolkit
31 {
32 namespace Text
33 {
34 /**
35  * Gets a vector booleans that indicates possible hyphen locations.
36  *
37  * @param[in] word the word to get possible hyphens for.
38  * @param[in] wordSize the word size in bytes.
39  * @param[in] lang the language for the word
40  *
41  * @return vector of boolean, true if possible to hyphenate at this character position.
42  */
43 Vector<bool> GetWordHyphens(const Character* word,
44                             Length           wordSize,
45                             const char*      lang);
46
47 } // namespace Text
48
49 } // namespace Toolkit
50
51 } // namespace Dali
52
53 #endif // DALI_TOOLKIT_TEXT_HYPHENATOR_H