diff options
author | Corentin Noël <corentin.noel@collabora.com> | 2019-11-10 11:46:37 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2019-11-19 09:55:25 +0100 |
commit | 4e14163ceff6bc05ed372358ed66272caa1b35c2 (patch) | |
tree | 7bf56326d7b5a7fed56e68e2871b76f2ffb6ce2f /include | |
parent | 72bfc8aced60be0adaeabbd496ea8f755c35b016 (diff) |
lokdocview: Add support for get_command_values
Change-Id: I6a007724de8aea0e4de035313855acd6e9342ee7
Reviewed-on: https://gerrit.libreoffice.org/82377
Tested-by: Jenkins
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitGtk.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitGtk.h b/include/LibreOfficeKit/LibreOfficeKitGtk.h index fb18aae8aab6..15958e35644b 100644 --- a/include/LibreOfficeKit/LibreOfficeKitGtk.h +++ b/include/LibreOfficeKit/LibreOfficeKitGtk.h @@ -235,6 +235,18 @@ void lok_doc_view_post_command (LOKDocView* const gchar* pArguments, gboolean bNotifyWhenFinished); +/** + * lok_doc_view_get_command_values: + * @pDocView: the #LOKDocView instance + * @pCommand: the command to issue to LO core + * + * Get a json mapping of the possible values for the given command. + * In the form of: {commandName: unoCmd, commandValues: {possible_values}} + * + * Returns: A json mapping of the possible values for the given command + */ +gchar * lok_doc_view_get_command_values (LOKDocView* pDocView, + const gchar* pCommand); /** * lok_doc_view_find_next: |