1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef INCLUDED_SLIDESHOW_GENERATEEVENT_HXX
25 #define INCLUDED_SLIDESHOW_GENERATEEVENT_HXX
26 
27 #include "slideshowcontext.hxx"
28 #include "delayevent.hxx"
29 #include "com/sun/star/uno/Any.hxx"
30 
31 namespace slideshow {
32 namespace internal {
33 
34 /** Create an event for the given description, calling the given functor.
35 
36     @param rEventDescription
37     Directly from API
38 
39     @param rFunctor
40     Functor to call when event fires.
41 
42     @param rContext
43     Context struct, to provide event queue
44 
45     @param nAdditionalDelay
46     Additional delay, gets added on top of timeout.
47 */
48 EventSharedPtr generateEvent(
49     ::com::sun::star::uno::Any const& rEventDescription,
50     Delay::FunctorT const& rFunctor,
51     SlideShowContext const& rContext,
52     double nAdditionalDelay );
53 
54 } // namespace internal
55 } // namespace slideshow
56 
57 #endif /* INCLUDED_SLIDESHOW_GENERATEEVENT_HXX */
58 
59