Spannable-Core: Add SpannableString and ForegroundColorSpan
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / text / spans / base-span.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/devel-api/text/spans/base-span.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/text/spannable/spans/base-span-impl.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 namespace Text
29 {
30 BaseSpan::BaseSpan() = default;
31
32 BaseSpan::BaseSpan(Internal::BaseSpan* internal)
33 : BaseHandle(internal)
34 {
35 }
36
37 BaseSpan::BaseSpan(const BaseSpan& rhs) = default;
38
39 BaseSpan::BaseSpan(BaseSpan&& rhs) = default;
40
41 BaseSpan& BaseSpan::operator=(const BaseSpan& rhs) = default;
42
43 BaseSpan& BaseSpan::operator=(BaseSpan&& rhs) = default;
44
45 BaseSpan::~BaseSpan() = default;
46
47 BaseSpan BaseSpan::DownCast(BaseHandle handle)
48 {
49   return BaseSpan(dynamic_cast<Dali::Toolkit::Text::Internal::BaseSpan*>(handle.GetObjectPtr()));
50 }
51
52 } // namespace Text
53
54 } // namespace Toolkit
55
56 } // namespace Dali