diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2020-05-17 20:32:49 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2020-07-29 20:46:07 +0200 |
commit | 0bcca08d53d6f67f5021ea888ea096ec9ac21ba8 (patch) | |
tree | 39096cdc64af40c4ed30283278d33cccdd8d0450 /include | |
parent | 6cfffc0cfd30792e1e7d26bff3a5abf132e74761 (diff) |
vcl: VectorGraphicSearch return text rectangles in 100th mm
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95261
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
(cherry picked from commit 936a670f61fed891f8aaec77b2422f366240f193)
Change-Id: I12e7ad10dc3ed68d20d94713acece1361da27e81
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95834
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
(cherry picked from commit f73fef6b9b519adaadf51abb5aa1fb3dd0cda9a9)
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/VectorGraphicSearch.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/VectorGraphicSearch.hxx b/include/vcl/VectorGraphicSearch.hxx index 41c7745d0cf5..5420e161448b 100644 --- a/include/vcl/VectorGraphicSearch.hxx +++ b/include/vcl/VectorGraphicSearch.hxx @@ -15,6 +15,7 @@ #include <vcl/dllapi.h> #include <basegfx/range/b2drectangle.hxx> +#include <basegfx/vector/b2dsize.hxx> #include <memory> @@ -34,6 +35,7 @@ public: VectorGraphicSearch(Graphic const& rGraphic); ~VectorGraphicSearch(); bool search(OUString const& rSearchString); + basegfx::B2DSize pageSize(); bool next(); int index(); std::vector<basegfx::B2DRectangle> getTextRectangles(); |