DALi Version 1.0.38
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / styling / style-manager.cpp
1 /*
2  * Copyright (c) 2014 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::SetOrientationValue( int orientation )
47 {
48   GetImpl(*this).SetOrientationValue( orientation );
49 }
50
51 int StyleManager::GetOrientationValue()
52 {
53   return GetImpl(*this).GetOrientationValue();
54 }
55
56 void StyleManager::SetOrientation( Orientation orientation )
57 {
58   GetImpl(*this).SetOrientation( orientation );
59 }
60
61 Orientation StyleManager::GetOrientation()
62 {
63   return GetImpl(*this).GetOrientation();
64 }
65
66 void StyleManager::SetStyleConstant( const std::string& key, const Property::Value& value )
67 {
68   GetImpl(*this).SetStyleConstant( key, value );
69 }
70
71 bool StyleManager::GetStyleConstant( const std::string& key, Property::Value& valueOut )
72 {
73   return GetImpl(*this).GetStyleConstant( key, valueOut );
74 }
75
76 void StyleManager::ApplyStyle( Toolkit::Control control, const std::string& jsonFileName, const std::string& styleName )
77 {
78   GetImpl(*this).ApplyStyle( control, jsonFileName, styleName );
79 }
80
81 StyleManager::StyleManager( Internal::StyleManager *impl )
82   : BaseHandle( impl )
83 {
84 }
85
86 StyleManager::StyleChangeSignalType& StyleManager::StyleChangeSignal()
87 {
88   return GetImpl( *this ).StyleChangeSignal();
89 }
90
91 void StyleManager::RequestThemeChange( const std::string& themeFile )
92 {
93   GetImpl(*this).RequestThemeChange( themeFile );
94 }
95
96 void StyleManager::RequestDefaultTheme()
97 {
98   GetImpl(*this).RequestDefaultTheme();
99 }
100
101 } // namespace Toolkit
102
103 } // namespace Dali
104