89b93f170b72156af82c05275cb749bc2e79a4fc
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / tizen-wayland / tizen-wearable / watch-application.cpp
1 /*
2  * Copyright (c) 2021 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 WatchApplication WatchApplication::New()
30 {
31   return New(NULL, NULL);
32 }
33
34 WatchApplication WatchApplication::New(int* argc, char** argv[])
35 {
36   Internal::Adaptor::WatchApplicationPtr internal = Internal::Adaptor::WatchApplication::New(argc, argv, "", OPAQUE);
37   return WatchApplication(internal.Get());
38 }
39
40 WatchApplication WatchApplication::New(int* argc, char** argv[], const std::string& stylesheet)
41 {
42   Internal::Adaptor::WatchApplicationPtr internal = Internal::Adaptor::WatchApplication::New(argc, argv, stylesheet, OPAQUE);
43   return WatchApplication(internal.Get());
44 }
45
46 WatchApplication::~WatchApplication()
47 {
48 }
49
50 WatchApplication::WatchApplication()
51 {
52 }
53
54 WatchApplication::WatchApplication(const WatchApplication& copy) = default;
55
56 WatchApplication& WatchApplication::operator=(const WatchApplication& rhs) = default;
57
58 WatchApplication::WatchApplication(WatchApplication&& rhs) = default;
59
60 WatchApplication& WatchApplication::operator=(WatchApplication&& rhs) = default;
61
62 WatchApplication::WatchTimeSignal& WatchApplication::TimeTickSignal()
63 {
64   return Internal::Adaptor::GetImplementation(*this).mTickSignal;
65 }
66
67 WatchApplication::WatchTimeSignal& WatchApplication::AmbientTickSignal()
68 {
69   return Internal::Adaptor::GetImplementation(*this).mAmbientTickSignal;
70 }
71
72 WatchApplication::WatchBoolSignal& WatchApplication::AmbientChangedSignal()
73 {
74   return Internal::Adaptor::GetImplementation(*this).mAmbientChangeSignal;
75 }
76
77 WatchApplication::WatchApplication(Internal::Adaptor::WatchApplication* implementation)
78 : Application(implementation)
79 {
80 }
81
82 } // namespace Dali