Merge "SVACE Error fix TextureManager Thread bounds" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / atlas / atlas-glyph-manager-impl.h
1 #ifndef __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__
2 #define __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/object/base-object.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 class AtlasGlyphManager;
35
36 } // namespace Toolkit
37
38 namespace Toolkit
39 {
40
41 namespace Internal
42 {
43
44 class AtlasGlyphManager;
45 typedef IntrusivePtr<AtlasGlyphManager> AtlasGlyphManagerPtr;
46
47 class AtlasGlyphManager : public Dali::BaseObject
48 {
49 public:
50
51   struct GlyphRecordEntry
52   {
53     Text::GlyphIndex mIndex;
54     uint32_t mOutlineWidth;
55     uint32_t mImageId;
56     int32_t mCount;
57   };
58
59   struct FontGlyphRecord
60   {
61     Text::FontId mFontId;
62     Vector< GlyphRecordEntry > mGlyphRecords;
63   };
64
65   /**
66    * @brief Constructor
67    */
68   AtlasGlyphManager();
69
70   /**
71    * @copydoc Toolkit::AtlasGlyphManager::Add
72    */
73   void Add( const Text::GlyphInfo& glyph,
74             const uint32_t outlineWidth,
75             const PixelData& bitmap,
76             Dali::Toolkit::AtlasManager::AtlasSlot& slot );
77
78   /**
79    * @copydoc Toolkit::AtlasGlyphManager::GenerateMeshData
80    */
81   void GenerateMeshData( uint32_t imageId,
82                          const Vector2& position,
83                          Toolkit::AtlasManager::Mesh2D& mesh );
84
85   /**
86    * @copydoc Toolkit::AtlasGlyphManager::IsCached
87    */
88   bool IsCached( Text::FontId fontId,
89                  Text::GlyphIndex index,
90                  uint32_t outlineWidth,
91                  Dali::Toolkit::AtlasManager::AtlasSlot& slot );
92
93   /**
94    * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize
95    */
96   Vector2 GetAtlasSize( uint32_t atlasId );
97
98   /**
99    * @copydoc Toolkit::AtlasGlyphManager::SetNewAtlasSize
100    */
101   void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight );
102
103   /**
104    * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat
105    */
106   Pixel::Format GetPixelFormat( uint32_t atlasId );
107
108   /**
109    * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount
110    */
111   void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, uint32_t outlineWidth, int32_t delta );
112
113   /**
114    * @copydoc Toolkit::AtlasGlyphManager::GetTextures
115    */
116   TextureSet GetTextures( uint32_t atlasId ) const;
117
118   /**
119    * @copydoc Toolkit::AtlasGlyphManager::GetMetrics
120    */
121   const Toolkit::AtlasGlyphManager::Metrics& GetMetrics();
122
123 protected:
124
125   /**
126    * A reference counted object may only be deleted by calling Unreference()
127    */
128   virtual ~AtlasGlyphManager();
129
130 private:
131
132   Dali::Toolkit::AtlasManager mAtlasManager;          ///> Atlas Manager created by GlyphManager
133   std::vector< FontGlyphRecord > mFontGlyphRecords;
134   Toolkit::AtlasGlyphManager::Metrics mMetrics;       ///> Metrics to pass back on GlyphManager status
135 };
136
137 } // namespace Internal
138
139 inline const Internal::AtlasGlyphManager& GetImplementation(const Toolkit::AtlasGlyphManager& manager)
140 {
141   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
142
143   const BaseObject& handle = manager.GetBaseObject();
144
145   return static_cast<const Internal::AtlasGlyphManager&>(handle);
146 }
147
148 inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager& manager)
149 {
150   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
151
152   BaseObject& handle = manager.GetBaseObject();
153
154   return static_cast<Internal::AtlasGlyphManager&>(handle);
155 }
156
157 } // namespace Toolkit
158
159 } // namespace Dali
160
161 #endif // __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__