X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fwindow-system%2Fcommon%2Fwindow-impl.cpp;h=1afa98edb384a9edfc5c69024bed8c7e2f62bc77;hb=c695717b383a197bb171314d7bfbfe008be42ec5;hp=5d4cb1cb8a33afcf07522e099a70a76c68bdceb7;hpb=38b2cd4c868982264a00fa6f16fa01bf136e81e8;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/window-system/common/window-impl.cpp b/dali/internal/window-system/common/window-impl.cpp index 5d4cb1c..1afa98e 100644 --- a/dali/internal/window-system/common/window-impl.cpp +++ b/dali/internal/window-system/common/window-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -58,7 +58,6 @@ namespace #if defined(DEBUG_ENABLED) Debug::Filter* gWindowLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_WINDOW"); #endif - } // unnamed namespace Window* Window::New(const PositionSize& positionSize, const std::string& name, const std::string& className, Dali::WindowType type, bool isTransparent) @@ -93,14 +92,18 @@ Window::Window() mKeyboardRepeatSettingsChangedSignal(), mAuxiliaryMessageSignal(), mMovedSignal(), + mOrientationChangedSignal(), + mMouseInOutEventSignal(), mLastKeyEvent(), mLastTouchEvent(), mIsTransparent(false), mIsFocusAcceptable(true), mIconified(false), + mMaximized(false), mOpaqueState(false), mWindowRotationAcknowledgement(false), - mFocused(false) + mFocused(false), + mIsWindowRotating(false) { } @@ -149,6 +152,7 @@ void Window::Initialize(Any surface, const PositionSize& positionSize, const std // Connect signals mWindowBase->IconifyChangedSignal().Connect(this, &Window::OnIconifyChanged); + mWindowBase->MaximizeChangedSignal().Connect(this, &Window::OnMaximizeChanged); mWindowBase->FocusChangedSignal().Connect(this, &Window::OnFocusChanged); mWindowBase->DeleteRequestSignal().Connect(this, &Window::OnDeleteRequest); mWindowBase->TransitionEffectEventSignal().Connect(this, &Window::OnTransitionEffectEvent); @@ -156,8 +160,10 @@ void Window::Initialize(Any surface, const PositionSize& positionSize, const std mWindowBase->WindowRedrawRequestSignal().Connect(this, &Window::OnWindowRedrawRequest); mWindowBase->UpdatePositionSizeSignal().Connect(this, &Window::OnUpdatePositionSize); mWindowBase->AuxiliaryMessageSignal().Connect(this, &Window::OnAuxiliaryMessage); + mWindowBase->MouseInOutEventSignal().Connect(this, &Window::OnMouseInOutEvent); mWindowSurface->OutputTransformedSignal().Connect(this, &Window::OnOutputTransformed); + mWindowSurface->RotationFinishedSignal().Connect(this, &Window::OnRotationFinished); AddAuxiliaryHint("wm.policy.win.user.geometry", "1"); @@ -176,10 +182,32 @@ void Window::Initialize(Any surface, const PositionSize& positionSize, const std { mOrientationMode = Internal::Adaptor::Window::OrientationMode::PORTRAIT; } + + if(positionSize.width <= 0 || positionSize.height <= 0) + { + mWindowWidth = screenWidth; + mWindowHeight = screenHeight; + } + else + { + mWindowWidth = positionSize.width; + mWindowHeight = positionSize.height; + } + // For Debugging mNativeWindowId = mWindowBase->GetNativeWindowId(); } +void Window::SetRenderNotification(TriggerEventInterface *renderNotification) +{ + if(!mWindowSurface) + { + return; + } + + mWindowSurface->SetRenderNotification(renderNotification); +} + void Window::OnAdaptorSet(Dali::Adaptor& adaptor) { mEventHandler = EventHandlerPtr(new EventHandler(mWindowSurface->GetWindowBase(), *mAdaptor)); @@ -192,6 +220,10 @@ void Window::OnAdaptorSet(Dali::Adaptor& adaptor) auto rootLayer = mScene.GetRootLayer(); auto accessible = Accessibility::Accessible::Get(rootLayer); bridge->AddTopLevelWindow(accessible); + + // Emit Window create event + // Create and Destory signal only emit in multi-window environment, so it does not emit on default layer. + bridge->Emit(accessible, Accessibility::WindowEvent::CREATE); } bridge->EnabledSignal().Connect(this, &Window::OnAccessibilityEnabled); @@ -363,7 +395,6 @@ void Window::SetPreferredOrientation(WindowOrientation orientation) WindowOrientation Window::GetPreferredOrientation() { - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), GetPreferredOrientation: %d\n", this, mNativeWindowId, mPreferredAngle); WindowOrientation preferredOrientation = ConvertToOrientation(mPreferredAngle); return preferredOrientation; } @@ -575,11 +606,8 @@ unsigned int Window::GetAuxiliaryHintId(const std::string& hint) const void Window::SetInputRegion(const Rect& inputRegion) { - Rect convertRegion = RecalculateRect(inputRegion); - - DALI_LOG_INFO(gWindowLogFilter, Debug::Verbose, "Window (%p), WinId (%d), SetInputRegion, RecalculateRegion, (%d,%d), (%d x %d)\n", this, mNativeWindowId, convertRegion.x, convertRegion.y, convertRegion.width, convertRegion.height); - - mWindowBase->SetInputRegion(convertRegion); + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), SetInputRegion, (%d,%d), (%d x %d)\n", this, mNativeWindowId, inputRegion.x, inputRegion.y, inputRegion.width, inputRegion.height); + mWindowBase->SetInputRegion(inputRegion); } void Window::SetType(WindowType type) @@ -658,25 +686,27 @@ int Window::GetBrightness() const void Window::SetSize(Dali::Window::WindowSize size) { - PositionSize oldRect = mSurface->GetPositionSize(); + PositionSize oldRect = GetPositionSize(); - mWindowSurface->MoveResize(PositionSize(oldRect.x, oldRect.y, size.GetWidth(), size.GetHeight())); - - PositionSize newRect = mSurface->GetPositionSize(); + PositionSize newRect; + newRect.width = size.GetWidth(); + newRect.height = size.GetHeight(); // When surface size is updated, inform adaptor of resizing and emit ResizeSignal if((oldRect.width != newRect.width) || (oldRect.height != newRect.height)) { + mWindowSurface->MoveResize(PositionSize(oldRect.x, oldRect.y, newRect.width, newRect.height)); + Uint16Pair newSize(newRect.width, newRect.height); mWindowWidth = newRect.width; mWindowHeight = newRect.height; - SurfaceResized(); + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), current angle (%d), SetSize(): (%d, %d), [%d x %d]\n", this, mNativeWindowId, mRotationAngle, oldRect.x, oldRect.y, newRect.width, newRect.height); - mAdaptor->SurfaceResizePrepare(mSurface.get(), newSize); + SurfaceResized(static_cast(mWindowWidth), static_cast(mWindowHeight)); - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), current angle (%d), SetSize(): resize signal [%d x %d]\n", this, mNativeWindowId, mRotationAngle, newRect.width, newRect.height); + mAdaptor->SurfaceResizePrepare(mSurface.get(), newSize); Dali::Window handle(this); mResizeSignal.Emit(handle, newSize); @@ -691,22 +721,20 @@ void Window::SetSize(Dali::Window::WindowSize size) Dali::Window::WindowSize Window::GetSize() const { - PositionSize positionSize = mSurface->GetPositionSize(); - - return Dali::Window::WindowSize(positionSize.width, positionSize.height); + return Dali::Window::WindowSize(mWindowWidth, mWindowHeight); } void Window::SetPosition(Dali::Window::WindowPosition position) { PositionSize oldRect = mSurface->GetPositionSize(); - int32_t newX = position.GetX(); - int32_t newY = position.GetY(); + int32_t newX = position.GetX(); + int32_t newY = position.GetY(); - mWindowSurface->MoveResize(PositionSize(newX, newY, oldRect.width, oldRect.height)); + mWindowSurface->Move(PositionSize(newX, newY, oldRect.width, oldRect.height)); if((oldRect.x != newX) || (oldRect.y != newY)) { - Dali::Window handle(this); + Dali::Window handle(this); Dali::Window::WindowPosition newPosition(newX, newY); DALI_LOG_RELEASE_INFO("send moved signal with new position: %d, %d\n", newPosition.GetX(), newPosition.GetY()); @@ -720,44 +748,63 @@ void Window::SetPosition(Dali::Window::WindowPosition position) Dali::Window::WindowPosition Window::GetPosition() const { - PositionSize positionSize = mSurface->GetPositionSize(); - + PositionSize positionSize = GetPositionSize(); return Dali::Window::WindowPosition(positionSize.x, positionSize.y); } PositionSize Window::GetPositionSize() const { - return mSurface->GetPositionSize(); + PositionSize positionSize = mSurface->GetPositionSize(); + positionSize.width = mWindowWidth; + positionSize.height = mWindowHeight; + return positionSize; } void Window::SetPositionSize(PositionSize positionSize) { - PositionSize oldRect = mSurface->GetPositionSize(); + bool moved = false; + bool resize = false; + + PositionSize oldRect = GetPositionSize(); Dali::Window handle(this); - mWindowSurface->MoveResize(positionSize); + if((oldRect.x != positionSize.x) || (oldRect.y != positionSize.y)) + { + moved = true; + } - PositionSize newRect = mSurface->GetPositionSize(); + if((oldRect.width != positionSize.width) || (oldRect.height != positionSize.height)) + { + resize = true; + } - if((oldRect.x != newRect.x) || (oldRect.y != newRect.y)) + if(moved || resize) { - Dali::Window::WindowPosition position(newRect.x, newRect.y); + mWindowSurface->MoveResize(positionSize); + } + + // When window is moved, emit Moved Signal + if(moved) + { + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Moved signal emit (%d, %d)\n", this, mNativeWindowId, positionSize.x, positionSize.y); + Dali::Window::WindowPosition position(positionSize.x, positionSize.y); mMovedSignal.Emit(handle, position); } // When surface size is updated, inform adaptor of resizing and emit ResizeSignal - if((oldRect.width != newRect.width) || (oldRect.height != newRect.height)) + if(resize) { - Uint16Pair newSize(newRect.width, newRect.height); + Uint16Pair newSize(positionSize.width, positionSize.height); - mWindowWidth = newRect.width; - mWindowHeight = newRect.height; + mWindowWidth = positionSize.width; + mWindowHeight = positionSize.height; - SurfaceResized(); + SurfaceResized(static_cast(mWindowWidth), static_cast(mWindowHeight)); mAdaptor->SurfaceResizePrepare(mSurface.get(), newSize); - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), current angle (%d), SetPositionSize():resize signal [%d x %d]\n", this, mNativeWindowId, mRotationAngle, newRect.width, newRect.height); + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Resize signal emit [%d x %d]\n", this, mNativeWindowId, positionSize.width, positionSize.height); + mResizeSignal.Emit(handle, newSize); mAdaptor->SurfaceResizeComplete(mSurface.get(), newSize); } @@ -767,6 +814,11 @@ void Window::SetPositionSize(PositionSize positionSize) Dali::Accessibility::Accessible::Get(mScene.GetRootLayer())->EmitBoundsChanged(Dali::Rect<>(positionSize.x, positionSize.y, positionSize.width, positionSize.height)); } +void Window::SetLayout(unsigned int numCols, unsigned int numRows, unsigned int column, unsigned int row, unsigned int colSpan, unsigned int rowSpan) +{ + mWindowBase->SetLayout(numCols, numRows, column, row, colSpan, rowSpan); +} + Dali::Layer Window::GetRootLayer() const { return mScene.GetRootLayer(); @@ -799,20 +851,28 @@ bool Window::UngrabKeyList(const Dali::Vector& key, Dali::VectorWindowHidden(handle); + bridge->WindowHidden(handle); WindowVisibilityObserver* observer(mAdaptor); observer->OnWindowHidden(); } + if(isActuallyChanged) + { + bridge->WindowMinimized(handle); + } + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Iconified: visible = %d\n", this, mNativeWindowId, mVisible); } else @@ -821,47 +881,71 @@ void Window::OnIconifyChanged(bool iconified) if(mVisible) { - Dali::Window handle(this); mVisibilityChangedSignal.Emit(handle, true); - Dali::Accessibility::Bridge::GetCurrentBridge()->WindowShown(handle); + bridge->WindowShown(handle); WindowVisibilityObserver* observer(mAdaptor); observer->OnWindowShown(); } + if(isActuallyChanged) + { + bridge->WindowRestored(handle, Dali::Accessibility::WindowRestoreType::RESTORE_FROM_ICONIFY); + } + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Deiconified: visible = %d\n", this, mNativeWindowId, mVisible); } mSurface->SetFullSwapNextFrame(); } -void Window::OnFocusChanged(bool focusIn) +void Window::OnMaximizeChanged(bool maximized) { - Dali::Window handle(this); - mFocusChangeSignal.Emit(handle, focusIn); - - mSurface->SetFullSwapNextFrame(); + const bool isActuallyChanged = (maximized != mMaximized); - if(auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge()) + if(isActuallyChanged) { - if(focusIn) + auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge(); + Dali::Window handle(this); + + if(maximized) { - bridge->WindowFocused(handle); + mMaximized = true; + bridge->WindowMaximized(handle); } else { - bridge->WindowUnfocused(handle); + mMaximized = false; + bridge->WindowRestored(handle, Dali::Accessibility::WindowRestoreType::RESTORE_FROM_MAXIMIZE); } } +} + +void Window::OnFocusChanged(bool focusIn) +{ + Dali::Window handle(this); + mFocusChangeSignal.Emit(handle, focusIn); + + mSurface->SetFullSwapNextFrame(); + auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge(); + + if(focusIn) + { + bridge->WindowFocused(handle); + } + else + { + bridge->WindowUnfocused(handle); + } + mFocused = focusIn; } void Window::OnOutputTransformed() { - PositionSize positionSize = mSurface->GetPositionSize(); + PositionSize positionSize = GetPositionSize(); - int orientation = (mRotationAngle + mWindowBase->GetScreenRotationAngle()) % 360; - SurfaceRotated(static_cast(positionSize.width), static_cast(positionSize.height), orientation); + SurfaceRotated(static_cast(positionSize.width), static_cast(positionSize.height), mRotationAngle, mWindowBase->GetScreenRotationAngle()); mAdaptor->SurfaceResizePrepare(mSurface.get(), Adaptor::SurfaceSize(positionSize.width, positionSize.height)); mAdaptor->SurfaceResizeComplete(mSurface.get(), Adaptor::SurfaceSize(positionSize.width, positionSize.height)); @@ -891,13 +975,12 @@ void Window::OnWindowRedrawRequest() void Window::OnUpdatePositionSize(Dali::PositionSize& positionSize) { - bool resized = false; - bool moved = false; - Dali::Window handle(this); - PositionSize oldRect = mSurface->GetPositionSize(); + bool moved = false; + bool resize = false; - mWindowSurface->UpdatePositionSize(positionSize); + Dali::Window handle(this); + PositionSize oldRect = GetPositionSize(); PositionSize newRect = positionSize; if((oldRect.x != newRect.x) || (oldRect.y != newRect.y)) @@ -907,28 +990,35 @@ void Window::OnUpdatePositionSize(Dali::PositionSize& positionSize) if((oldRect.width != newRect.width) || (oldRect.height != newRect.height)) { - resized = true; + resize = true; } - if(moved) + if(moved || resize) + { + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), current angle (%d), position or size is updated by server , (%d, %d) [%d x %d]\n", this, mNativeWindowId, mRotationAngle, newRect.x, newRect.y, newRect.width, newRect.height); + mWindowSurface->UpdatePositionSize(positionSize); + } + + if((oldRect.x != newRect.x) || (oldRect.y != newRect.y)) { + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Moved signal emit (%d, %d)\n", this, mNativeWindowId, newRect.x, newRect.y); Dali::Window::WindowPosition position(newRect.x, newRect.y); mMovedSignal.Emit(handle, position); } // When surface size is updated, inform adaptor of resizing and emit ResizeSignal - if(resized) + if((oldRect.width != newRect.width) || (oldRect.height != newRect.height)) { Uint16Pair newSize(newRect.width, newRect.height); - mWindowWidth = newRect.width; - mWindowHeight = newRect.height; + mWindowWidth = newRect.width; + mWindowHeight = newRect.height; - SurfaceResized(); + SurfaceResized(static_cast(mWindowWidth), static_cast(mWindowHeight)); mAdaptor->SurfaceResizePrepare(mSurface.get(), newSize); - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Updated PositionSize by server :resize signal [%d x %d]\n", this, mNativeWindowId, newRect.width, newRect.height); + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Resized signal emit [%d x %d]\n", this, mNativeWindowId, newRect.width, newRect.height); mResizeSignal.Emit(handle, newSize); mAdaptor->SurfaceResizeComplete(mSurface.get(), newSize); } @@ -955,6 +1045,13 @@ void Window::OnKeyEvent(Dali::Integration::KeyEvent& keyEvent) FeedKeyEvent(keyEvent); } +void Window::OnMouseInOutEvent(const Dali::DevelWindow::MouseInOutEvent& mouseInOutEvent) +{ + Dali::Window handle(this); + + mMouseInOutEventSignal.Emit(handle, mouseInOutEvent); +} + void Window::OnRotation(const RotationEvent& rotation) { PositionSize newPositionSize(rotation.x, rotation.y, rotation.width, rotation.height); @@ -963,24 +1060,31 @@ void Window::OnRotation(const RotationEvent& rotation) mWindowWidth = rotation.width; mWindowHeight = rotation.height; + mIsWindowRotating = true; + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), angle(%d), Window Rotation (%d , %d) [%d x %d]\n", this, mNativeWindowId, mRotationAngle, newPositionSize.x, newPositionSize.y, mWindowWidth, mWindowHeight); + // Notify that the orientation is changed mOrientation->OnOrientationChange(rotation); mWindowSurface->RequestRotation(mRotationAngle, newPositionSize); - int orientation = (mRotationAngle + mWindowBase->GetScreenRotationAngle()) % 360; - SurfaceRotated(mWindowWidth, mWindowHeight, orientation); + SurfaceRotated(static_cast(mWindowWidth), static_cast(mWindowHeight), mRotationAngle, mWindowBase->GetScreenRotationAngle()); mAdaptor->SurfaceResizePrepare(mSurface.get(), Adaptor::SurfaceSize(mWindowWidth, mWindowHeight)); - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), OnRotation(): x[%d], y[%d], resize signal emit [%d x %d]\n", this, mNativeWindowId, newPositionSize.x, newPositionSize.y, mWindowWidth, mWindowHeight); - // Emit signal Dali::Window handle(this); mResizeSignal.Emit(handle, Dali::Window::WindowSize(mWindowWidth, mWindowHeight)); + mOrientationChangedSignal.Emit(handle, GetCurrentOrientation()); mAdaptor->SurfaceResizeComplete(mSurface.get(), Adaptor::SurfaceSize(mWindowWidth, mWindowHeight)); } +void Window::OnRotationFinished() +{ + mIsWindowRotating = false; + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), window rotation is finised\n", this, mNativeWindowId); +} + void Window::OnPause() { if(mEventHandler) @@ -1033,9 +1137,8 @@ void Window::OnAccessibilityDisabled() bridge->RemoveTopLevelWindow(accessible); } -void Window::RecalculateTouchPosition(Integration::Point& point) +Vector2 Window::RecalculatePosition(const Vector2& position) { - Vector2 position = point.GetScreenPosition(); Vector2 convertedPosition; switch(mRotationAngle) @@ -1064,8 +1167,7 @@ void Window::RecalculateTouchPosition(Integration::Point& point) break; } } - - point.SetScreenPosition(convertedPosition); + return convertedPosition; } Dali::Window Window::Get(Dali::Actor actor) @@ -1128,7 +1230,6 @@ Dali::Window Window::GetParent() WindowOrientation Window::GetCurrentOrientation() const { - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), GetCurrentOrientation(): %d\n", this, mNativeWindowId, mRotationAngle); return ConvertToOrientation(mRotationAngle); } @@ -1189,58 +1290,16 @@ void Window::EnableFloatingMode(bool enable) mWindowBase->EnableFloatingMode(enable); } -Rect Window::RecalculateRect(const Rect& rect) -{ - Rect newRect; - int screenWidth, screenHeight; - - WindowSystem::GetScreenSize(screenWidth, screenHeight); - - if(mRotationAngle == 90) - { - newRect.x = rect.y; - newRect.y = screenHeight - (rect.x + rect.width); - newRect.width = rect.height; - newRect.height = rect.width; - } - else if(mRotationAngle == 180) - { - newRect.x = screenWidth - (rect.x + rect.width); - newRect.y = screenHeight - (rect.y + rect.height); - newRect.width = rect.width; - newRect.height = rect.height; - } - else if(mRotationAngle == 270) - { - newRect.x = screenWidth - (rect.y + rect.height); - newRect.y = rect.x; - newRect.width = rect.height; - newRect.height = rect.width; - } - else - { - newRect.x = rect.x; - newRect.y = rect.y; - newRect.width = rect.width; - newRect.height = rect.height; - } - return newRect; -} - void Window::IncludeInputRegion(const Rect& inputRegion) { - Rect convertRegion = RecalculateRect(inputRegion); - - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), IncludeInputRegion, RecalculateRegion, (%d,%d), (%d x %d)\n", this, mNativeWindowId, convertRegion.x, convertRegion.y, convertRegion.width, convertRegion.height); - mWindowBase->IncludeInputRegion(convertRegion); + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), IncludeInputRegion, (%d,%d), (%d x %d)\n", this, mNativeWindowId, inputRegion.x, inputRegion.y, inputRegion.width, inputRegion.height); + mWindowBase->IncludeInputRegion(inputRegion); } void Window::ExcludeInputRegion(const Rect& inputRegion) { - Rect convertRegion = RecalculateRect(inputRegion); - - DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), ExcludeInputRegion, RecalculateRegion, (%d,%d), (%d x %d)\n", this, mNativeWindowId, convertRegion.x, convertRegion.y, convertRegion.width, convertRegion.height); - mWindowBase->ExcludeInputRegion(convertRegion); + DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), ExcludeInputRegion, (%d,%d), (%d x %d)\n", this, mNativeWindowId, inputRegion.x, inputRegion.y, inputRegion.width, inputRegion.height); + mWindowBase->ExcludeInputRegion(inputRegion); } void Window::SetNeedsRotationCompletedAcknowledgement(bool needAcknowledgement) @@ -1261,7 +1320,7 @@ void Window::SendRotationCompletedAcknowledgement() bool Window::IsWindowRotating() const { - return mWindowSurface->IsWindowRotating(); + return mIsWindowRotating; } const Dali::KeyEvent& Window::GetLastKeyEvent() const