Merge "Fix documentation for Text::EditableControlInterface interface override functi...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / styling / style-manager.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 // CLASS HEADER
18
19 #include <dali-toolkit/public-api/styling/style-manager.h>
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24
25 #include <dali-toolkit/internal/styling/style-manager-impl.h>
26
27 namespace Dali
28 {
29 namespace Toolkit
30 {
31 StyleManager::StyleManager()
32 {
33 }
34
35 StyleManager::~StyleManager()
36 {
37 }
38
39 StyleManager StyleManager::Get()
40 {
41   return Internal::StyleManager::Get();
42 }
43
44 void StyleManager::ApplyTheme(const std::string& themeFile)
45 {
46   GetImpl(*this).ApplyTheme(themeFile);
47 }
48
49 void StyleManager::ApplyDefaultTheme()
50 {
51   GetImpl(*this).ApplyDefaultTheme();
52 }
53
54 void StyleManager::SetStyleConstant(const std::string& key, const Property::Value& value)
55 {
56   GetImpl(*this).SetStyleConstant(key, value);
57 }
58
59 bool StyleManager::GetStyleConstant(const std::string& key, Property::Value& valueOut)
60 {
61   return GetImpl(*this).GetStyleConstant(key, valueOut);
62 }
63
64 void StyleManager::ApplyStyle(Toolkit::Control control, const std::string& jsonFileName, const std::string& styleName)
65 {
66   GetImpl(*this).ApplyStyle(control, jsonFileName, styleName);
67 }
68
69 StyleManager::StyleChangedSignalType& StyleManager::StyleChangedSignal()
70 {
71   return GetImpl(*this).StyleChangedSignal();
72 }
73
74 StyleManager::StyleManager(Internal::StyleManager* impl)
75 : BaseHandle(impl)
76 {
77 }
78
79 } // namespace Toolkit
80
81 } // namespace Dali