TextModel - Clear the buffers if the number of items is zero.
[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     return mImpl->mVisualModel->GetNumberOfGlyphs();
59   }
60
61   return 0;
62 }
63
64 void View::GetGlyphs( GlyphInfo* glyphs,
65                       GlyphIndex glyphIndex,
66                       Length numberOfGlyphs ) const
67 {
68   if( mImpl->mVisualModel )
69   {
70     mImpl->mVisualModel->GetGlyphs( glyphs, glyphIndex, numberOfGlyphs );
71   }
72 }
73
74 void View::GetGlyphPositions( Vector2* glyphPositions,
75                               GlyphIndex glyphIndex,
76                               Length numberOfGlyphs ) const
77 {
78   if( mImpl->mVisualModel )
79   {
80     mImpl->mVisualModel->GetGlyphPositions( glyphPositions, glyphIndex, numberOfGlyphs );
81   }
82 }
83
84 } // namespace Text
85
86 } // namespace Toolkit
87
88 } // namespace Dali