[dali_1.4.8] Merge branch '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) 2019 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 mImageId;
55     int32_t mCount;
56     uint16_t mOutlineWidth;
57     bool isItalic:1;
58     bool isBold:1;
59   };
60
61   struct FontGlyphRecord
62   {
63     Text::FontId mFontId;
64     Vector< GlyphRecordEntry > mGlyphRecords;
65   };
66
67   /**
68    * @brief Constructor
69    */
70   AtlasGlyphManager();
71
72   /**
73    * @copydoc Toolkit::AtlasGlyphManager::Add
74    */
75   void Add( const Text::GlyphInfo& glyph,
76             const Toolkit::AtlasGlyphManager::GlyphStyle& style,
77             const PixelData& bitmap,
78             Dali::Toolkit::AtlasManager::AtlasSlot& slot );
79
80   /**
81    * @copydoc Toolkit::AtlasGlyphManager::GenerateMeshData
82    */
83   void GenerateMeshData( uint32_t imageId,
84                          const Vector2& position,
85                          Toolkit::AtlasManager::Mesh2D& mesh );
86
87   /**
88    * @copydoc Toolkit::AtlasGlyphManager::IsCached
89    */
90   bool IsCached( Text::FontId fontId,
91                  Text::GlyphIndex index,
92                  const Toolkit::AtlasGlyphManager::GlyphStyle& style,
93                  Dali::Toolkit::AtlasManager::AtlasSlot& slot );
94
95   /**
96    * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize
97    */
98   Vector2 GetAtlasSize( uint32_t atlasId );
99
100   /**
101    * @copydoc Toolkit::AtlasGlyphManager::SetNewAtlasSize
102    */
103   void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight );
104
105   /**
106    * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat
107    */
108   Pixel::Format GetPixelFormat( uint32_t atlasId );
109
110   /**
111    * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount
112    */
113   void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, const Toolkit::AtlasGlyphManager::GlyphStyle& style, int32_t delta );
114
115   /**
116    * @copydoc Toolkit::AtlasGlyphManager::GetTextures
117    */
118   TextureSet GetTextures( uint32_t atlasId ) const;
119
120   /**
121    * @copydoc Toolkit::AtlasGlyphManager::GetMetrics
122    */
123   const Toolkit::AtlasGlyphManager::Metrics& GetMetrics();
124
125 protected:
126
127   /**
128    * A reference counted object may only be deleted by calling Unreference()
129    */
130   virtual ~AtlasGlyphManager();
131
132 private:
133
134   Dali::Toolkit::AtlasManager mAtlasManager;          ///> Atlas Manager created by GlyphManager
135   std::vector< FontGlyphRecord > mFontGlyphRecords;
136   Toolkit::AtlasGlyphManager::Metrics mMetrics;       ///> Metrics to pass back on GlyphManager status
137 };
138
139 } // namespace Internal
140
141 inline const Internal::AtlasGlyphManager& GetImplementation(const Toolkit::AtlasGlyphManager& manager)
142 {
143   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
144
145   const BaseObject& handle = manager.GetBaseObject();
146
147   return static_cast<const Internal::AtlasGlyphManager&>(handle);
148 }
149
150 inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager& manager)
151 {
152   DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" );
153
154   BaseObject& handle = manager.GetBaseObject();
155
156   return static_cast<Internal::AtlasGlyphManager&>(handle);
157 }
158
159 } // namespace Toolkit
160
161 } // namespace Dali
162
163 #endif // DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H