From e9b142613381b2db7edb61360529d6a4bb34da09 Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Thu, 10 Sep 2020 10:08:59 +0100 Subject: [PATCH] Export Setter APIs in DevelKeyEvent Change-Id: Id14c93d01b2cfad68ba2bb9a01b6fad457ab6231 --- dali/devel-api/events/key-event-devel.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dali/devel-api/events/key-event-devel.h b/dali/devel-api/events/key-event-devel.h index aa2b1ef..d19c4ee 100644 --- a/dali/devel-api/events/key-event-devel.h +++ b/dali/devel-api/events/key-event-devel.h @@ -63,7 +63,7 @@ DALI_CORE_API KeyEvent New( const std::string& keyName, * @param[in] keyEvent The instance of KeyEvent. * @param[in] keyName The name given to the key pressed. */ -void SetKeyName( KeyEvent keyEvent, const std::string& keyName ); +DALI_CORE_API void SetKeyName( KeyEvent keyEvent, const std::string& keyName ); /** * @brief Set the actual string of input characters that should be used for input editors. @@ -72,7 +72,7 @@ void SetKeyName( KeyEvent keyEvent, const std::string& keyName ); * @param[in] keyEvent The instance of KeyEvent. * @param[in] keyString The actual string of input characters */ -void SetKeyString( KeyEvent keyEvent, const std::string& keyString ); +DALI_CORE_API void SetKeyString( KeyEvent keyEvent, const std::string& keyString ); /** * @brief Set the unique key code for the key pressed. @@ -81,7 +81,7 @@ void SetKeyString( KeyEvent keyEvent, const std::string& keyString ); * @param[in] keyEvent The instance of KeyEvent. * @param[in] keyCode The unique key code for the key pressed */ -void SetKeyCode( KeyEvent keyEvent, int32_t keyCode ); +DALI_CORE_API void SetKeyCode( KeyEvent keyEvent, int32_t keyCode ); /** * @brief Set the key modifier for special keys like Shift, Alt and Ctrl which modify the next key pressed. @@ -90,7 +90,7 @@ void SetKeyCode( KeyEvent keyEvent, int32_t keyCode ); * @param[in] keyEvent The instance of KeyEvent. * @param[in] keyModifier The key modifier */ -void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier ); +DALI_CORE_API void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier ); /** * @brief Set the time (in ms) that the key event occurred. @@ -99,7 +99,7 @@ void SetKeyModifier( KeyEvent keyEvent, int32_t keyModifier ); * @param[in] keyEvent The instance of KeyEvent. * @param[in] time The time (in ms) */ -void SetTime( KeyEvent keyEvent, unsigned long time ); +DALI_CORE_API void SetTime( KeyEvent keyEvent, unsigned long time ); /** * @brief Set the state of the key event. @@ -108,7 +108,7 @@ void SetTime( KeyEvent keyEvent, unsigned long time ); * @param[in] keyEvent The instance of KeyEvent. * @param[in] state The state of the key event */ -void SetState( KeyEvent keyEvent, const KeyEvent::State& state ); +DALI_CORE_API void SetState( KeyEvent keyEvent, const KeyEvent::State& state ); } // namespace DevelKeyEvent -- 2.7.4