Revert "Export Setter APIs in DevelKeyEvent"
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 16 Sep 2020 02:28:59 +0000 (11:28 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 16 Sep 2020 02:28:59 +0000 (11:28 +0900)
This reverts commit 01c16230fb62be0b0e5d09cc33e8126385aef0dc.

dali/devel-api/events/key-event-devel.h

index 05f2674..ad8b32e 100644 (file)
@@ -63,7 +63,7 @@ DALI_CORE_API KeyEvent New( const std::string& keyName,
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] keyName The name given to the key pressed.\r
  */\r
-DALI_CORE_API void SetKeyName( KeyEvent keyEvent, const std::string& keyName );\r
+void SetKeyName( KeyEvent keyEvent, const std::string& keyName );\r
 \r
 /**\r
  * @brief Set the actual string of input characters that should be used for input editors.\r
@@ -72,7 +72,7 @@ DALI_CORE_API void SetKeyName( KeyEvent keyEvent, const std::string& keyName );
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] keyString The actual string of input characters\r
  */\r
-DALI_CORE_API void SetKeyString( KeyEvent keyEvent, const std::string& keyString );\r
+void SetKeyString( KeyEvent keyEvent, const std::string& keyString );\r
 \r
 /**\r
  * @brief Set the unique key code for the key pressed.\r
@@ -81,7 +81,7 @@ DALI_CORE_API void SetKeyString( KeyEvent keyEvent, const std::string& keyString
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] keyCode The unique key code for the key pressed\r
  */\r
-DALI_CORE_API void SetKeyCode( KeyEvent keyEvent, int32_t keyCode );\r
+void SetKeyCode( KeyEvent keyEvent, int32_t keyCode );\r
 \r
 /**\r
  * @brief Set the key modifier for special keys like Shift, Alt and Ctrl which modify the next key pressed.\r
@@ -90,7 +90,7 @@ DALI_CORE_API void SetKeyCode( KeyEvent keyEvent, int32_t keyCode );
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] keyModifier The key modifier\r
  */\r
-DALI_CORE_API void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier );\r
+void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier );\r
 \r
 /**\r
  * @brief Set the time (in ms) that the key event occurred.\r
@@ -99,7 +99,7 @@ DALI_CORE_API void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier );
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] time The time (in ms)\r
  */\r
-DALI_CORE_API void SetTime( KeyEvent keyEvent, unsigned long time );\r
+void SetTime( KeyEvent keyEvent, unsigned long time );\r
 \r
 /**\r
  * @brief Set the state of the key event.\r
@@ -108,7 +108,7 @@ DALI_CORE_API void SetTime( KeyEvent keyEvent, unsigned long time );
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] state The state of the key event\r
  */\r
-DALI_CORE_API void SetState( KeyEvent keyEvent, const KeyEvent::State& state );\r
+void SetState( KeyEvent keyEvent, const KeyEvent::State& state );\r
 \r
 } // namespace DevelKeyEvent\r
 \r