1*d1766043SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*d1766043SAndrew Rist * distributed with this work for additional information 6*d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9*d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10*d1766043SAndrew Rist * 11*d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*d1766043SAndrew Rist * 13*d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*d1766043SAndrew Rist * software distributed under the License is distributed on an 15*d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17*d1766043SAndrew Rist * specific language governing permissions and limitations 18*d1766043SAndrew Rist * under the License. 19*d1766043SAndrew Rist * 20*d1766043SAndrew Rist *************************************************************/ 21*d1766043SAndrew Rist 22*d1766043SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#ifndef com_sun_star_graphic_XGraphicProvider_idl 25cdf0e10cSrcweir#define com_sun_star_graphic_XGraphicProvider_idl 26cdf0e10cSrcweir 27cdf0e10cSrcweir#include <com/sun/star/io/XInputStream.idl> 28cdf0e10cSrcweir#include <com/sun/star/io/XOutputStream.idl> 29cdf0e10cSrcweir#include <com/sun/star/io/IOException.idl> 30cdf0e10cSrcweir#include <com/sun/star/lang/IllegalArgumentException.idl> 31cdf0e10cSrcweir#include <com/sun/star/lang/WrappedTargetException.idl> 32cdf0e10cSrcweir#include <com/sun/star/beans/PropertyValues.idl> 33cdf0e10cSrcweir#include <com/sun/star/beans/XPropertySet.idl> 34cdf0e10cSrcweir#include <com/sun/star/graphic/XGraphic.idl> 35cdf0e10cSrcweir 36cdf0e10cSrcweirmodule com { module sun { module star { module graphic 37cdf0e10cSrcweir{ 38cdf0e10cSrcweir 39cdf0e10cSrcweir/** This interface acts as the main interface to handle graphic 40cdf0e10cSrcweir content. It is used to load graphics, store graphics and 41cdf0e10cSrcweir to get information about unloaded graphics 42cdf0e10cSrcweir */ 43cdf0e10cSrcweirpublished interface XGraphicProvider : ::com::sun::star::uno::XInterface 44cdf0e10cSrcweir{ 45cdf0e10cSrcweir /** Calling this method returns a 46cdf0e10cSrcweir <type scope="com::sun::star::beans">XPropertySet</type> 47cdf0e10cSrcweir interface that gives access to the properties of the 48cdf0e10cSrcweir unloaded graphic 49cdf0e10cSrcweir 50cdf0e10cSrcweir <p>In most cases, this method will be used to query the 51cdf0e10cSrcweir mime type of the graphic and, in the case of pixel graphics, 52cdf0e10cSrcweir the resulting size after loading</p> 53cdf0e10cSrcweir 54cdf0e10cSrcweir @param MediaProperties 55cdf0e10cSrcweir A sequence of property values to describe the location 56cdf0e10cSrcweir of the graphic, for which the attributes should be returned 57cdf0e10cSrcweir 58cdf0e10cSrcweir @returns 59cdf0e10cSrcweir A <type scope="com::sun::star::beans">XPropertySet</type> interface 60cdf0e10cSrcweir to get access to the different graphic properties 61cdf0e10cSrcweir 62cdf0e10cSrcweir @see MediaProperties 63cdf0e10cSrcweir @see GraphicDescriptor 64cdf0e10cSrcweir @see com::sun::star::beans::PropertyValues 65cdf0e10cSrcweir */ 66cdf0e10cSrcweir ::com::sun::star::beans::XPropertySet queryGraphicDescriptor( [in] ::com::sun::star::beans::PropertyValues MediaProperties ) 67cdf0e10cSrcweir raises( ::com::sun::star::io::IOException, 68cdf0e10cSrcweir ::com::sun::star::lang::IllegalArgumentException, 69cdf0e10cSrcweir ::com::sun::star::lang::WrappedTargetException ); 70cdf0e10cSrcweir 71cdf0e10cSrcweir 72cdf0e10cSrcweir 73cdf0e10cSrcweir /** Calling this method returns a <type>XGraphic</type> interface 74cdf0e10cSrcweir that holds the graphic content after loading the graphic 75cdf0e10cSrcweir 76cdf0e10cSrcweir @param MediaProperties 77cdf0e10cSrcweir A sequence of property values to describe the location 78cdf0e10cSrcweir of the graphic from which the graphic is to be loaded 79cdf0e10cSrcweir 80cdf0e10cSrcweir @returns 81cdf0e10cSrcweir The <type>XGraphic</type> interface 82cdf0e10cSrcweir 83cdf0e10cSrcweir @see MediaProperties 84cdf0e10cSrcweir @see XGraphic 85cdf0e10cSrcweir @see com::sun::star::beans::PropertyValues 86cdf0e10cSrcweir */ 87cdf0e10cSrcweir XGraphic queryGraphic( [in] ::com::sun::star::beans::PropertyValues MediaProperties ) 88cdf0e10cSrcweir raises( ::com::sun::star::io::IOException, 89cdf0e10cSrcweir ::com::sun::star::lang::IllegalArgumentException, 90cdf0e10cSrcweir ::com::sun::star::lang::WrappedTargetException ); 91cdf0e10cSrcweir 92cdf0e10cSrcweir /** Store the graphic content, represented through the <type>XGraphic</type> 93cdf0e10cSrcweir interface at the specified location 94cdf0e10cSrcweir 95cdf0e10cSrcweir @param Graphic 96cdf0e10cSrcweir The graphic that should be stored 97cdf0e10cSrcweir 98cdf0e10cSrcweir @param MediaProperties 99cdf0e10cSrcweir A sequence of property values to describe the destination 100cdf0e10cSrcweir location of the graphic 101cdf0e10cSrcweir 102cdf0e10cSrcweir @see XGraphic 103cdf0e10cSrcweir @see MediaProperties 104cdf0e10cSrcweir @see com::sun::star::beans::PropertyValues 105cdf0e10cSrcweir */ 106cdf0e10cSrcweir void storeGraphic( [in] ::com::sun::star::graphic::XGraphic Graphic, 107cdf0e10cSrcweir [in] ::com::sun::star::beans::PropertyValues MediaProperties ) 108cdf0e10cSrcweir raises( ::com::sun::star::io::IOException, 109cdf0e10cSrcweir ::com::sun::star::lang::IllegalArgumentException, 110cdf0e10cSrcweir ::com::sun::star::lang::WrappedTargetException ); 111cdf0e10cSrcweir}; 112cdf0e10cSrcweir 113cdf0e10cSrcweir} ; } ; } ; } ; 114cdf0e10cSrcweir 115cdf0e10cSrcweir#endif 116