summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart/XChartDocument.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/chart/XChartDocument.idl')
-rw-r--r--offapi/com/sun/star/chart/XChartDocument.idl166
1 files changed, 83 insertions, 83 deletions
diff --git a/offapi/com/sun/star/chart/XChartDocument.idl b/offapi/com/sun/star/chart/XChartDocument.idl
index 14322c6edf4a..5522020d7a2b 100644
--- a/offapi/com/sun/star/chart/XChartDocument.idl
+++ b/offapi/com/sun/star/chart/XChartDocument.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -24,77 +24,77 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-#ifndef __com_sun_star_chart_XChartDocument_idl__
-#define __com_sun_star_chart_XChartDocument_idl__
-
-#ifndef __com_sun_star_frame_XModel_idl__
-#include <com/sun/star/frame/XModel.idl>
-#endif
-
-#ifndef __com_sun_star_drawing_XShape_idl__
-#include <com/sun/star/drawing/XShape.idl>
-#endif
-
-#ifndef __com_sun_star_beans_XPropertySet_idl__
-#include <com/sun/star/beans/XPropertySet.idl>
-#endif
-
-#ifndef __com_sun_star_chart_XDiagram_idl__
-#include <com/sun/star/chart/XDiagram.idl>
-#endif
-
-#ifndef __com_sun_star_chart_XChartData_idl__
-#include <com/sun/star/chart/XChartData.idl>
-#endif
-
-
-//=============================================================================
-
- module com { module sun { module star { module chart {
-
-//=============================================================================
-
+#ifndef __com_sun_star_chart_XChartDocument_idl__
+#define __com_sun_star_chart_XChartDocument_idl__
+
+#ifndef __com_sun_star_frame_XModel_idl__
+#include <com/sun/star/frame/XModel.idl>
+#endif
+
+#ifndef __com_sun_star_drawing_XShape_idl__
+#include <com/sun/star/drawing/XShape.idl>
+#endif
+
+#ifndef __com_sun_star_beans_XPropertySet_idl__
+#include <com/sun/star/beans/XPropertySet.idl>
+#endif
+
+#ifndef __com_sun_star_chart_XDiagram_idl__
+#include <com/sun/star/chart/XDiagram.idl>
+#endif
+
+#ifndef __com_sun_star_chart_XChartData_idl__
+#include <com/sun/star/chart/XChartData.idl>
+#endif
+
+
+//=============================================================================
+
+ module com { module sun { module star { module chart {
+
+//=============================================================================
+
/** manages the chart document.
- @see XDiagram
+ @see XDiagram
@see XChartData
*/
published interface XChartDocument: com::sun::star::frame::XModel
-{
- //-------------------------------------------------------------------------
-
- /** @returns
- the shape of the main title of the chart document.
-
+{
+ //-------------------------------------------------------------------------
+
+ /** @returns
+ the shape of the main title of the chart document.
+
@see ChartTitle
*/
- com::sun::star::drawing::XShape getTitle();
-
- //-------------------------------------------------------------------------
-
- /** @returns
+ com::sun::star::drawing::XShape getTitle();
+
+ //-------------------------------------------------------------------------
+
+ /** @returns
the shape of the subtitle of the chart document.
<p>Usually the subtitle is smaller than the main title by
default. And it is most commonly placed below the main title
by default.</p>
-
+
@see ChartTitle
*/
- com::sun::star::drawing::XShape getSubTitle();
-
- //-------------------------------------------------------------------------
-
- /** @returns
- the shape of the legend of the chart document.
+ com::sun::star::drawing::XShape getSubTitle();
+
+ //-------------------------------------------------------------------------
+
+ /** @returns
+ the shape of the legend of the chart document.
@see ChartLegend
*/
- com::sun::star::drawing::XShape getLegend();
-
- //-------------------------------------------------------------------------
-
- /** @returns
+ com::sun::star::drawing::XShape getLegend();
+
+ //-------------------------------------------------------------------------
+
+ /** @returns
the properties of the background area of the chart document.
<p>The area's extent is equal to the document size. If you
@@ -106,19 +106,19 @@ published interface XChartDocument: com::sun::star::frame::XModel
@see ChartArea
@see X3DDisplay
*/
- com::sun::star::beans::XPropertySet getArea();
-
- //-------------------------------------------------------------------------
-
- /** @returns
+ com::sun::star::beans::XPropertySet getArea();
+
+ //-------------------------------------------------------------------------
+
+ /** @returns
the diagram of the chart document.
@see Diagram
*/
- com::sun::star::chart::XDiagram getDiagram();
-
- //-------------------------------------------------------------------------
-
+ com::sun::star::chart::XDiagram getDiagram();
+
+ //-------------------------------------------------------------------------
+
/** sets the diagram for the chart document.
<p>Setting a new diagram implicitly disposes the previous
@@ -131,11 +131,11 @@ published interface XChartDocument: com::sun::star::frame::XModel
which should be implemented by an
<type>XChartDocument</type>.
*/
- void setDiagram( [in] com::sun::star::chart::XDiagram xDiagram );
-
- //-------------------------------------------------------------------------
-
- /** @returns
+ void setDiagram( [in] com::sun::star::chart::XDiagram xDiagram );
+
+ //-------------------------------------------------------------------------
+
+ /** @returns
the data of the chart.
<p>The returned object supports interface <type>XChartDataArray</type>
@@ -143,15 +143,15 @@ published interface XChartDocument: com::sun::star::frame::XModel
<p>Since OOo 3.3 the returned object also supports interface <type>XComplexDescriptionAccess</type>
which can be used to access complex hierarchical axis descriptions.</p>
-
+
@see XChartData
@see XChartDataArray
@see XComplexDescriptionAccess
*/
- com::sun::star::chart::XChartData getData();
-
- //-------------------------------------------------------------------------
-
+ com::sun::star::chart::XChartData getData();
+
+ //-------------------------------------------------------------------------
+
/** attaches data to the chart.
<p>The given object needs to support interface <type>XChartDataArray</type>.</p>
@@ -169,12 +169,12 @@ published interface XChartDocument: com::sun::star::frame::XModel
@param xData
the object that provides the new data.
*/
- void attachData( [in] com::sun::star::chart::XChartData xData );
-
-};
-
-//=============================================================================
-
-}; }; }; };
-
-#endif
+ void attachData( [in] com::sun::star::chart::XChartData xData );
+
+};
+
+//=============================================================================
+
+}; }; }; };
+
+#endif