[dali_2.3.42] Merge branch 'devel/master'
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / window-devel.cpp
index ef0847e..243c8c5 100644 (file)
@@ -299,6 +299,16 @@ const TouchEvent& GetLastTouchEvent(Window window)
   return GetImplementation(window).GetLastTouchEvent();
 }
 
+const HoverEvent& GetLastHoverEvent(Window window)
+{
+  return GetImplementation(window).GetLastHoverEvent();
+}
+
+GestureState GetLastPanGestureState(Window window)
+{
+  return GetImplementation(window).GetLastPanGestureState();
+}
+
 bool PointerConstraintsLock(Window window)
 {
   return GetImplementation(window).PointerConstraintsLock();
@@ -324,6 +334,86 @@ bool PointerWarp(Window window, int32_t x, int32_t y)
   return GetImplementation(window).PointerWarp(x, y);
 }
 
+void CursorVisibleSet(Window window, bool visible)
+{
+  GetImplementation(window).CursorVisibleSet(visible);
+}
+
+bool KeyboardGrab(Window window, Device::Subclass::Type deviceSubclass)
+{
+  return GetImplementation(window).KeyboardGrab(deviceSubclass);
+}
+
+bool KeyboardUnGrab(Window window)
+{
+  return GetImplementation(window).KeyboardUnGrab();
+}
+
+void SetFullScreen(Window window, bool fullscreen)
+{
+  GetImplementation(window).SetFullScreen(fullscreen);
+}
+
+bool GetFullScreen(Window window)
+{
+  return GetImplementation(window).GetFullScreen();
+}
+
+void SetFrontBufferRendering(Window window, bool enable)
+{
+  GetImplementation(window).SetFrontBufferRendering(enable);
+}
+
+bool GetFrontBufferRendering(Window window)
+{
+  return GetImplementation(window).GetFrontBufferRendering();
+}
+
+void SetModal(Window window, bool modal)
+{
+  GetImplementation(window).SetModal(modal);
+}
+
+bool IsModal(Window window)
+{
+  return GetImplementation(window).IsModal();
+}
+
+void SetAlwaysOnTop(Window window, bool alwaysOnTop)
+{
+  GetImplementation(window).SetAlwaysOnTop(alwaysOnTop);
+}
+
+bool IsAlwaysOnTop(Window window)
+{
+  return GetImplementation(window).IsAlwaysOnTop();
+}
+
+Any GetNativeBuffer(Window window)
+{
+  return GetImplementation(window).GetNativeBuffer();
+}
+
+bool RelativeMotionGrab(Window window, uint32_t boundary)
+{
+  return GetImplementation(window).RelativeMotionGrab(boundary);
+}
+
+bool RelativeMotionUnGrab(Window window)
+{
+  return GetImplementation(window).RelativeMotionUnGrab();
+}
+
+void SetBlur(Window window, const WindowBlurInfo& blurInfo)
+{
+  GetImplementation(window).SetBlur(blurInfo);
+}
+
+WindowBlurInfo GetBlur(Window window)
+{
+  return GetImplementation(window).GetBlur();
+}
+
 InterceptKeyEventSignalType& InterceptKeyEventSignal(Window window)
 {
   return GetImplementation(window).InterceptKeyEventSignal();
@@ -344,6 +434,11 @@ MouseRelativeEventSignalType& MouseRelativeEventSignal(Window window)
   return GetImplementation(window).MouseRelativeEventSignal();
 }
 
+PointerConstraintsSignalType& PointerConstraintsSignal(Window window)
+{
+  return GetImplementation(window).PointerConstraintsSignal();
+}
+
 } // namespace DevelWindow
 
 } // namespace Dali