Merge "Changes needed for https://review.tizen.org/gerrit/#/c/191202/" into devel...
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / tizen-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 <dali/internal/adaptor/tizen-wearable/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   mState( UNINITIALIZED )
43 {
44 }
45
46 WatchApplication::~WatchApplication()
47 {
48 }
49
50 void WatchApplication::OnInit()
51 {
52   Application::OnInit();
53
54   Dali::Adaptor::Get().SetRenderRefreshRate( 2 ); // make 30 fps for watch applications
55
56   mState = INITIALIZED;
57 }
58
59 void WatchApplication::OnTerminate()
60 {
61   Application::OnTerminate();
62
63   mState = TERMINATED;
64 }
65
66 void WatchApplication::OnResume()
67 {
68   Application::OnResume();
69
70   mState = RESUMED;
71 }
72
73 void WatchApplication::OnPause()
74 {
75   Application::OnPause();
76
77   mState = PAUSED;
78 }
79
80 void WatchApplication::OnTimeTick(WatchTime& time)
81 {
82   Dali::WatchApplication watch(this);
83   mTickSignal.Emit( watch, time );
84
85   if(mState == PAUSED)
86   {
87     // This is a pre-resume scenario. All rendering engine of tizen SHOULD forcely update once at this time.
88     Internal::Adaptor::Adaptor::GetImplementation( GetAdaptor() ).RequestUpdateOnce();
89   }
90
91   // A watch application will queue messages to update the UI in the signal emitted above
92   // Process these immediately to avoid a blinking issue where the old time is briefly visible
93   CoreEventInterface& eventInterface = Internal::Adaptor::Adaptor::GetImplementation( GetAdaptor() );
94   eventInterface.ProcessCoreEvents();
95 }
96
97 void WatchApplication::OnAmbientTick(WatchTime& time)
98 {
99   Dali::WatchApplication watch(this);
100   mAmbientTickSignal.Emit( watch, time );
101
102   // A watch application will queue messages to update the UI in the signal emitted above
103   // Process these immediately to avoid a blinking issue where the old time is briefly visible
104   CoreEventInterface& eventInterface = Internal::Adaptor::Adaptor::GetImplementation( GetAdaptor() );
105   eventInterface.ProcessCoreEvents();
106 }
107
108 void WatchApplication::OnAmbientChanged(bool ambient)
109 {
110   Dali::WatchApplication watch(this);
111   mAmbientChangeSignal.Emit( watch, ambient );
112 }
113
114 } // namespace Adaptor
115
116 } // namespace Internal
117
118 } // namespace Dali