diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2017-05-08 00:26:08 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-05-16 11:22:36 +0200 |
commit | 838725b62320c6f9aebdeb45558620952abb5bec (patch) | |
tree | 0e845414a77c4397c3d4d22a3069b507a8f996bd /include | |
parent | 1c7e873dbca6235be66fe1e6a593b2acbd18b059 (diff) |
lok: sc: notify cell cursor position to address control in client
A new callback has been introduced for notifying the client:
LOK_CALLBACK_CELL_ADDRESS
Change-Id: I40b38a3cb8fb658c3f00332d56cfcbaf98e13771
Reviewed-on: https://gerrit.libreoffice.org/37357
Reviewed-by: pranavk <pranavk@collabora.co.uk>
Tested-by: pranavk <pranavk@collabora.co.uk>
(cherry picked from commit 9cc9300bc20e9367728aa4b7ec3a789fdd274aff)
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitEnums.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h b/include/LibreOfficeKit/LibreOfficeKitEnums.h index dffc728eb641..300b71bb01ff 100644 --- a/include/LibreOfficeKit/LibreOfficeKitEnums.h +++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h @@ -500,7 +500,12 @@ typedef enum * * The payload says if we are invalidating a row or column header. */ - LOK_CALLBACK_INVALIDATE_HEADER = 33 + LOK_CALLBACK_INVALIDATE_HEADER = 33, + /** + * The text content of the address field in Calc. + */ + LOK_CALLBACK_CELL_ADDRESS = 34 + } LibreOfficeKitCallbackType; |