Add Text Preedit Style
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-io.h
1 #ifndef DALI_TEXT_ABSTRACTION_TEXT_IO_H
2 #define DALI_TEXT_ABSTRACTION_TEXT_IO_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 <iosfwd>
23 #include <dali/public-api/common/dali-vector.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/font-run.h>
27 #include <dali-toolkit/internal/text/line-run.h>
28 #include <dali-toolkit/internal/text/script-run.h>
29 #include <dali-toolkit/internal/text/text-definitions.h>
30
31 namespace Dali
32 {
33
34 namespace Toolkit
35 {
36
37 namespace Text
38 {
39
40 /**
41  * @brief Print a vector of characters.
42  *
43  * @param [in] o The output stream operator.
44  * @param [in] text The text to print.
45  * @return The output stream operator.
46  */
47 std::ostream& operator<< (std::ostream& o, const Vector<Character>& text);
48
49 /**
50  * @brief Print a vector of script runs.
51  *
52  * @param [in] o The output stream operator.
53  * @param [in] scriptRuns The script runs to print.
54  * @return The output stream operator.
55  */
56 std::ostream& operator<< (std::ostream& o, const Vector<ScriptRun>& scriptRuns);
57
58 /**
59  * @brief Print a vector of font runs.
60  *
61  * @param [in] o The output stream operator.
62  * @param [in] fontRuns The font runs to print.
63  * @return The output stream operator.
64  */
65 std::ostream& operator<< (std::ostream& o, const Vector<FontRun>& fontRuns);
66
67 /**
68  * @brief Print a vector of line runs.
69  *
70  * @param [in] o The output stream operator.
71  * @param [in] lineRuns The line runs to print.
72  * @return The output stream operator.
73  */
74 std::ostream& operator<< (std::ostream& o, const Vector<LineRun>& lineRuns);
75
76 } // namespace Text
77
78 } // namespace Toolkit
79
80 } // namespace Dali
81
82 #endif // DALI_TEXT_ABSTRACTION_TEXT_IO_H