diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-06-11 08:35:22 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-06-11 08:35:22 +0000 |
commit | 15ac8d6d621bb681337d6fc93ddb0907d900d2af (patch) | |
tree | cd097c0b9d4e38ab27bc6057af7bcfa761905542 /offapi/com/sun/star/graphic | |
parent | d7fcdb2fc92dbbcf515c8d83a43de40ad30720ee (diff) |
INTEGRATION: CWS graphicapi (1.1.2); FILE ADDED
2004/05/26 13:26:15 ka 1.1.2.2: added documentation
2004/05/19 14:49:01 ka 1.1.2.1: initial revision
Diffstat (limited to 'offapi/com/sun/star/graphic')
-rwxr-xr-x | offapi/com/sun/star/graphic/GraphicRendererVCL.idl | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/offapi/com/sun/star/graphic/GraphicRendererVCL.idl b/offapi/com/sun/star/graphic/GraphicRendererVCL.idl new file mode 100755 index 000000000..535917a25 --- /dev/null +++ b/offapi/com/sun/star/graphic/GraphicRendererVCL.idl @@ -0,0 +1,113 @@ +/************************************************************************* + * + * $RCSfile: GraphicRendererVCL.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: kz $ $Date: 2004-06-11 09:35:22 $ + * + * The Contents of this file are made available subject to the terms of + * either of the following licenses + * + * - GNU Lesser General Public License Version 2.1 + * - Sun Industry Standards Source License Version 1.1 + * + * Sun Microsystems Inc., October, 2000 + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2000 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + * + * Sun Industry Standards Source License Version 1.1 + * ================================================= + * The contents of this file are subject to the Sun Industry Standards + * Source License Version 1.1 (the "License"); You may not use this file + * except in compliance with the License. You may obtain a copy of the + * License at http://www.openoffice.org/license.html. + * + * Software provided under this License is provided on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, + * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. + * See the License for the specific provisions governing your rights and + * obligations concerning the Software. + * + * The Initial Developer of the Original Code is: Sun Microsystems, Inc. + * + * Copyright: 2000 by Sun Microsystems, Inc. + * + * All Rights Reserved. + * + * Contributor(s): _______________________________________ + * + * + ************************************************************************/ + +#ifndef com_sun_star_graphic_GraphicRendererVCL_idl +#define com_sun_star_graphic_GraphicRendererVCL_idl + +#include <com/sun/star/beans/XPropertySet.idl> +#include <com/sun/star/graphic/XGraphicRenderer.idl> +#include <com/sun/star/awt/Rectangle.idl> + +module com { module sun { module star { module graphic +{ + +/** Service that describes the necessary interfaces and properties + to render a graphic container of <type>XGraphic</type> type + + <p>To render a <type>XGraphic</type> container, just create an + instance of this service, set the appropriate properties and use + the <type>XGraphicRenderer</type> interface to initiate the rendering + process itself</p> + */ +service GraphicRendererVCL +{ + /** Interface to initiate the rendering process + */ + interface ::com::sun::star::graphic::XGraphicRenderer; + + /** The property interface by which the properties of all + supported services are exchanged + */ + interface ::com::sun::star::beans::XPropertySet; + + /** Holds the device onto which the <type>XGraphic</type> + container should be rendered + + <p>In case of using VCL Devices, this property should + hold a <type scope="com::sun::star::awt">XDevice</type> + interface</p> + */ + [property] any Device; + + /** Specifies the destination rectangle, into which the graphic + content is to be rendered onto the device + */ + [property] ::com::sun::star::awt::Rectangle DestinationRect; + + + /** Additional properties for rendering, unspecified at the moment + */ + [optional, property] any RenderData; +}; + +} ; } ; } ; } ; + +#endif |