1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef __com_sun_star_sheet_SpreadsheetDrawPage_idl__ 24#define __com_sun_star_sheet_SpreadsheetDrawPage_idl__ 25 26#ifndef __com_sun_star_drawing_XDrawPage_idl__ 27#include <com/sun/star/drawing/XDrawPage.idl> 28#endif 29 30#ifndef __com_sun_star_drawing_XShapeGrouper_idl__ 31#include <com/sun/star/drawing/XShapeGrouper.idl> 32#endif 33 34#ifndef __com_sun_star_lang_XServiceInfo_idl__ 35#include <com/sun/star/lang/XServiceInfo.idl> 36#endif 37 38//============================================================================= 39 40 module com { module sun { module star { module sheet { 41 42//============================================================================= 43 44/** This abstract service is implemented by every page of a 45 <type>SpreadsheetDocument</type>. 46 47 @example create and insert a couple of <type scope="com::sun::star::drawing">LineShape</type>s: 48 49 <listing> 50 xPage = xDoc.DrawPages(0) 51 for x% = 0 to 200 52 xShape = xProv.createInstance( "com.sun.star.drawing.LineShape" ) 53 xShape.LineColor = rgb( 255, 0, n%+20 ) 54 xShape.LineWidth = 20 55 xShape.Position = Point( x%, 2*x% ) 56 xShape.Size = Size( 300-x%, 20 ) 57 xPage.add( xShape ) 58 next x% 59 </listing> 60 61 @since OpenOffice 1.1.2 62 */ 63published service SpreadsheetDrawPage 64{ 65 66 67 /** manages the <type scope="com::sun::star::drawing">Shape</type>s of this page. 68 69 <p>It also lets you add new <type scope="com::sun::star::drawing">Shape</type>s. The program currently 70 requires that these <type scope="com::sun::star::drawing">Shape</type>s be created by the factory of 71 the document. 72 73 @see SpreadsheetDocument 74 */ 75 interface com::sun::star::drawing::XDrawPage; 76 77 78 /** With this interface you can group/ungroup a collection of 79 <type scope="com::sun::star::drawing">Shape</type>s. 80 */ 81 interface com::sun::star::drawing::XShapeGrouper; 82 83 84 /** returns the services implemented by this instance. 85 */ 86 interface com::sun::star::lang::XServiceInfo; 87}; 88 89//============================================================================= 90 91}; }; }; }; 92 93#endif 94