[Tizen][AT-SPI] Rework intercepting key events
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / common / window-impl.h
index 2b9b367..af90626 100644 (file)
@@ -75,10 +75,12 @@ public:
   typedef Dali::DevelWindow::MoveCompletedSignalType                 MoveCompletedSignalType;
   typedef Dali::DevelWindow::ResizeCompletedSignalType               ResizeCompletedSignalType;
   typedef Dali::DevelWindow::InsetsChangedSignalType                 InsetsChangedSignalType;
+  typedef Dali::DevelWindow::PointerConstraintsSignalType            PointerConstraintsSignalType;
   typedef Signal<void()>                                             SignalType;
 
   /**
    * @brief Create a new Window. This should only be called once by the Application class
+   *
    * @param[in] name The window title
    * @param[in] className The window class name
    * @param[in] windowData The window data
@@ -88,6 +90,7 @@ public:
 
   /**
    * @brief Create a new Window. This should only be called once by the Application class
+   *
    * @param[in] surface The surface used to render on.
    * @param[in] name The window title
    * @param[in] className The window class name
@@ -103,6 +106,7 @@ public:
 
   /**
    * @brief Gets the window class name.
+   *
    * @return The class of the window
    */
   std::string GetClassName() const;
@@ -179,6 +183,7 @@ public:
 
   /**
    * @brief Get window resource ID assigned by window manager
+   *
    * @return The resource ID of the window
    */
   std::string GetNativeResourceId() const;
@@ -425,6 +430,7 @@ public:
 
   /**
    * @brief Emit the accessibility highlight signal.
+   *
    * The highlight indicates that it is an object to interact with the user regardless of focus.
    * After setting the highlight on the object, you can do things that the object can do, such as
    * giving or losing focus.
@@ -507,11 +513,6 @@ public: // Dali::Internal::Adaptor::SceneHolder
   const Dali::KeyEvent& GetLastKeyEvent() const;
 
   /**
-   * @copydoc Dali::DevelWindow::GetLastTouchEvent()
-   */
-  const Dali::TouchEvent& GetLastTouchEvent() const;
-
-  /**
    * @copydoc Dali::DevelWindow::PointerConstraintsLock()
    */
   bool PointerConstraintsLock();
@@ -541,9 +542,40 @@ public: // Dali::Internal::Adaptor::SceneHolder
    */
   void CursorVisibleSet(bool visible);
 
+  /**
+   * @copydoc Dali::DevelWindow::KeyboardGrab()
+   */
+  bool KeyboardGrab(Device::Subclass::Type deviceSubclass);
+
+  /**
+   * @copydoc Dali::DevelWindow::KeyboardUnGrab()
+   */
+  bool KeyboardUnGrab();
+
+  /**
+   * @copydoc Dali::DevelWindow::SetFullScreen()
+   */
+  void SetFullScreen(bool fullscreen);
+
+  /**
+   * @copydoc Dali::DevelWindow::GetFullScreen()
+   */
+  bool GetFullScreen();
+
+  /**
+   * @copydoc Dali::DevelWindow::SetFrontBufferRendering()
+   */
+  void SetFrontBufferRendering(bool enable);
+
+  /**
+   * @copydoc Dali::DevelWindow::GetFrontBufferRendering()
+   */
+  bool GetFrontBufferRendering();
+
 private:
   /**
    * @brief Enumeration for orietation mode.
+   *
    * The Orientation Mode is related to screen size.
    * If screen width is longer than height, the Orientation Mode will have LANDSCAPE.
    * Otherwise screen width is shorter than height or same, the Orientation Mode will have PORTRAIT.
@@ -566,37 +598,54 @@ private:
   ~Window() override;
 
   /**
-   * Second stage initialization
+   * @brief Second stage initialization
+   *
+   * @param[in] surface The surface used to render on.
+   * @param[in] positionSize The window's position and size in initailized time.
+   * @param[in] name The window title
+   * @param[in] className The window class name
+   * @param[in] type window's type. Refer the WindowType in window-enumerations.h.
    */
   void Initialize(Any surface, const PositionSize& positionSize, const std::string& name, const std::string& className, WindowType type);
 
   /**
-   * Called when the window becomes iconified or deiconified.
+   * @brief Called when the window becomes iconified or deiconified.
+   *
+   * @param[in] iconified true If the window is iconified, othewise false.
    */
   void OnIconifyChanged(bool iconified);
 
   /**
-   * Called when the window becomes maximized or unmaximized.
+   * @brief Called when the window becomes maximized or unmaximized.
+   *
+   * @param[in] maximized true If the window is maximized, othewise false.
    */
   void OnMaximizeChanged(bool maximized);
 
   /**
-   * Called when the window focus is changed.
+   * @brief Called when the window focus is changed.
+   *
+   * @param[in] focusIn true If the window is focused, othewise false.
    */
   void OnFocusChanged(bool focusIn);
 
   /**
-   * Called when the output is transformed.
+   * @brief Called when the output is transformed.
    */
   void OnOutputTransformed();
 
   /**
-   * Called when the window receives a delete request.
+   * @brief Called when the window receives a delete request.
    */
   void OnDeleteRequest();
 
   /**
-   * Called when the window receives a Transition effect-start/end event.
+   * @brief Called when the window receives a Transition effect-start/end event.
+   *
+   * This event is emitted by display server.
+   *
+   * @param[in] state current window transition effect state, refer the WindowEffectState in window-enumerations.h.
+   * @param[in] type current window transition effect type, refer the WindowEffectType in window-enumerations.h.
    */
   void OnTransitionEffectEvent(WindowEffectState state, WindowEffectType type);
 
