Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sd / source / console / PresenterCurrentSlideObserver.cxx
blob27e5dc7e45e40f46152c1e8be8f1221c8594e853
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <utility>
22 #include "PresenterCurrentSlideObserver.hxx"
24 using namespace ::com::sun::star;
25 using namespace ::com::sun::star::uno;
27 namespace sdext::presenter {
29 //===== PresenterCurrentSlideObserver =========================================
31 PresenterCurrentSlideObserver::PresenterCurrentSlideObserver (
32 ::rtl::Reference<PresenterController> xPresenterController,
33 const Reference<presentation::XSlideShowController>& rxSlideShowController)
34 : PresenterCurrentSlideObserverInterfaceBase(m_aMutex),
35 mpPresenterController(std::move(xPresenterController)),
36 mxSlideShowController(rxSlideShowController)
38 if( mpPresenterController.is() )
40 mpPresenterController->addEventListener(this);
43 if( mxSlideShowController.is() )
45 // Listen for events from the slide show controller.
46 mxSlideShowController->addSlideShowListener(static_cast<XSlideShowListener*>(this));
50 PresenterCurrentSlideObserver::~PresenterCurrentSlideObserver()
54 void SAL_CALL PresenterCurrentSlideObserver::disposing()
56 // Disconnect form the slide show controller.
57 if(mxSlideShowController.is())
59 mxSlideShowController->removeSlideShowListener(static_cast<XSlideShowListener*>(this));
60 mxSlideShowController = nullptr;
63 if (mpPresenterController.is())
64 mpPresenterController->removeEventListener(this);
67 //----- XSlideShowListener ----------------------------------------------------
69 void SAL_CALL PresenterCurrentSlideObserver::beginEvent (
70 const Reference<animations::XAnimationNode>&)
73 void SAL_CALL PresenterCurrentSlideObserver::endEvent (
74 const Reference<animations::XAnimationNode>&)
77 void SAL_CALL PresenterCurrentSlideObserver::repeat (
78 const css::uno::Reference<css::animations::XAnimationNode>&,
79 sal_Int32)
82 void SAL_CALL PresenterCurrentSlideObserver::paused()
86 void SAL_CALL PresenterCurrentSlideObserver::resumed()
90 void SAL_CALL PresenterCurrentSlideObserver::slideEnded (sal_Bool bReverse)
92 // Determine whether the new current slide (the one after the one that
93 // just ended) is the slide past the last slide in the presentation,
94 // i.e. the one that says something like "click to end presentation...".
95 if (mxSlideShowController.is() && !bReverse)
96 if (mxSlideShowController->getNextSlideIndex() < 0)
97 if( mpPresenterController.is() )
98 mpPresenterController->UpdateCurrentSlide(+1);
101 void SAL_CALL PresenterCurrentSlideObserver::hyperLinkClicked (const OUString &)
105 void SAL_CALL PresenterCurrentSlideObserver::slideTransitionStarted()
107 if( mpPresenterController.is() )
108 mpPresenterController->UpdateCurrentSlide(0);
111 void SAL_CALL PresenterCurrentSlideObserver::slideTransitionEnded()
115 void SAL_CALL PresenterCurrentSlideObserver::slideAnimationsEnded()
119 //----- XEventListener --------------------------------------------------------
121 void SAL_CALL PresenterCurrentSlideObserver::disposing (
122 const lang::EventObject& rEvent)
124 if (rEvent.Source == Reference<XInterface>(static_cast<XWeak*>(mpPresenterController.get())))
125 dispose();
126 else if (rEvent.Source == mxSlideShowController)
127 mxSlideShowController = nullptr;
130 } // end of namespace ::sdext::presenter
132 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */