Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / chart / ChartTitle.idl
blob7a4e8729fbae5c41744e7972eb61184884ae901a
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: ChartTitle.idl,v $
10 * $Revision: 1.15.94.1 $
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_chart_ChartTitle_idl__
31 #define __com_sun_star_chart_ChartTitle_idl__
33 #ifndef __com_sun_star_drawing_Shape_idl__
34 #include <com/sun/star/drawing/Shape.idl>
35 #endif
37 #ifndef _com_sun_star_xml_UserDefinedAttributeSupplier_idl_
38 #include <com/sun/star/xml/UserDefinedAttributeSupplier.idl>
39 #endif
41 //=============================================================================
43 module com { module sun { module star { module chart {
45 //=============================================================================
47 /** specifies titles in a chart.
49 <p>In a chart there may be the following titles: the main title,
50 the sub title, and axis titles of the x- and y-axis.</p>
52 published service ChartTitle
54 service com::sun::star::drawing::Shape;
56 //-------------------------------------------------------------------------
58 /** If this property is <TRUE/> the position is calculated by the application automatically.
59 Setting this property to false will have no effect. Instead use the interface <type scope="com::sun::star::drawing">XShape</type>
60 to set a concrete position.
62 [optional, property] boolean AutomaticPosition;
64 //-------------------------------------------------------------------------
66 /** If a <type>ChartTitle</type> may be stored as XML element,
67 this service should be supported in order to preserve unparsed
68 XML attributes.
70 @since OOo 1.1.2
72 [optional] service com::sun::star::xml::UserDefinedAttributeSupplier;
74 //-------------------------------------------------------------------------
76 /** specifies the rotation of the shape in 100th of degrees.
78 <p>Especially in three-dimensional charts, this property comes
79 in handy if you want to align the axis titles with the axis,
80 which are usually not vertical or horizontal in the
81 two-dimensional projection.</p>
83 [property] long TextRotation;
85 //-------------------------------------------------------------------------
87 /** contains the text of the title.
89 <p>Note that you can not change attributes of parts of a
90 title, e.g., put one word in bold characters. All formatting
91 affects the entire string.</p>
93 [property] string String;
95 };
97 //=============================================================================
99 }; }; }; };
101 #endif