Remove obsolete and non functional SizeChanged signal from actor
[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( const Character& character, TextStyle& style )
62 {
63   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "-->TextViewProcessor::ChooseFontFamilyName\n" );
64   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "   input font name: [%s]\n", style.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( !style.GetFontName().empty() )
70   {
71     const FontParameters fontParams( style.GetFontName(), style.GetFontStyle() , style.GetFontPointSize() );
72     const Font font = Font::New( fontParams );
73
74     if( !font.IsDefaultSystemFont() && font.AllGlyphsSupported( character ) )
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( character ) )
86     {
87       // If the default system font doesn't support the given text,
88       // an appropiate font is selected.
89       style.SetFontName( Font::GetFamilyForText( character ) );
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       style.SetFontName( "" );
96     }
97   }
98   DALI_LOG_INFO( gTextViewProcessorLogFilter, Debug::General, "  output font name: [%s]\n", style.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     std::size_t currentCharactersTraversed = currentIndex; // stores how many characters have been traversed until this paragraph.
127
128     if( currentIndex + paragraphLayoutInfo.mNumberOfCharacters > index )
129     {
130       // The character is in this paragraph
131       for( WordLayoutInfoContainer::const_iterator wordIt = paragraphLayoutInfo.mWordsLayoutInfo.begin(),
132              wordEndIt = paragraphLayoutInfo.mWordsLayoutInfo.end();
133            ( !found ) && ( wordIt != wordEndIt );
134            ++wordIt, ++indices.mWordIndex )
135       {
136         const WordLayoutInfo& wordLayoutInfo( *wordIt );
137
138         if( currentIndex + wordLayoutInfo.mCharactersLayoutInfo.size() > index )
139         {
140           // The character is in this word
141           indices.mCharacterIndex = index - currentIndex;
142           indices.mCharacterParagraphIndex = index - currentCharactersTraversed;
143           found = true;
144         }
145         else
146         {
147           // check in the next word.
148           currentIndex += wordLayoutInfo.mCharactersLayoutInfo.size();
149         }
150       } // end words.
151       if( !paragraphLayoutInfo.mWordsLayoutInfo.empty() )
152       {
153         --indices.mWordIndex;
154       }
155     }
156     else
157     {
158       // check in the next paragraph
159       currentIndex += paragraphLayoutInfo.mNumberOfCharacters;
160     }
161   } // end paragraphs.
162
163   // Need to decrease indices as they have been increased in the last loop.
164   if( !textLayoutInfo.mParagraphsLayoutInfo.empty() )
165   {
166     --indices.mParagraphIndex;
167   }
168 }
169
170 void ClearText( std::vector<TextActor>& textActors )
171 {
172     for( std::vector<TextActor>::iterator it = textActors.begin(), endIt = textActors.end(); it != endIt; ++it )
173     {
174       (*it).SetText( std::string( "" ) );
175     }
176 }
177
178 } //namespace TextViewProcessor
179
180 } //namespace Internal
181
182 } //namespace Toolkit
183
184 } //namespace Dali