diff options
author | Jihoon Kim <jihoon48.kim@samsung.com> | 2018-01-09 08:13:47 +0900 |
---|---|---|
committer | Jihoon Kim <jihoon48.kim@samsung.com> | 2018-01-09 11:00:43 +0900 |
commit | d1823c6152ce4cfb4d143aa7b0620379ec333dc9 (patch) | |
tree | f6e833e6dce0dd1932c0824a4a9b2aaaa1540373 /src | |
parent | bb5f9d156ca9fad76a695f78d767a0c27273360d (diff) |
ecore_imf: Add transaction start and end event callback
@feature
Change-Id: I091b4e291b821ee5b6cc180d98024e251d4bcd03
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ecore_imf/Ecore_IMF.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index 0fc821da2f..c4ff9ec955 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h | |||
@@ -195,7 +195,9 @@ typedef enum | |||
195 | ECORE_IMF_CALLBACK_DELETE_SURROUNDING, /**< "DELETE_SURROUNDING" is called when the input method needs to delete all or part of the context surrounding the cursor @since 1.2 */ | 195 | ECORE_IMF_CALLBACK_DELETE_SURROUNDING, /**< "DELETE_SURROUNDING" is called when the input method needs to delete all or part of the context surrounding the cursor @since 1.2 */ |
196 | ECORE_IMF_CALLBACK_SELECTION_SET, /**< "SELECTION_SET" is called when the input method needs to set the selection @since 1.9 */ | 196 | ECORE_IMF_CALLBACK_SELECTION_SET, /**< "SELECTION_SET" is called when the input method needs to set the selection @since 1.9 */ |
197 | ECORE_IMF_CALLBACK_PRIVATE_COMMAND_SEND, /**< "PRIVATE_COMMAND_SEND" is called when the input method sends a private command @since 1.12 */ | 197 | ECORE_IMF_CALLBACK_PRIVATE_COMMAND_SEND, /**< "PRIVATE_COMMAND_SEND" is called when the input method sends a private command @since 1.12 */ |
198 | ECORE_IMF_CALLBACK_COMMIT_CONTENT /**< "COMMIT_CONTENT" is called when the input method commits content such as an image @since 1.20 */ | 198 | ECORE_IMF_CALLBACK_COMMIT_CONTENT, /**< "COMMIT_CONTENT" is called when the input method commits content such as an image @since 1.20 */ |
199 | ECORE_IMF_CALLBACK_TRANSACTION_START, /**< "TRANSACTION_START" is called when a new transaction sequence starts. @since 1.21 */ | ||
200 | ECORE_IMF_CALLBACK_TRANSACTION_END /**< "TRANSACTION_END" is called when a new transaction sequence starts. @since 1.21 */ | ||
199 | } Ecore_IMF_Callback_Type; | 201 | } Ecore_IMF_Callback_Type; |
200 | 202 | ||
201 | /** | 203 | /** |