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