Merge "Updated @since tags for APIs added since 1.2.0 that are required for Tizen...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / styling / style-manager.cpp
1 /*
2  * Copyright (c) 2016 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
30 namespace Toolkit
31 {
32
33 StyleManager::StyleManager()
34 {
35 }
36
37 StyleManager::~StyleManager()
38 {
39 }
40
41 StyleManager StyleManager::Get()
42 {
43   return Internal::StyleManager::Get();
44 }
45
46 void StyleManager::ApplyTheme( const std::string& themeFile )
47 {
48   GetImpl(*this).ApplyTheme( themeFile );
49 }
50
51 void StyleManager::ApplyDefaultTheme()
52 {
53   GetImpl(*this).ApplyDefaultTheme();
54 }
55
56 void StyleManager::SetStyleConstant( const std::string& key, const Property::Value& value )
57 {
58   GetImpl(*this).SetStyleConstant( key, value );
59 }
60
61 bool StyleManager::GetStyleConstant( const std::string& key, Property::Value& valueOut )
62 {
63   return GetImpl(*this).GetStyleConstant( key, valueOut );
64 }
65
66 void StyleManager::ApplyStyle( Toolkit::Control control, const std::string& jsonFileName, const std::string& styleName )
67 {
68   GetImpl(*this).ApplyStyle( control, jsonFileName, styleName );
69 }
70
71 StyleManager::StyleChangedSignalType& StyleManager::StyleChangedSignal()
72 {
73   return GetImpl( *this ).StyleChangedSignal();
74 }
75
76 StyleManager::StyleManager( Internal::StyleManager *impl )
77   : BaseHandle( impl )
78 {
79 }
80
81 } // namespace Toolkit
82
83 } // namespace Dali