summaryrefslogtreecommitdiff
path: root/slideshow/source/inc
diff options
context:
space:
mode:
authorAmin Irgaliev <irgaliev01@mail.ru>2023-05-03 19:54:17 +0400
committerMike Kaganski <mike.kaganski@collabora.com>2023-05-04 06:23:38 +0200
commit8d8779808063aeedcf0d2b7efba3d2f82e0d7bef (patch)
tree16e849b905c5f460a2262647f609e0c3deb07dab /slideshow/source/inc
parent83b1f6b58a30bdb589e9ce73deef39f021aebde1 (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.hxx8
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;
};