New propagation rule for KeyEvent
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / focus-manager / keyinput-focus-manager.h
index 330f0be..3161990 100644 (file)
@@ -44,7 +44,6 @@ class KeyInputFocusManager;
  * | %Signal Name         | Method                            |
  * |----------------------|-----------------------------------|
  * | keyInputFocusChanged | @ref KeyInputFocusChangedSignal() |
- * | unhandledKeyEvent    | @ref UnhandledKeyEventSignal()    |
  */
 class DALI_IMPORT_API KeyInputFocusManager : public BaseHandle
 {
@@ -53,9 +52,6 @@ public:
   // KeyInputFocusChanged
   typedef Signal< void (Control, Control) > KeyInputFocusChangedSignalType;
 
-  // Unhandled Key Event
-  typedef Signal< void (const KeyEvent&) > UnhandledKeyEventSignalType;
-
 public:
 
   /**
@@ -103,13 +99,6 @@ public:
    */
   void RemoveFocus(Control control);
 
-  /**
-   * Queries whether a control is currently part of the focus stack.
-   * @param [in] control which should be queried.
-   * @return True if it is part of the foucus stack False otherwise.
-   */
-  bool IsKeyboardListener(Control control);
-
 public: // Signals
 
   /**
@@ -124,16 +113,6 @@ public: // Signals
    */
   KeyInputFocusChangedSignalType& KeyInputFocusChangedSignal();
 
-  /**
-   * This signal is emitted when a key event was received, and none of the focused controls on the stage have consumed it.
-   * A callback of the following type may be connected:
-   * @code
-   *   void YourCallbackName(const KeyEvent& event);
-   * @endcode
-   * @return The signal to connect to.
-   */
-  UnhandledKeyEventSignalType& UnhandledKeyEventSignal();
-
 private:
 
   explicit DALI_INTERNAL KeyInputFocusManager(Internal::KeyInputFocusManager *impl);