summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/presentation/XSlideShowController.idl
blob: 9476604a2c7788d811bf9780cadcaacba624674d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2008 by Sun Microsystems, Inc.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * $RCSfile: XSlideShowController.idl,v $
 *
 * $Revision: 1.4 $
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/
#ifndef __com_sun_star_presentation_XSlideShowController_idl__
#define __com_sun_star_presentation_XSlideShowController_idl__

#ifndef __com_sun_star_drawing_XDrawPage_idl__
#include <com/sun/star/drawing/XDrawPage.idl>
#endif

#ifndef __com_sun_star_container_XIndexAccess_idl__
#include <com/sun/star/container/XIndexAccess.idl>
#endif

#ifndef __com_sun_star_lang_XComponent_idl__
#include <com/sun/star/lang/XComponent.idl>
#endif

#ifndef __com_sun_star_presentation_XSlideShow_idl__
#include <com/sun/star/presentation/XSlideShow.idl>
#endif

//=============================================================================

 module com {  module sun {  module star {  module presentation {

//=============================================================================

/** interface to control a running slideshow.

    @see XPresentation2
    @since OOo 3.0
*/
interface XSlideShowController
{
    //-------------------------------------------------------------------------

    /** returns true if the slideshow is still running.
        If this returns false, this component is already disposed.
        You can start a new slideshow and get a new instance
        of <type>XSlideShowController</type> from <type>XPresentation2</type>
    */
    boolean isRunning();

    //-------------------------------------------------------------------------

    /** @returns
                the number of slides in this slideshow.

        @see getSlideByIndex
     */
    long getSlideCount();

    //-------------------------------------------------------------------------

    /** gives access to the slides that will be shown in this slideshow.

        <p>Slides are returned in the order they will be displayed in the
        presentation which can be different than the orders of slides in
        the document. Not all slides must be present and each slide can
        be used more than once.

        @returns
            the slide at the specified index.

        @param Index
            specifies the position in the list of slides that are displayed
            in this slideshow. The first index is 0.

        @throws com::sun::star::lang::IndexOutOfBoundException
            if the index is not valid.

     */
    ::com::sun::star::drawing::XDrawPage getSlideByIndex( [in] long Index )
            raises( com::sun::star::lang::IndexOutOfBoundsException );

    //-------------------------------------------------------------------------

    /** addes a listener that recieves events while the slideshow is running. */
    void addSlideShowListener( [in] XSlideShowListener Listener );

    //-------------------------------------------------------------------------

    /** removes a listener. */
    void removeSlideShowListener( [in] XSlideShowListener Listener );

    //-------------------------------------------------------------------------

    /** start next effects that wait on a generic trigger.
        <p>If no generic triggers are waiting the next
        slide will be displayed.
    */
    void gotoNextEffect();

    //-------------------------------------------------------------------------

    /** goto and display first slide */
    void gotoFirstSlide();

    //-------------------------------------------------------------------------

    /** goto and display next slide.
        <p>Remaining effects on the current slide will be skiped.*/
    void gotoNextSlide();

    //-------------------------------------------------------------------------

    /** goto and display previous slide.
        <p>Remaining effects on the current slide will be skiped.*/
    void gotoPreviousSlide();

    //-------------------------------------------------------------------------

    /** goto and display last slide.
        <p>Remaining effects on the current slide will be skiped.*/
    void gotoLastSlide();

    //-------------------------------------------------------------------------

    /** goto the given textual bookmark */
    void gotoBookmark( [in] string Bookmark );

    //-------------------------------------------------------------------------

    /** jumps to the given slide.
        <p>The slide can also be a slide that would normaly not be shown during
        the current slideshow.

        @throws com::sun::star::lang::IllegalArgumentException
            if the given page is not a valid slide of the document for
            which this slideshow is started. Also not allowed are master,
            notes and handout pages.
    */
    void gotoSlide( [in] com::sun::star::drawing::XDrawPage Page )
        raises( com::sun::star::lang::IllegalArgumentException );

    //-------------------------------------------------------------------------

    /** jumps to the slide at the given index.
    */
    void gotoSlideIndex( [in] long Index );

    //-------------------------------------------------------------------------

    /** stop all currently played sounds */
    void stopSound();

    //-------------------------------------------------------------------------

    /** pauses the slideshow. All effects are paused.
        <p>The slideshow continues on next user input or if
        <member>resume</member> is called.
    */
    void pause();

    //-------------------------------------------------------------------------

    /** resumes a paused slideshow.
    */
    void resume();

    //-------------------------------------------------------------------------

    /** returns <TRUE/> if the slideshow is currently paused.

        @see <member>pause</member>
        @see <member>resume</member>
    */
    boolean isPaused();

    //-------------------------------------------------------------------------

    /** pauses the slideshow and blanks the screen in the given color.
        <p>Change attribute <member>Pause</member> to false to unpause
        the slideshow.
    */
    void blankScreen( [in] long Color );

    //-------------------------------------------------------------------------

    /** activates the user interface of this slideshow.

        @see <member>deactivate()</member>
        @see <member>isActive()</member>
    */
    void activate();

    //-------------------------------------------------------------------------
    /** can be called to deactivate the user interface of this slideshow.

        <p>A deactivated
        @see <member>activate()</member>
        @see <member>isActive()</member>
     */
    void deactivate();

    //-------------------------------------------------------------------------

    /** determines if the slideshow is active.

        @return
            <TRUE/> for UI active slideshow
            <br>
            <FALSE/> otherwise
     */
    boolean isActive();

    //-------------------------------------------------------------------------

    /** returns slide that is currently displayed */
    com::sun::star::drawing::XDrawPage getCurrentSlide();

    //-------------------------------------------------------------------------

    /** returns the index of the current slide. */
    long getCurrentSlideIndex();

    //-------------------------------------------------------------------------

    /** the index for the slide that is displayed next. */
    long getNextSlideIndex();

    //-------------------------------------------------------------------------

    /** returns <TRUE/> if the slideshow was started to run endlessly.
     */
    boolean isEndless();

    //-------------------------------------------------------------------------

    /** Returns <TRUE/> if the slideshow was started in full-screen mode.
     */
    boolean isFullScreen();

    //-------------------------------------------------------------------------

    /** If this attribute is set to <TRUE/>, the window of the slideshow is
        always on top of all other windows.
     */
    [attribute] boolean AlwaysOnTop;

    //-------------------------------------------------------------------------

    /** If this attribute is <TRUE/>, the mouse is visible during the
        slideshow.
     */
    [attribute] boolean MouseVisible;

    //-------------------------------------------------------------------------

    /** If this is <TRUE/>, a pen is shown during presentation.

        <p>You can draw on the presentation with this pen.</p>
     */
    [attribute] boolean UsePen;

    //-------------------------------------------------------------------------

    /** This attribute changes the color of the pen. */
    [attribute] long PenColor;

    //-------------------------------------------------------------------------

    /** returns the actuall <type>XSlideShow</type> instance that runs the
        slideshow.
        <br>Normaly all navigation should be done using this controller and
        not the <type>XSlideShow</type> itself. */
    XSlideShow getSlideShow();

    //-------------------------------------------------------------------------
};

//=============================================================================

}; }; }; };

#endif