Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / chart / Dim3DDiagram.idl
bloba6ef1ae06c3e75c5f535849b343c7929527b3ddc
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 .
19 #ifndef __com_sun_star_chart_Dim3DDiagram_idl__
20 #define __com_sun_star_chart_Dim3DDiagram_idl__
22 #include <com/sun/star/chart/X3DDisplay.idl>
23 #include <com/sun/star/chart/X3DDefaultSetter.idl>
27 module com { module sun { module star { module chart {
30 /** is a service for diagrams that support the capability to render
31 themselves as three-dimensional diagrams as well as
32 two-dimensional ones.
34 published service Dim3DDiagram
36 /** gives access to the properties of the wall and floor objects
37 of the three-dimensional cuboid that contains the actual
38 diagram.
40 interface com::sun::star::chart::X3DDisplay;
42 /** makes it easy to set suitable defaults for illumination and rotation for 3D charts
44 [optional] interface ::com::sun::star::chart::X3DDefaultSetter;
47 /** If set to `TRUE`, the chart becomes a three-dimensional
48 chart. Otherwise it is two-dimensional.
50 [property] boolean Dim3D;
52 /** Perspective of 3D charts ( [0,100] ).
54 [optional, property] long Perspective;
56 /** Horizontal rotation of 3D charts in degrees ( ]-180,180] ).
58 [optional, property] long RotationHorizontal;
60 /** Vertical rotation of 3D charts in degrees ( ]-180,180] ).
62 [optional, property] long RotationVertical;
66 }; }; }; };
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */