From 0fb1e4e9a74b566fb075a58ae2c7632f2cc068de Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Thu, 13 Jun 2024 14:19:44 +0900 Subject: annot: add annotation marker for free text annotation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added new class PDFAnnotationMarkerFreeText as we need a marker to know if the annotation is a special one. Change-Id: Ica0e72dd6bf62b322676c8e87659a3850074522a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168759 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- include/vcl/pdf/PDFAnnotationMarker.hxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/vcl') diff --git a/include/vcl/pdf/PDFAnnotationMarker.hxx b/include/vcl/pdf/PDFAnnotationMarker.hxx index c643856375b5..3be2e6c8ca3d 100644 --- a/include/vcl/pdf/PDFAnnotationMarker.hxx +++ b/include/vcl/pdf/PDFAnnotationMarker.hxx @@ -27,6 +27,11 @@ struct VCL_DLLPUBLIC PDFAnnotationMarker Color maFillColor = COL_TRANSPARENT; }; +/** Free text annotation marker - showing text of the annotation in the document */ +struct VCL_DLLPUBLIC PDFAnnotationMarkerFreeText : public PDFAnnotationMarker +{ +}; + struct VCL_DLLPUBLIC PDFAnnotationMarkerCircle : public PDFAnnotationMarker { }; -- cgit