Merge "Changes needed for https://review.tizen.org/gerrit/#/c/191202/" into devel...
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / tizen-wayland / tizen-wearable / watch-application.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
18 // CLASS HEADER
19 #include <dali/public-api/watch/watch-application.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/debug.h>
23
24 // INTERNAL INCLUDES
25 #include <dali/internal/adaptor/tizen-wayland/tizen-wearable/watch-application-impl.h>
26
27 namespace Dali
28 {
29
30 WatchApplication WatchApplication::New()
31 {
32   return New( NULL, NULL );
33 }
34
35 WatchApplication WatchApplication::New( int* argc, char **argv[] )
36 {
37   Internal::Adaptor::WatchApplicationPtr internal = Internal::Adaptor::WatchApplication::New( argc, argv, "", OPAQUE );
38   return WatchApplication(internal.Get());
39 }
40
41 WatchApplication WatchApplication::New( int* argc, char **argv[], const std::string& stylesheet )
42 {
43   Internal::Adaptor::WatchApplicationPtr internal = Internal::Adaptor::WatchApplication::New( argc, argv, stylesheet, OPAQUE );
44   return WatchApplication(internal.Get());
45 }
46
47 WatchApplication::~WatchApplication()
48 {
49 }
50
51 WatchApplication::WatchApplication()
52 {
53 }
54
55 WatchApplication::WatchApplication(const WatchApplication& implementation)
56 : Application(implementation)
57 {
58 }
59
60 WatchApplication& WatchApplication::operator=(const WatchApplication& application)
61 {
62   if( *this != application )
63   {
64     BaseHandle::operator=( application );
65   }
66   return *this;
67 }
68
69 WatchApplication::WatchTimeSignal& WatchApplication::TimeTickSignal()
70 {
71   return Internal::Adaptor::GetImplementation(*this).mTickSignal;
72 }
73
74 WatchApplication::WatchTimeSignal& WatchApplication::AmbientTickSignal()
75 {
76   return Internal::Adaptor::GetImplementation(*this).mAmbientTickSignal;
77 }
78
79 WatchApplication::WatchBoolSignal& WatchApplication::AmbientChangedSignal()
80 {
81   return Internal::Adaptor::GetImplementation(*this).mAmbientChangeSignal;
82 }
83
84 WatchApplication::WatchApplication(Internal::Adaptor::WatchApplication* implementation)
85 : Application(implementation)
86 {
87 }
88
89
90 } // namespace Dali