diff options
author | Amin Irgaliev <irgaliev01@mail.ru> | 2023-05-03 19:54:17 +0400 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2023-05-04 06:23:38 +0200 |
commit | 8d8779808063aeedcf0d2b7efba3d2f82e0d7bef (patch) | |
tree | 16e849b905c5f460a2262647f609e0c3deb07dab /slideshow/source/inc | |
parent | 83b1f6b58a30bdb589e9ce73deef39f021aebde1 (diff) |
tdf#154839 Add navigation buttons for slides
Change-Id: Ie9a533acf94f5760c6233aa70259bec620f420fb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150448
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'slideshow/source/inc')
-rw-r--r-- | slideshow/source/inc/eventmultiplexer.hxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/slideshow/source/inc/eventmultiplexer.hxx b/slideshow/source/inc/eventmultiplexer.hxx index e0dd6fd31eb5..21fa333cd109 100644 --- a/slideshow/source/inc/eventmultiplexer.hxx +++ b/slideshow/source/inc/eventmultiplexer.hxx @@ -31,6 +31,8 @@ #include "unoview.hxx" +namespace basegfx { class B2DPoint; } + namespace com::sun::star::drawing { class XShape; } namespace slideshow::internal { @@ -648,6 +650,12 @@ public: */ void notifyHyperlinkClicked( OUString const& hyperLink ); + basegfx::B2DPoint toMatrixPoint(css::uno::Reference<css::uno::XInterface> xInterface, + basegfx::B2DPoint pnt); + + basegfx::B2DPoint toNormalPoint(css::uno::Reference<css::uno::XInterface> xInterface, + basegfx::B2DPoint pnt); + private: std::unique_ptr<EventMultiplexerImpl> mpImpl; }; |