[4.0] Create Widget Application
[platform/core/uifw/dali-adaptor.git] / adaptors / widget / widget-application.cpp
1 /*
2  * Copyright (c) 2017 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 "widget-application.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23
24 // INTERNAL INCLUDES
25 #include <widget-application-impl.h>
26
27 namespace Dali
28 {
29
30 WidgetApplication WidgetApplication::New( int* argc, char **argv[], const std::string& stylesheet )
31 {
32   Internal::Adaptor::WidgetApplicationPtr internal = Internal::Adaptor::WidgetApplication::New( argc, argv, stylesheet);
33   return WidgetApplication(internal.Get());
34 }
35
36 WidgetApplication::~WidgetApplication()
37 {
38 }
39
40 WidgetApplication::WidgetApplication()
41 {
42 }
43
44 WidgetApplication::WidgetApplication(const WidgetApplication& widgetApplication)
45 : BaseHandle(widgetApplication)
46 {
47 }
48
49 WidgetApplication& WidgetApplication::operator=(const WidgetApplication& widgetApplication)
50 {
51   if( *this != widgetApplication )
52   {
53     BaseHandle::operator=( widgetApplication );
54   }
55   return *this;
56 }
57
58 void WidgetApplication::MainLoop()
59 {
60   Internal::Adaptor::GetImplementation(*this).MainLoop();
61 }
62
63 void WidgetApplication::Quit()
64 {
65   Internal::Adaptor::GetImplementation(*this).Quit();
66 }
67
68 Window WidgetApplication::GetWindow()
69 {
70   return Internal::Adaptor::GetImplementation(*this).GetWindow();
71 }
72
73 std::string WidgetApplication::GetResourcePath()
74 {
75   return Internal::Adaptor::WidgetApplication::GetResourcePath();
76 }
77
78 WidgetApplication::AppSignalType& WidgetApplication::InitSignal()
79 {
80   return Internal::Adaptor::GetImplementation(*this).InitSignal();
81 }
82
83 WidgetApplication::AppSignalType& WidgetApplication::TerminateSignal()
84 {
85   return Internal::Adaptor::GetImplementation(*this).TerminateSignal();
86 }
87
88 WidgetApplication::AppSignalType& WidgetApplication::LanguageChangedSignal()
89 {
90   return Internal::Adaptor::GetImplementation(*this).LanguageChangedSignal();
91 }
92
93 WidgetApplication::AppSignalType& WidgetApplication::RegionChangedSignal()
94 {
95   return Internal::Adaptor::GetImplementation(*this).RegionChangedSignal();
96 }
97
98 WidgetApplication::AppSignalType& WidgetApplication::BatteryLowSignal()
99 {
100   return Internal::Adaptor::GetImplementation(*this).BatteryLowSignal();
101 }
102
103 WidgetApplication::AppSignalType& WidgetApplication::MemoryLowSignal()
104 {
105   return Internal::Adaptor::GetImplementation(*this).MemoryLowSignal();
106 }
107
108 WidgetApplication::WidgetApplication(Internal::Adaptor::WidgetApplication* widgetApplication)
109 : BaseHandle(widgetApplication)
110 {
111 }
112
113 } // namespace Dali