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 PpSlideLayout
{
22 const long ppLayoutBlank
= 12;
23 const long ppLayoutChart
= 8;
24 const long ppLayoutChartAndText
= 6;
25 const long ppLayoutClipartAndText
= 10;
26 const long ppLayoutClipArtAndVerticalText
= 26;
27 const long ppLayoutFourObjects
= 24;
28 const long ppLayoutLargeObject
= 15;
29 const long ppLayoutMediaClipAndText
= 18;
30 const long ppLayoutMixed
= -2;
31 const long ppLayoutObject
= 16;
32 const long ppLayoutObjectAndText
= 14;
33 const long ppLayoutObjectAndTwoObjects
= 30;
34 const long ppLayoutObjectOverText
= 19;
35 const long ppLayoutOrgchart
= 7;
36 const long ppLayoutTable
= 4;
37 const long ppLayoutText
= 2;
38 const long ppLayoutTextAndChart
= 5;
39 const long ppLayoutTextAndClipart
= 9;
40 const long ppLayoutTextAndMediaClip
= 17;
41 const long ppLayoutTextAndObject
= 13;
42 const long ppLayoutTextAndTwoObjects
= 21;
43 const long ppLayoutTextOverObject
= 20;
44 const long ppLayoutTitle
= 1;
45 const long ppLayoutTitleOnly
= 11;
46 const long ppLayoutTwoColumnText
= 3;
47 const long ppLayoutTwoObjects
= 29;
48 const long ppLayoutTwoObjectsAndObject
= 31;
49 const long ppLayoutTwoObjectsAndText
= 22;
50 const long ppLayoutTwoObjectsOverText
= 23;
51 const long ppLayoutVerticalText
= 25;
52 const long ppLayoutVerticalTitleAndText
= 27;
53 const long ppLayoutVerticalTitleAndTextOverChart
= 28;
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */