Spannable: Add BoldSpan
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / spannable / spans / bold-span-impl.cpp
1 /*
2  * Copyright (c) 2022 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/spannable/spans/bold-span-impl.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/text/font-description-run.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 namespace Text
29 {
30 namespace Internal
31 {
32 BoldSpan::BoldSpan()
33 : BaseSpan()
34 {
35 }
36
37 BoldSpan::~BoldSpan()
38 {
39 }
40
41 Dali::Toolkit::Text::BoldSpan BoldSpan::New()
42 {
43   BoldSpanPtr object = new BoldSpan();
44   Dali::Toolkit::Text::BoldSpan handle = Dali::Toolkit::Text::BoldSpan(object.Get());
45   return handle;
46 }
47
48 void BoldSpan::CreateStyleCharacterRun(IntrusivePtr<LogicalModel>& logicalModel, const Dali::Toolkit::Text::Range& range) const
49 {
50   FontDescriptionRun fontRun;
51   fontRun.weight        = TextAbstraction::FontWeight::BOLD;
52   fontRun.weightDefined = true;
53   fontRun.characterRun.characterIndex     = range.GetStartIndex();
54   fontRun.characterRun.numberOfCharacters = range.GetNumberOfIndices();
55   logicalModel->mFontDescriptionRuns.PushBack(fontRun);
56 }
57
58 } // namespace Internal
59
60 } // namespace Text
61
62 } // namespace Toolkit
63
64 } // namespace Dali