1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 module ooo
{ module vba
{ module powerpoint
{
21 constants MsoAnimDirection
{
22 const long msoAnimDirectionAcross
= 18;
23 const long msoAnimDirectionBottom
= 11;
24 const long msoAnimDirectionBottomLeft
= 15;
25 const long msoAnimDirectionBottomRight
= 14;
26 const long msoAnimDirectionCenter
= 28;
27 const long msoAnimDirectionClockwise
= 21;
28 const long msoAnimDirectionCounterclockwise
= 22;
29 const long msoAnimDirectionCycleClockwise
= 43;
30 const long msoAnimDirectionCycleCounterclockwise
= 44;
31 const long msoAnimDirectionDown
= 3;
32 const long msoAnimDirectionDownLeft
= 9;
33 const long msoAnimDirectionDownRight
= 8;
34 const long msoAnimDirectionFontAllCaps
= 40;
35 const long msoAnimDirectionFontBold
= 35;
36 const long msoAnimDirectionFontItalic
= 36;
37 const long msoAnimDirectionFontShadow
= 39;
38 const long msoAnimDirectionFontStrikethrough
= 38;
39 const long msoAnimDirectionFontUnderline
= 37;
40 const long msoAnimDirectionGradual
= 42;
41 const long msoAnimDirectionHorizontal
= 16;
42 const long msoAnimDirectionHorizontalIn
= 23;
43 const long msoAnimDirectionHorizontalOut
= 24;
44 const long msoAnimDirectionIn
= 19;
45 const long msoAnimDirectionInBottom
= 31;
46 const long msoAnimDirectionInCenter
= 30;
47 const long msoAnimDirectionInSlightly
= 29;
48 const long msoAnimDirectionInstant
= 41;
49 const long msoAnimDirectionLeft
= 4;
50 const long msoAnimDirectionNone
= 0;
51 const long msoAnimDirectionOrdinalMask
= 5;
52 const long msoAnimDirectionOut
= 20;
53 const long msoAnimDirectionOutBottom
= 34;
54 const long msoAnimDirectionOutCenter
= 33;
55 const long msoAnimDirectionOutSlightly
= 32;
56 const long msoAnimDirectionRight
= 2;
57 const long msoAnimDirectionSlightly
= 27;
58 const long msoAnimDirectionTop
= 10;
59 const long msoAnimDirectionTopLeft
= 12;
60 const long msoAnimDirectionTopRight
= 13;
61 const long msoAnimDirectionUp
= 1;
62 const long msoAnimDirectionUpLeft
= 6;
63 const long msoAnimDirectionUpRight
= 7;
64 const long msoAnimDirectionVertical
= 17;
65 const long msoAnimDirectionVerticalIn
= 25;
66 const long msoAnimDirectionVerticalOut
= 26;
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */