2 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include "window-impl.h"
23 #include <Ecore_Wayland.h>
25 #include <dali/integration-api/core.h>
26 #include <dali/integration-api/system-overlay.h>
27 #include <dali/public-api/render-tasks/render-task.h>
28 #include <dali/public-api/render-tasks/render-task-list.h>
29 #include <orientation.h>
32 #include <window-render-surface.h>
33 #include <drag-and-drop-detector-impl.h>
34 #include <indicator-impl.h>
35 #include <window-visibility-observer.h>
36 #include <orientation-impl.h>
40 const float INDICATOR_ANIMATION_DURATION( 0.18f ); // 180 milli seconds
41 const float INDICATOR_SHOW_Y_POSITION( 0.0f );
42 const float INDICATOR_HIDE_Y_POSITION( -52.0f );
51 #if defined(DEBUG_ENABLED)
52 Debug::Filter* gWindowLogFilter = Debug::Filter::New(Debug::Concise, false, "LOG_WINDOW");
56 * TODO: Abstract Window class out and move this into a window implementation for Ecore
58 struct Window::EventHandler
62 * @param[in] window A pointer to the window class.
64 EventHandler( Window* window )
75 if ( mWindowPropertyHandler )
77 ecore_event_handler_del( mWindowPropertyHandler );
79 if ( mClientMessagehandler )
81 ecore_event_handler_del( mClientMessagehandler );
87 /// Called when the window properties are changed.
88 static Eina_Bool EcoreEventWindowPropertyChanged( void* data, int type, void* event )
93 /// Called when the window properties are changed.
94 static Eina_Bool EcoreEventClientMessage( void* data, int type, void* event )
101 Ecore_Event_Handler* mWindowPropertyHandler;
102 Ecore_Event_Handler* mClientMessagehandler;
103 Ecore_Wl_Window* mEcoreWindow;
107 Window* Window::New(const PositionSize& posSize, const std::string& name, bool isTransparent)
109 Window* window = new Window();
110 window->mIsTransparent = isTransparent;
111 window->Initialize(posSize, name);
115 void Window::SetAdaptor(Dali::Adaptor& adaptor)
117 DALI_ASSERT_ALWAYS( !mStarted && "Adaptor already started" );
120 // Only create one overlay per window
121 Internal::Adaptor::Adaptor& adaptorImpl = Internal::Adaptor::Adaptor::GetImplementation(adaptor);
122 Integration::Core& core = adaptorImpl.GetCore();
123 mOverlay = &core.GetSystemOverlay();
125 Dali::RenderTaskList taskList = mOverlay->GetOverlayRenderTasks();
126 taskList.CreateTask();
128 mAdaptor = &adaptorImpl;
129 mAdaptor->AddObserver( *this );
131 // Can only create the detector when we know the Core has been instantiated.
132 mDragAndDropDetector = DragAndDropDetector::New();
133 mAdaptor->SetDragAndDropDetector( &GetImplementation( mDragAndDropDetector ) );
137 mOrientation->SetAdaptor(adaptor);
140 if( mIndicator != NULL )
142 mIndicator->SetAdaptor(mAdaptor);
146 RenderSurface* Window::GetSurface()
151 void Window::SetIndicatorStyle( Dali::Window::IndicatorStyle style )
153 mIndicatorStyle = style;
156 void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
158 DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "visible : %d\n", visibleMode );
159 DALI_ASSERT_DEBUG(mOverlay);
161 DoShowIndicator( mIndicatorOrientation );
164 void Window::RotateIndicator(Dali::Window::WindowOrientation orientation)
166 DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "Orientation: %d\n", orientation );
168 DoRotateIndicator( orientation );
171 void Window::SetIndicatorBgOpacity( Dali::Window::IndicatorBgOpacity opacityMode )
173 mIndicatorOpacityMode = opacityMode;
175 if( mIndicator != NULL )
177 mIndicator->SetOpacityMode( opacityMode );
181 void Window::SetClass(std::string name, std::string klass)
187 mIndicatorStyle(Dali::Window::CHANGEABLE_COLOR),
188 mIndicatorVisible(Dali::Window::VISIBLE),
189 mIndicatorIsShown(false),
190 mShowRotatedIndicatorOnClose(false),
192 mIsTransparent(false),
193 mWMRotationAppSet(false),
195 mIndicatorOrientation(Dali::Window::PORTRAIT),
196 mNextIndicatorOrientation(Dali::Window::PORTRAIT),
197 mIndicatorOpacityMode(Dali::Window::OPAQUE),
205 delete mEventHandler;
215 mAdaptor->RemoveObserver( *this );
216 mAdaptor->SetDragAndDropDetector( NULL );
223 void Window::Initialize(const PositionSize& windowPosition, const std::string& name)
225 // create an Wayland window by default
228 mSurface = new ECore::WindowRenderSurface( windowPosition, surface, display, name, mIsTransparent );
229 mOrientation = Orientation::New(this);
231 // create event handler for Wayland window
232 mEventHandler = new EventHandler( this );
235 void Window::DoShowIndicator( Dali::Window::WindowOrientation lastOrientation )
237 if( mIndicator == NULL )
239 if( mIndicatorVisible != Dali::Window::INVISIBLE )
241 mIndicator = new Indicator( mAdaptor, mIndicatorOrientation, mIndicatorStyle, this );
242 mIndicator->SetOpacityMode( mIndicatorOpacityMode );
243 Dali::Actor actor = mIndicator->GetActor();
244 SetIndicatorActorRotation();
245 mOverlay->Add(actor);
247 // else don't create a hidden indicator
249 else // Already have indicator
251 if( mIndicatorVisible == Dali::Window::VISIBLE )
253 // If we are resuming, and rotation has changed,
254 if( mIndicatorIsShown == false && mIndicatorOrientation != mNextIndicatorOrientation )
256 // then close current indicator and open new one
257 mShowRotatedIndicatorOnClose = true;
258 mIndicator->Close(); // May synchronously call IndicatorClosed() callback & 1 level of recursion
259 // Don't show actor - will contain indicator for old orientation.
264 // set indicator visible mode
265 if( mIndicator != NULL )
267 mIndicator->SetVisible( mIndicatorVisible );
270 bool show = (mIndicatorVisible != Dali::Window::INVISIBLE );
271 SetIndicatorProperties( show, lastOrientation );
272 mIndicatorIsShown = show;
275 void Window::DoRotateIndicator( Dali::Window::WindowOrientation orientation )
277 if( mIndicatorIsShown )
279 mShowRotatedIndicatorOnClose = true;
280 mNextIndicatorOrientation = orientation;
281 mIndicator->Close(); // May synchronously call IndicatorClosed() callback
285 // Save orientation for when the indicator is next shown
286 mShowRotatedIndicatorOnClose = false;
287 mNextIndicatorOrientation = orientation;
291 void Window::SetIndicatorProperties( bool isShow, Dali::Window::WindowOrientation lastOrientation )
295 void Window::IndicatorTypeChanged(Indicator::Type type)
299 void Window::IndicatorClosed( Indicator* indicator )
301 DALI_LOG_TRACE_METHOD( gWindowLogFilter );
303 if( mShowRotatedIndicatorOnClose )
305 Dali::Window::WindowOrientation currentOrientation = mIndicatorOrientation;
306 mIndicator->Open(mNextIndicatorOrientation);
307 mIndicatorOrientation = mNextIndicatorOrientation;
308 SetIndicatorActorRotation();
309 DoShowIndicator(currentOrientation);
313 void Window::IndicatorVisibilityChanged(bool isVisible)
315 mIndicatorVisibilityChangedSignal.Emit(isVisible);
318 void Window::SetIndicatorActorRotation()
320 DALI_LOG_TRACE_METHOD( gWindowLogFilter );
321 DALI_ASSERT_DEBUG( mIndicator != NULL );
323 Dali::Actor actor = mIndicator->GetActor();
324 switch( mIndicatorOrientation )
326 case Dali::Window::PORTRAIT:
327 actor.SetParentOrigin( ParentOrigin::TOP_CENTER );
328 actor.SetAnchorPoint( AnchorPoint::TOP_CENTER );
329 actor.SetOrientation( Degree(0), Vector3::ZAXIS );
331 case Dali::Window::PORTRAIT_INVERSE:
332 actor.SetParentOrigin( ParentOrigin::BOTTOM_CENTER );
333 actor.SetAnchorPoint( AnchorPoint::TOP_CENTER );
334 actor.SetOrientation( Degree(180), Vector3::ZAXIS );
336 case Dali::Window::LANDSCAPE:
337 actor.SetParentOrigin( ParentOrigin::CENTER_LEFT );
338 actor.SetAnchorPoint( AnchorPoint::TOP_CENTER );
339 actor.SetOrientation( Degree(270), Vector3::ZAXIS );
341 case Dali::Window::LANDSCAPE_INVERSE:
342 actor.SetParentOrigin( ParentOrigin::CENTER_RIGHT );
343 actor.SetAnchorPoint( AnchorPoint::TOP_CENTER );
344 actor.SetOrientation( Degree(90), Vector3::ZAXIS );
357 void Window::Activate()
361 Dali::DragAndDropDetector Window::GetDragAndDropDetector() const
363 return mDragAndDropDetector;
366 Dali::Any Window::GetNativeHandle() const
370 return mEventHandler->mEcoreWindow;
378 void Window::OnStart()
380 DoShowIndicator( mIndicatorOrientation );
383 void Window::OnPause()
387 void Window::OnResume()
389 // resume indicator status
390 if( mIndicator != NULL )
392 // Restore own indicator opacity
393 // Send opacity mode to indicator service when app resumed
394 mIndicator->SetOpacityMode( mIndicatorOpacityMode );
398 void Window::OnStop()
409 void Window::OnDestroy()
414 OrientationPtr Window::GetOrientation()
419 void Window::AddAvailableOrientation(Dali::Window::WindowOrientation orientation)
423 for( std::size_t i=0; i<mAvailableOrientations.size(); i++ )
425 if(mAvailableOrientations[i] == orientation)
434 mAvailableOrientations.push_back(orientation);
435 SetAvailableOrientations( mAvailableOrientations );
439 void Window::RemoveAvailableOrientation(Dali::Window::WindowOrientation orientation)
441 for( std::vector<Dali::Window::WindowOrientation>::iterator iter = mAvailableOrientations.begin();
442 iter != mAvailableOrientations.end(); ++iter )
444 if( *iter == orientation )
446 mAvailableOrientations.erase( iter );
450 SetAvailableOrientations( mAvailableOrientations );
453 void Window::SetAvailableOrientations(const std::vector<Dali::Window::WindowOrientation>& orientations)
455 DALI_ASSERT_ALWAYS( mAvailableOrientations.size() <= 4 && "Incorrect number of available orientations" );
458 const std::vector<Dali::Window::WindowOrientation>& Window::GetAvailableOrientations()
460 return mAvailableOrientations;
463 void Window::SetPreferredOrientation(Dali::Window::WindowOrientation orientation)
465 mPreferredOrientation = orientation;
468 Dali::Window::WindowOrientation Window::GetPreferredOrientation()
470 return mPreferredOrientation;
473 void Window::RotationDone( int orientation, int width, int height )