tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / presentation / Presentation.idl
blob88ebb36068904e59cb28f60ea08e6f80d28f52ce
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 .
22 module com { module sun { module star { module presentation {
25 /** This service is a presentation that is available from a
26 PresentationDocument via the
27 XPresentationSupplier interface.
29 published service Presentation
31 /** lets you start and stop a presentation.
33 <p>It also gives you access to the more advanced features, like
34 rehearse timing and the live modes.
36 interface com::sun::star::presentation::XPresentation;
39 /** This is the standard interface for access to the properties from this
40 service.
42 interface com::sun::star::beans::XPropertySet;
45 /** enables/disables the shape animations.
47 [property] boolean AllowAnimations;
50 /** If this string is not empty, it contains the name of a customized
51 show that is used for the presentation.
53 [property] string CustomShow;
56 /** If this string is not empty, it contains the name of the page where
57 the presentation is started.
59 [property] string FirstPage;
62 /** If this property is set to `TRUE`, the window of the presentation is
63 always on top of all other windows.
65 [property] boolean IsAlwaysOnTop;
68 /** If this property is `TRUE`, all pages are changed automatically.
70 <p>This overrides the properties of the pages.</p>
72 [property] boolean IsAutomatic;
75 /** If this property is set to `TRUE`, the presentation is repeated
76 endlessly.
78 [property] boolean IsEndless;
81 /** If this property is set to `TRUE`, the presentation runs in
82 full-screen mode.
84 [property] boolean IsFullScreen;
87 /** With this property, you can set the presentation to live mode.
88 <p>Implementations that have no live mode capability may ignore this
89 property and always return false.
91 [property] boolean IsLivePresentation;
94 /** If this property is `TRUE`, the mouse is visible during the
95 presentation.
97 [property] boolean IsMouseVisible;
100 /** is the duration of the black screen after the
101 presentation has finished.
103 <p>If this is set to <code>0</code>, no black screen is shown.</p>
105 [property] long Pause;
108 /** If this is set to `TRUE`, the Navigator is opened at the start of the
109 presentation.
111 [property] boolean StartWithNavigator;
114 /** If this is `TRUE`, a pen is shown during presentation.
116 <p>You can draw on the presentation with this pen.</p>
118 [property] boolean UsePen;
123 }; }; }; };
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */