summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2024-06-13 14:19:44 +0900
committerTomaž Vajngerl <quikee@gmail.com>2024-06-14 04:07:12 +0200
commit0fb1e4e9a74b566fb075a58ae2c7632f2cc068de (patch)
treef657a04bfe28f52c2865e813903c9b5e441815f2 /include/vcl
parent0e2409e5e3c73ec25c61aa4ea140d114869ea512 (diff)
annot: add annotation marker for free text annotation
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 <quikee@gmail.com>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/pdf/PDFAnnotationMarker.hxx5
1 files changed, 5 insertions, 0 deletions
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
{
};