merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / chart2 / XDiagram.idl
blob6214d7664bf81ff3c1b82d637aa43a60b604e3a1
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XDiagram.idl,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef com_sun_star_chart2_XDiagram_idl
31 #define com_sun_star_chart2_XDiagram_idl
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include <com/sun/star/uno/XInterface.idl>
35 #endif
37 #include <com/sun/star/beans/XPropertySet.idl>
39 #include <com/sun/star/chart2/XLegend.idl>
40 #include <com/sun/star/chart2/XColorScheme.idl>
41 #include <com/sun/star/chart2/data/XLabeledDataSequence.idl>
43 module com
45 module sun
47 module star
49 module chart2
52 interface XDiagram : ::com::sun::star::uno::XInterface
54 /** gets the component that creates a new diagram or modifies
55 an existing diagram according to its rules.
57 // string getChartTypeTemplateServiceName();
59 /** returns the property set that determines the visual appearance
60 of the wall.
62 <p>The wall is the area behind the union of all
63 coordinate systems used in a diagram.</p>
65 com::sun::star::beans::XPropertySet getWall();
67 /** returns the property set that determines the visual appearance
68 of the floor if any.
70 <p>The floor is the bottom of a 3D diagram.
71 For a 2D diagram NULL is returned.</p>
73 com::sun::star::beans::XPropertySet getFloor();
75 /** returns the legend, which may represent data series and other
76 information about a diagram in a separate box.
78 XLegend getLegend();
80 /** sets a new legend.
82 void setLegend( [in] XLegend xLegend );
84 /** returns an <type>XColorScheme</type> that defines the default
85 colors for data series (or data points) in the diagram.
87 XColorScheme getDefaultColorScheme();
89 /** sets an <type>XColorScheme</type> that defines the default
90 colors for data series (or data points) in the diagram.
92 void setDefaultColorScheme( [in] XColorScheme xColorScheme );
94 void setUnusedData( [in] sequence< data::XLabeledDataSequence > aUnusedData );
96 sequence< data::XLabeledDataSequence > getUnusedData();
99 } ; // chart2
100 } ; // com
101 } ; // sun
102 } ; // star
104 #endif