From bd3c5c4c234e3dc6b89cd235321945a41a08d562 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Tue, 8 Aug 2017 16:23:07 +0200 Subject: [API CHANGE] tdf#65393 Import signature line images from ooxml showing whether the signature behind the signature line is valid or not. Change-Id: Ia6cca62812019f26d55d234cac767a9b4b7c8175 Reviewed-on: https://gerrit.libreoffice.org/40980 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt --- .../sun/star/security/DocumentSignatureInformation.idl | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'offapi') diff --git a/offapi/com/sun/star/security/DocumentSignatureInformation.idl b/offapi/com/sun/star/security/DocumentSignatureInformation.idl index 8c411a7b276f..99c14af09eb9 100644 --- a/offapi/com/sun/star/security/DocumentSignatureInformation.idl +++ b/offapi/com/sun/star/security/DocumentSignatureInformation.idl @@ -20,6 +20,7 @@ #ifndef __com_sun_star_security_DocumentSignatureInformation_idl__ #define __com_sun_star_security_DocumentSignatureInformation_idl__ +#include #include #include @@ -66,7 +67,21 @@ struct DocumentSignatureInformation * the fact, that not everything in this document is signed. */ boolean PartialDocumentSignature; - + /** + * The ID of the Signature Line + * @since LibreOffice 6.0 + */ + string SignatureLineId; + /** + * The Signature Line Image which is shown when the signature is valid + * @since LibreOffice 6.0 + */ + com::sun::star::graphic::XGraphic ValidSignatureLineImage; + /** + * The Signature Line Image which is shown when the signature is invalid + * @since LibreOffice 6.0 + */ + com::sun::star::graphic::XGraphic InvalidSignatureLineImage; }; -- cgit