add Padding parameter at RendererParameters
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / text / bitmap-font.cpp
1 /*
2  * Copyright (c) 2020 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 // FILE HEADER
19 #include <dali-toolkit/devel-api/text/bitmap-font.h>
20
21 // EXTERNAL INCLUDE
22 #include <dali/devel-api/text-abstraction/bitmap-font.h>
23 #include <cstring>
24
25 // INTERNAL INCLUDE
26 #include <dali-toolkit/internal/text/character-set-conversion.h>
27
28 namespace Dali
29 {
30 namespace Toolkit
31 {
32 namespace DevelText
33 {
34 Glyph::Glyph()
35 : url{},
36   utf8{},
37   ascender{0.f},
38   descender{0.f}
39 {
40 }
41
42 Glyph::Glyph(const std::string& url, const std::string utf8Character, float ascender, float descender)
43 : url{url},
44   utf8{},
45   ascender{ascender},
46   descender{descender}
47 {
48   DALI_ASSERT_DEBUG(utf8Character.size() <= 4u);
49
50   std::copy(utf8Character.begin(), utf8Character.end(), utf8);
51 }
52
53 Glyph::~Glyph()
54 {
55 }
56
57 BitmapFontDescription::BitmapFontDescription()
58 : glyphs{},
59   name{},
60   underlinePosition{0.f},
61   underlineThickness{1.f},
62   isColorFont{false}
63 {
64 }
65
66 BitmapFontDescription::~BitmapFontDescription()
67 {
68 }
69
70 void CreateBitmapFont(const BitmapFontDescription& description, TextAbstraction::BitmapFont& bitmapFont)
71 {
72   bitmapFont.glyphs.reserve(description.glyphs.size());
73   bitmapFont.name               = description.name;
74   bitmapFont.underlinePosition  = description.underlinePosition;
75   bitmapFont.underlineThickness = description.underlineThickness;
76   bitmapFont.isColorFont        = description.isColorFont;
77
78   for(const auto& glyph : description.glyphs)
79   {
80     uint32_t c = 0u;
81     Text::Utf8ToUtf32(glyph.utf8, Text::GetUtf8Length(glyph.utf8[0u]), &c);
82
83     TextAbstraction::BitmapGlyph bitmapGlyph(glyph.url, c, glyph.ascender, glyph.descender);
84
85     bitmapFont.glyphs.push_back(std::move(bitmapGlyph));
86   }
87 }
88
89 } // namespace DevelText
90
91 } // namespace Toolkit
92
93 } // namespace Dali