1855b6e0ed4da03196916063c2685a5411754cb2
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / internal / controls / text-view / text-view-processor-helper-functions.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // FILE HEADER
19 #include <dali-toolkit/internal/controls/text-view/text-view-processor-helper-functions.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/controls/text-view/text-view-processor-dbg.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Internal
31 {
32
33 namespace TextViewProcessor
34 {
35
36 void UpdateSize( Size& size1, const Size& size2, const SizeGrowType type )
37 {
38   switch( type )
39   {
40     case GrowWidth:
41     {
42       size1.width += size2.width;
43       size1.height = std::max( size1.height, size2.height );
44       break;
45     }
46     case GrowHeight:
47     {
48       size1.width = std::max( size1.width, size2.width );
49       size1.height += size2.height;
50       break;
51     }
52   }
53 }
54
55 TextSeparatorType GetTextSeparatorType( const Character& character )
56 {
57   // returns if the given character is a paragraph separator '\n', a word separator ' ' or if is not a separator (any other character).
58   return ( character.IsNewLine() ? ParagraphSeparator : ( character.IsWhiteSpace() ? WordSeparator : NoSeparator ) );
59 }
60
61 void ChooseFontFamilyName( MarkupProcessor::StyledText& text )
62 {
63   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "-->TextViewProcessor::ChooseFontFamilyName\n" );
64   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "   input font name: [%s]\n", text.mStyle.GetFontName().c_str() );
65
66   bool userDefinedFontFamilyName = false;
67
68   // First check if there is a font defined in the style and it supports the given text.
69   if( !text.mStyle.GetFontName().empty() )
70   {
71     const FontParameters fontParams( text.mStyle.GetFontName(), text.mStyle.GetFontStyle() , text.mStyle.GetFontPointSize() );
72     const Font font = Font::New( fontParams );
73
74     if( !font.IsDefaultSystemFont() && font.AllGlyphsSupported( text.mText ) )
75     {
76       userDefinedFontFamilyName = true;
77     }
78   }
79
80   if( !userDefinedFontFamilyName )
81   {
82     const Font defaultSystemFont = Font::New();
83
84     // At this point no font is set or doesn't support the given text.
85     if( !defaultSystemFont.AllGlyphsSupported( text.mText ) )
86     {
87       // If the default system font doesn't support the given text,
88       // an appropiate font is selected.
89       text.mStyle.SetFontName( Font::GetFamilyForText( text.mText ) );
90       // @TODO Font::GetFamilyForText() should return font family and font style.
91     }
92     else
93     {
94       // All characters are supported with default font, so use it
95       text.mStyle.SetFontName( "" );
96     }
97   }
98   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "  output font name: [%s]\n", text.mStyle.GetFontName().c_str() );
99   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "<--TextViewProcessor::ChooseFontFamilyName\n" );
100 }
101
102 void GetIndicesFromGlobalCharacterIndex( const std::size_t index,
103                                          const TextLayoutInfo& textLayoutInfo,
104                                          TextInfoIndices& indices )
105 {
106   // clear all indices
107   indices = TextInfoIndices();
108
109   // Early return.
110   if( textLayoutInfo.mParagraphsLayoutInfo.empty() )
111   {
112     // Text is empty. All indices are 0.
113     return;
114   }
115
116   std::size_t currentIndex = 0u; // stores how many characters have been traversed (within the whole text).
117
118   // Traverse all paragraphs and words until global index is found.
119   bool found = false;
120   for( ParagraphLayoutInfoContainer::const_iterator paragraphIt = textLayoutInfo.mParagraphsLayoutInfo.begin(),
121          paragraphEndIt = textLayoutInfo.mParagraphsLayoutInfo.end();
122        ( !found ) && ( paragraphIt != paragraphEndIt );
123        ++paragraphIt, ++indices.mParagraphIndex )
124   {
125     const ParagraphLayoutInfo& paragraphLayoutInfo( *paragraphIt );
126
127     if( currentIndex + paragraphLayoutInfo.mNumberOfCharacters > index )
128     {
129       // The character is in this paragraph
130       for( WordLayoutInfoContainer::const_iterator wordIt = paragraphLayoutInfo.mWordsLayoutInfo.begin(),
131              wordEndIt = paragraphLayoutInfo.mWordsLayoutInfo.end();
132            ( !found ) && ( wordIt != wordEndIt );
133            ++wordIt, ++indices.mWordIndex )
134       {
135         const WordLayoutInfo& wordLayoutInfo( *wordIt );
136
137         if( currentIndex + wordLayoutInfo.mCharactersLayoutInfo.size() > index )
138         {
139           // The character is in this word
140           indices.mCharacterIndex = index - currentIndex;
141           found = true;
142         }
143         else
144         {
145           // check in the next word.
146           currentIndex += wordLayoutInfo.mCharactersLayoutInfo.size();
147         }
148       } // end words.
149       if( !paragraphLayoutInfo.mWordsLayoutInfo.empty() )
150       {
151         --indices.mWordIndex;
152       }
153     }
154     else
155     {
156       // check in the next paragraph
157       currentIndex += paragraphLayoutInfo.mNumberOfCharacters;
158     }
159   } // end paragraphs.
160
161   // Need to decrease indices as they have been increased in the last loop.
162   if( !textLayoutInfo.mParagraphsLayoutInfo.empty() )
163   {
164     --indices.mParagraphIndex;
165   }
166 }
167
168 void ClearText( std::vector<TextActor>& textActors )
169 {
170     for( std::vector<TextActor>::iterator it = textActors.begin(), endIt = textActors.end(); it != endIt; ++it )
171     {
172       (*it).SetText( std::string( "" ) );
173     }
174 }
175
176 } //namespace TextViewProcessor
177
178 } //namespace Internal
179
180 } //namespace Toolkit
181
182 } //namespace Dali