Get the style color and number just once
[LibreOffice.git] / offapi / com / sun / star / presentation / EffectCommands.idl
blobb84884c666b9084c72b5ad8f28be72f05ea6ff44
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 .
21 module com { module sun { module star { module presentation {
24 /**
25 @see ::com::sun::star::animations::XCommand
27 constants EffectCommands
29 /** the command is user defined
31 const short CUSTOM = 0;
33 /** the command is an OLE verb.
34 Required parameters are
35 "Verb" of type long that specifies the verb to execute.
37 const short VERB = 1;
39 /** the command starts playing on a media object.
40 Optional parameters are
41 "MediaTime" of type double that specifies the start
42 time in milliseconds. If not given, play continues at
43 last position known.
45 const short PLAY = 2;
47 /** the command toggles the pause status on a media object.
49 const short TOGGLEPAUSE = 3;
51 /** the command stops the animation on a media object
53 const short STOP = 4;
55 /** the command stops all currently running sound effects.
57 const short STOPAUDIO = 5;
61 }; }; }; };
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */