summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMihai <mihai.varga@collabora.com>2015-02-13 12:56:11 +0200
committerCaolán McNamara <caolanm@redhat.com>2015-02-17 13:31:29 +0000
commit98b27ea907517d585f5d951895ae733653a442d2 (patch)
tree34972139f7f63cbd51a7b917e4a9dc0d77a5c89c /include
parent61e9e6d08f79a5b75674b94bccc05880256671e8 (diff)
SkipImages option for PDF import
This option allows images and drawings to be skipped while importing a PDF, the main reason was performance improvement where images were not needed. Change-Id: Ibca342ff6e7005bedf7b16869473832ce2576fb2 Reviewed-on: https://gerrit.libreoffice.org/14470 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/LibreOfficeKit/LibreOfficeKit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h
index 9c5cca56cf6d..7cbaad38d5ec 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/include/LibreOfficeKit/LibreOfficeKit.h
@@ -143,6 +143,9 @@ struct _LibreOfficeKitClass
void (*destroy) (LibreOfficeKit* pThis);
LibreOfficeKitDocument* (*documentLoad) (LibreOfficeKit* pThis, const char* pURL);
char* (*getError) (LibreOfficeKit* pThis);
+ LibreOfficeKitDocument* (*documentLoadWithOptions) (LibreOfficeKit* pThis,
+ const char* pURL,
+ const char* pOptions);
void (*postKeyEvent) (LibreOfficeKit* pThis, int nType, int nCode);
};