Revert "[Tizen] Add the logical key to Integration::KeyEvent"
[platform/core/uifw/dali-core.git] / dali / integration-api / events / key-event-integ.h
index 64d6e02..cf74794 100755 (executable)
@@ -56,7 +56,6 @@ struct DALI_CORE_API KeyEvent : public Event
   /**
    * Constructor
    * @param[in]  keyName       The name of the key pressed or command from the IMF, if later then the some following parameters will be needed.
-   * @param[in]  key           The logical key symbol (eg. shift + 1 == "exclamation")
    * @param[in]  keyString     A string of input characters or key pressed
    * @param[in]  keyCode       The unique key code for the key pressed.
    * @param[in]  keyModifier   The key modifier for special keys like shift and alt
@@ -68,7 +67,6 @@ struct DALI_CORE_API KeyEvent : public Event
    * @param[in]  deviceSubclass  Subclass of device KeyEvent originated from
    */
   KeyEvent(const std::string& keyName,
-           const std::string& key,
            const std::string& keyString,
            int keyCode,
            int keyModifier,
@@ -79,7 +77,7 @@ struct DALI_CORE_API KeyEvent : public Event
            const Device::Class::Type deviceClass,
            const Device::Subclass::Type deviceSubclass );
 
-  /**
+  /*
    * Constructor, creates a Integration::KeyEvent from a Dali::KeyEvent
    * @param[in] event Dali::KeyEvent to convert from
    */
@@ -98,11 +96,6 @@ struct DALI_CORE_API KeyEvent : public Event
   std::string keyName;
 
   /**
-   * The logical key symbol
-   */
-  std::string key;
-
-  /**
    *@copydoc Dali::KeyEvent::keyPressed
    */
   std::string keyString;