Spannable-Core: Add SpannableString and ForegroundColorSpan
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / spannable / spans / foreground-color-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/foreground-color-span-impl.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/text/color-run.h>
23 #include <dali-toolkit/internal/text/markup-tags-and-attributes.h>
24
25 namespace Dali
26 {
27 namespace Toolkit
28 {
29 namespace Text
30 {
31 namespace Internal
32 {
33 struct ForegroundColorSpan::Impl
34 {
35   Vector4 mForegroundColor;            ///< The foreground-color of the characters.
36   bool    mForegroundColorDefined : 1; ///< Whether the foreground-color is defined.
37 };
38
39 ForegroundColorSpan::ForegroundColorSpan()
40 : BaseSpan()
41 {
42   mImpl = std::make_unique<Impl>();
43 }
44
45 ForegroundColorSpan ::~ForegroundColorSpan()
46 {
47 }
48
49 Dali::Toolkit::Text::ForegroundColorSpan ForegroundColorSpan::New(Vector4 color)
50 {
51   ForegroundColorSpanPtr object = new ForegroundColorSpan();
52   object->SetForegroundColor(color);
53
54   Dali::Toolkit::Text::ForegroundColorSpan handle = Dali::Toolkit::Text::ForegroundColorSpan(object.Get());
55
56   return handle;
57 }
58
59 //Methods
60 const Vector4 ForegroundColorSpan::GetForegroundColor() const
61 {
62   return mImpl->mForegroundColor;
63 }
64
65 bool ForegroundColorSpan::IsForegroundColorDefined() const
66 {
67   return mImpl->mForegroundColorDefined;
68 }
69
70 void ForegroundColorSpan::SetForegroundColor(Vector4 color)
71 {
72   mImpl->mForegroundColor        = color;
73   mImpl->mForegroundColorDefined = true;
74 }
75
76 } // namespace Internal
77
78 } // namespace Text
79
80 } // namespace Toolkit
81
82 } // namespace Dali