Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-view.cpp
1 /*
2  * Copyright (c) 2015 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 // CLASS HEADER
19 #include <dali-toolkit/internal/text/text-view.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/math/vector2.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace Text
31 {
32
33 struct View::Impl
34 {
35   VisualModelPtr mVisualModel;
36 };
37
38 View::View()
39 : mImpl( NULL )
40 {
41   mImpl = new View::Impl();
42 }
43
44 View::~View()
45 {
46   delete mImpl;
47 }
48
49 void View::SetVisualModel( VisualModelPtr visualModel )
50 {
51   mImpl->mVisualModel = visualModel;
52 }
53
54 Length View::GetNumberOfGlyphs() const
55 {
56   if( mImpl->mVisualModel )
57   {
58     VisualModel& model = *mImpl->mVisualModel;
59
60     Length glyphCount = model.GetNumberOfGlyphs();
61     Length positionCount = model.GetNumberOfGlyphPositions();
62
63     DALI_ASSERT_DEBUG( positionCount <= glyphCount && "Invalid glyph positions in Model" );
64
65     return (positionCount < glyphCount) ? positionCount : glyphCount;
66   }
67
68   return 0;
69 }
70
71 void View::GetGlyphs( GlyphInfo* glyphs,
72                       GlyphIndex glyphIndex,
73                       Length numberOfGlyphs ) const
74 {
75   if( mImpl->mVisualModel )
76   {
77     mImpl->mVisualModel->GetGlyphs( glyphs, glyphIndex, numberOfGlyphs );
78   }
79 }
80
81 void View::GetGlyphPositions( Vector2* glyphPositions,
82                               GlyphIndex glyphIndex,
83                               Length numberOfGlyphs ) const
84 {
85   if( mImpl->mVisualModel )
86   {
87     mImpl->mVisualModel->GetGlyphPositions( glyphPositions, glyphIndex, numberOfGlyphs );
88   }
89 }
90
91 } // namespace Text
92
93 } // namespace Toolkit
94
95 } // namespace Dali