Export Setter APIs in DevelKeyEvent 23/243823/1
authorRichard Huang <r.huang@samsung.com>
Thu, 10 Sep 2020 09:08:59 +0000 (10:08 +0100)
committerRichard Huang <r.huang@samsung.com>
Thu, 10 Sep 2020 09:08:59 +0000 (10:08 +0100)
Change-Id: Id14c93d01b2cfad68ba2bb9a01b6fad457ab6231

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

index aa2b1ef..d19c4ee 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
-void SetKeyName( KeyEvent keyEvent, const std::string& keyName );\r
+DALI_CORE_API 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 @@ 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
-void SetKeyString( KeyEvent keyEvent, const std::string& keyString );\r
+DALI_CORE_API 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 @@ 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
-void SetKeyCode( KeyEvent keyEvent, int32_t keyCode );\r
+DALI_CORE_API 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 @@ void SetKeyCode( KeyEvent keyEvent, int32_t keyCode );
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] keyModifier The key modifier\r
  */\r
-void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier );\r
+DALI_CORE_API 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 @@ void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier );
  * @param[in] keyEvent The instance of KeyEvent.\r
  * @param[in] time The time (in ms)\r
  */\r
-void SetTime( KeyEvent keyEvent, unsigned long time );\r
+DALI_CORE_API void SetTime( KeyEvent keyEvent, unsigned long time );\r
 \r
 /**\r
  * @brief Set the state of the key event.\r
@@ -108,7 +108,7 @@ 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
-void SetState( KeyEvent keyEvent, const KeyEvent::State& state );\r
+DALI_CORE_API void SetState( KeyEvent keyEvent, const KeyEvent::State& state );\r
 \r
 } // namespace DevelKeyEvent\r
 \r