Support window resizing
[platform/core/uifw/dali-adaptor.git] / adaptors / wearable / watch-application-impl.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 "watch-application-impl.h"
20
21 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 namespace Adaptor
28 {
29
30 WatchApplicationPtr WatchApplication::New(
31   int* argc,
32   char **argv[],
33   const std::string& stylesheet,
34   Dali::WatchApplication::WINDOW_MODE windowMode)
35 {
36   WatchApplicationPtr watch ( new WatchApplication (argc, argv, stylesheet, windowMode ) );
37   return watch;
38 }
39
40 WatchApplication::WatchApplication( int* argc, char** argv[], const std::string& stylesheet, Dali::Application::WINDOW_MODE windowMode )
41 : Application(argc, argv, stylesheet, windowMode, PositionSize(), Framework::WATCH)
42 {
43 }
44
45 WatchApplication::~WatchApplication()
46 {
47 }
48
49 void WatchApplication::OnTimeTick(WatchTime& time)
50 {
51   Dali::WatchApplication watch(this);
52   mTickSignal.Emit( watch, time );
53 }
54
55 void WatchApplication::OnAmbientTick(WatchTime& time)
56 {
57   Dali::WatchApplication watch(this);
58   mAmbientTickSignal.Emit( watch, time );
59 }
60
61 void WatchApplication::OnAmbientChanged(bool ambient)
62 {
63   Dali::WatchApplication watch(this);
64   mAmbientChangeSignal.Emit( watch, ambient );
65 }
66
67 } // namespace Adaptor
68
69 } // namespace Internal
70
71 } // namespace Dali