Calling ProcessCoreEvents synchronously in time tick callback of WatchApplication
[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   // A watch application will queue messages to update the UI in the signal emitted above
55   // Process these immediately to avoid a blinking issue where the old time is briefly visible
56   CoreEventInterface& eventInterface = Internal::Adaptor::Adaptor::GetImplementation( GetAdaptor() );
57   eventInterface.ProcessCoreEvents();
58 }
59
60 void WatchApplication::OnAmbientTick(WatchTime& time)
61 {
62   Dali::WatchApplication watch(this);
63   mAmbientTickSignal.Emit( watch, time );
64
65   // A watch application will queue messages to update the UI in the signal emitted above
66   // Process these immediately to avoid a blinking issue where the old time is briefly visible
67   CoreEventInterface& eventInterface = Internal::Adaptor::Adaptor::GetImplementation( GetAdaptor() );
68   eventInterface.ProcessCoreEvents();
69 }
70
71 void WatchApplication::OnAmbientChanged(bool ambient)
72 {
73   Dali::WatchApplication watch(this);
74   mAmbientChangeSignal.Emit( watch, ambient );
75 }
76
77 } // namespace Adaptor
78
79 } // namespace Internal
80
81 } // namespace Dali