summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text
diff options
context:
space:
mode:
authorSzabolcs Toth <toth.szabolcs@nisz.hu>2020-10-09 13:00:30 +0200
committerLászló Németh <nemeth@numbertext.org>2020-10-20 09:17:32 +0200
commit1c593e1916c9164c7db71da2017cfc26972f8e9f (patch)
tree97db236a78c7b9c62b0ea1a0e1794bacfb259947 /offapi/com/sun/star/text
parentc719db99166a7b4770855a9599ec65c70cd256c5 (diff)
tdf#133045 sw: add shape alignment to the top page border
Allow relative alignment to the top page border (the area over PAGE_PRINT_AREA) by adding constant PAGE_PRINT_AREA_TOP to com::sun::star::text::RelOrientation. Fix DOCX shape import of <wp:positionV relativeFrom="topMargin">. Follow-up of commit 6788133b3bdf02097d66a99047aa7bcba3a99a66 (tdf#135720 sw: fix PAGE_PRINT_AREA_BOTTOM alignment with footer) and commit 79107d3f8d10aa0f38641775c5eb47dcfd4fd37e (sw from-bottom relative orientation: add UNO API). Co-authored-by: Balázs Regényi Change-Id: I3a3f7324c0ef8d448526982d3e2f09b67f5fd4d4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104113 Tested-by: László Németh <nemeth@numbertext.org> Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'offapi/com/sun/star/text')
-rw-r--r--offapi/com/sun/star/text/RelOrientation.idl8
1 files changed, 7 insertions, 1 deletions
diff --git a/offapi/com/sun/star/text/RelOrientation.idl b/offapi/com/sun/star/text/RelOrientation.idl
index 59f39a045740..3ce3160d4a36 100644
--- a/offapi/com/sun/star/text/RelOrientation.idl
+++ b/offapi/com/sun/star/text/RelOrientation.idl
@@ -73,12 +73,18 @@ published constants RelOrientation
*/
const short TEXT_LINE = 9;
- /** Similar to PAGE_PRINT_AREA, but count from bottom, not from top.
+ /** Bottom page border (page area below PAGE_PRINT_AREA).
@since LibreOffice 7.0
*/
const short PAGE_PRINT_AREA_BOTTOM = 10;
+ /** Top page border (page area above PAGE_PRINT_AREA).
+
+ @since LibreOffice 7.1
+ */
+ const short PAGE_PRINT_AREA_TOP = 11;
+
};