summaryrefslogtreecommitdiff
path: root/include/LibreOfficeKit
diff options
context:
space:
mode:
authorMarco Cecchetti <marco.cecchetti@collabora.com>2018-04-03 16:49:08 +0200
committerMarco Cecchetti <mrcekets@gmail.com>2018-04-03 21:40:22 +0200
commit00d5cbf5f2a47c1614891c071b35f4a9e0b54354 (patch)
tree14281770652863f8e81282e4492c1888b758fe97 /include/LibreOfficeKit
parentfaf24b27a731147518390bf88efccb251a911117 (diff)
lok - sc: validity list drop down button callback
Change-Id: Iaedc7f15147ea7f09e71877b592f932e3ecb37d5 Reviewed-on: https://gerrit.libreoffice.org/51596 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r--include/LibreOfficeKit/LibreOfficeKitEnums.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 020bbff90f20..300d91e1c8c4 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -570,6 +570,15 @@ typedef enum
LOK_CALLBACK_WINDOW = 36,
/**
+ * When for the current cell is defined a validity list we need to show
+ * a drop down button in the form of a marker.
+ *
+ * The payload format is: "x, y, visible" where x, y are the current
+ * cell cursor coordinates and visible is set to 0 or 1.
+ */
+ LOK_CALLBACK_VALIDITY_LIST_BUTTON = 37,
+
+ /**
* Notification that the clipboard contents have changed.
* Typically fired in response to copying to clipboard.
*
@@ -578,7 +587,7 @@ typedef enum
* in the future the contents might be included for
* convenience.
*/
- LOK_CALLBACK_CLIPBOARD_CHANGED = 37,
+ LOK_CALLBACK_CLIPBOARD_CHANGED = 38,
}
LibreOfficeKitCallbackType;