summaryrefslogtreecommitdiff
path: root/offapi
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 /offapi
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 'offapi')
-rw-r--r--offapi/UnoApi_offapi.mk1
-rw-r--r--offapi/com/sun/star/presentation/XSlideShowNavigationListener.idl28
2 files changed, 29 insertions, 0 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index bdae567ce601..96ed8e6e943a 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -2983,6 +2983,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/presentation,\
XSlideShow \
XSlideShowController \
XSlideShowListener \
+ XSlideShowNavigationListener \
XSlideShowView \
XTransition \
XTransitionFactory \
diff --git a/offapi/com/sun/star/presentation/XSlideShowNavigationListener.idl b/offapi/com/sun/star/presentation/XSlideShowNavigationListener.idl
new file mode 100644
index 000000000000..683c1b6c6336
--- /dev/null
+++ b/offapi/com/sun/star/presentation/XSlideShowNavigationListener.idl
@@ -0,0 +1,28 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+module com { module sun { module star { module presentation {
+
+/** Listener interface with navigation support to receive global slide show events.<p>
+
+ @see XSlideShowListener
+
+ @since LibreOffice 7.6
+ */
+interface XSlideShowNavigationListener : com::sun::star::presentation::XSlideShowListener
+{
+ /** Notify that the context menu has been requested
+ @param point point to show the context menu
+ */
+ void contextMenuShow( [in] com::sun::star::awt::Point point );
+};
+
+}; }; }; };
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */