diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2019-12-24 16:03:23 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2019-12-29 17:00:44 +0100 |
commit | 5a7cfe98e96489b7fa19d286ddd1e8c8e591d7dd (patch) | |
tree | d6a1496ac0e143d99d162b5e7002e07a73fa8841 /include | |
parent | 50f13bbedf0bba0509b7bf98bc782ec821c7777b (diff) |
pdf: Add option for PDF/UA to the PDF export dialog
This is adding PDF/UA option to the PDF export dialog. When PDF/UA
support is enabled, it automatically enables PDFTag support as it
is required for PDF/UA.
Change-Id: Ib3dece964523d4ed9884c98a6022a91120c6065f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85921
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/pdfwriter.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx index 47d2528aa460..c68feba88f93 100644 --- a/include/vcl/pdfwriter.hxx +++ b/include/vcl/pdfwriter.hxx @@ -552,6 +552,10 @@ The following structure describes the permissions used in PDF security /* decides the PDF language level to be produced */ PDFVersion Version; + + /* PDF/UA compliance */ + bool UniversalAccessibilityCompliance; + /* valid for PDF >= 1.4 causes the MarkInfo entry in the document catalog to be set */ |