@@ -642,7 +691,15 @@ private:
   void OnAccessibilityDisabled();
 
   /**
-   * Called when the window rotation is finished.
+   * @brief Called in Accessibility mode on every KeyEvent
+   *
+   * @param[in] keyEvent The key event
+   * @return Always true, meaning that the event is consumed
+   */
+  bool OnAccessibilityInterceptKeyEvent(const Dali::KeyEvent& keyEvent);
+
+  /**
+   * @brief Called when the window rotation is finished.
    *
    * This signal is emmit when window rotation is finisehd and WindowRotationCompleted() is called.
    */
@@ -650,15 +707,26 @@ private:
 
   /**
    * @brief Called when the mouse in or out event is received.
+   *
    * @param[in] mouseInOutEvent the mouse event
    */
   void OnMouseInOutEvent(const Dali::DevelWindow::MouseInOutEvent& mouseInOutEvent);
 
   /**
    * @brief Called when the mouse relative event is received.
-   * @param[in] MouseRelativeEvent the mouse event
+   *
+   * @param[in] mouseRelativeEvent the mouse event
    */
-  void OnMouseRelativeEvent(const Dali::DevelWindow::MouseRelativeEvent& MouseRelativeEvent);
+  void OnMouseRelativeEvent(const Dali::DevelWindow::MouseRelativeEvent& mouseRelativeEvent);
+
+  /**
+   * @brief Called when the pointer is locked/unlocked
+   *
+   * @param[in] position The x, y coordinate relative to window where event happened
+   * @param[in] locked The status whether pointer is locked/unlocked
+   * @param[in] confined The status whether pointer is confined/unconfined
+   */
+  void OnPointerConstraints(const Dali::Int32Pair& position, bool locked, bool confined);
 
   /**
    * @brief Called when the window is moved by display server.
@@ -696,6 +764,7 @@ private:
 
   /**
    * @brief Sets user geometry flag when window's geometry is changed.
+   *
    * Window is created with screen size or not.
    * If window is created with screen size or the geometry is changed by user,
    * client should inform to server setting user.geometry flag
@@ -776,7 +845,9 @@ public: // Signals
   }
 
   /**
-   * This signal is emitted when the window is requesting to be deleted
+   * @brief This signal is emitted when the window is requesting to be deleted
+   *
+   * It is internal signal in Dali-adaptor.
    */
   SignalType& DeleteRequestSignal()
   {
@@ -864,6 +935,14 @@ public: // Signals
   }
 
   /**
+   * @copydoc Dali::DevelWindow::PointerConstraintsSignal()
+   */
+  PointerConstraintsSignalType& PointerConstraintsSignal()
+  {
+    return mPointerConstraintsSignal;
+  }
+
+  /**
    * @copydoc Dali::DevelWindow::MoveCompletedSignal()
    */
   MoveCompletedSignalType& MoveCompletedSignal()
@@ -922,9 +1001,9 @@ private:
   MoveCompletedSignalType                 mMoveCompletedSignal;
   ResizeCompletedSignalType               mResizeCompletedSignal;
   InsetsChangedSignalType                 mInsetsChangedSignal;
+  PointerConstraintsSignalType            mPointerConstraintsSignal;
 
-  Dali::KeyEvent   mLastKeyEvent;
-  Dali::TouchEvent mLastTouchEvent;
+  Dali::KeyEvent mLastKeyEvent;
 
   bool mIsTransparent : 1;
   bool mIsFocusAcceptable : 1;
@@ -935,6 +1014,8 @@ private:
   bool mFocused : 1;
   bool mIsWindowRotating : 1;      ///< The window rotating flag.
   bool mIsEnabledUserGeometry : 1; ///< The user geometry enable flag.
+  bool mIsEmittedWindowCreatedEvent : 1; ///< The Window Created Event emit flag for accessibility.
+  bool mIsFrontBufferRendering : 1;      ///< The Front Buffer Rendering state.
 };
 
 } // namespace Adaptor