Add move semantics to BaseHandle derived classes in Adaptor public API
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / tizen-wayland / tizen-wearable / watch-application.cpp
1 /*
2  * Copyright (c) 2020 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& copy ) = default;
56
57 WatchApplication& WatchApplication::operator=( const WatchApplication& rhs ) = default;
58
59 WatchApplication::WatchApplication( WatchApplication&& rhs ) = default;
60
61 WatchApplication& WatchApplication::operator=( WatchApplication&& rhs ) = default;
62
63 WatchApplication::WatchTimeSignal& WatchApplication::TimeTickSignal()
64 {
65   return Internal::Adaptor::GetImplementation(*this).mTickSignal;
66 }
67
68 WatchApplication::WatchTimeSignal& WatchApplication::AmbientTickSignal()
69 {
70   return Internal::Adaptor::GetImplementation(*this).mAmbientTickSignal;
71 }
72
73 WatchApplication::WatchBoolSignal& WatchApplication::AmbientChangedSignal()
74 {
75   return Internal::Adaptor::GetImplementation(*this).mAmbientChangeSignal;
76 }
77
78 WatchApplication::WatchApplication(Internal::Adaptor::WatchApplication* implementation)
79 : Application(implementation)
80 {
81 }
82
83
84 } // namespace Dali