Added Drop Shadow properties and initial effect with Text Atlas Renderer
[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 const Vector2& View::GetShadowOffset() const
55 {
56   if ( mImpl->mVisualModel )
57   {
58     VisualModel& model = *mImpl->mVisualModel;
59     return model.GetShadowOffset();
60   }
61   return Vector2::ZERO;
62 }
63
64 const Vector4& View::GetShadowColor() const
65 {
66   if ( mImpl->mVisualModel )
67   {
68     VisualModel& model = *mImpl->mVisualModel;
69     return model.GetShadowColor();
70   }
71   return Vector4::ZERO;
72 }
73
74 Length View::GetNumberOfGlyphs() const
75 {
76   if( mImpl->mVisualModel )
77   {
78     VisualModel& model = *mImpl->mVisualModel;
79
80     Length glyphCount = model.GetNumberOfGlyphs();
81     Length positionCount = model.GetNumberOfGlyphPositions();
82
83     DALI_ASSERT_DEBUG( positionCount <= glyphCount && "Invalid glyph positions in Model" );
84
85     return (positionCount < glyphCount) ? positionCount : glyphCount;
86   }
87
88   return 0;
89 }
90
91 void View::GetGlyphs( GlyphInfo* glyphs,
92                       GlyphIndex glyphIndex,
93                       Length numberOfGlyphs ) const
94 {
95   if( mImpl->mVisualModel )
96   {
97     mImpl->mVisualModel->GetGlyphs( glyphs, glyphIndex, numberOfGlyphs );
98   }
99 }
100
101 void View::GetGlyphPositions( Vector2* glyphPositions,
102                               GlyphIndex glyphIndex,
103                               Length numberOfGlyphs ) const
104 {
105   if( mImpl->mVisualModel )
106   {
107     mImpl->mVisualModel->GetGlyphPositions( glyphPositions, glyphIndex, numberOfGlyphs );
108   }
109 }
110
111 } // namespace Text
112
113 } // namespace Toolkit
114
115 } // namespace Dali