diff options
author | David Tardon <dtardon@redhat.com> | 2011-05-30 19:46:16 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-06-18 11:30:48 +0200 |
commit | 176b61f0055a580cef26fde1fad9fd9aa20d5d89 (patch) | |
tree | d03dcb9146177ccedb0c1079bd616a9e572bea99 /offapi/com/sun/star | |
parent | bbe302a8945f1ed2fb5df59d6be91daac6fdb094 (diff) |
add new IDL files
Diffstat (limited to 'offapi/com/sun/star')
-rw-r--r-- | offapi/com/sun/star/rendering/MtfRenderer.idl | 9 | ||||
-rw-r--r-- | offapi/com/sun/star/rendering/XMtfRenderer.idl | 41 |
2 files changed, 43 insertions, 7 deletions
diff --git a/offapi/com/sun/star/rendering/MtfRenderer.idl b/offapi/com/sun/star/rendering/MtfRenderer.idl index af07f0a1d391..43b76ef105bf 100644 --- a/offapi/com/sun/star/rendering/MtfRenderer.idl +++ b/offapi/com/sun/star/rendering/MtfRenderer.idl @@ -28,17 +28,12 @@ #ifndef __com_sun_star_rendering_MtfRenderer_idl__ #define __com_sun_star_rendering_MtfRenderer_idl__ -#include <com/sun/star/rendering/XCanvas.idl> +#include <com/sun/star/rendering/XMtfRenderer.idl> module com { module sun { module star { module rendering { - interface XMtfRenderer : ::com::sun::star::uno::XInterface - { - void setMetafile( [in] sequence< byte > aMtf ); - void draw( [in] double fScaleX, [in] double fScaleY ); - }; - service MtfRenderer : XMtfRenderer; + }; }; }; }; #endif diff --git a/offapi/com/sun/star/rendering/XMtfRenderer.idl b/offapi/com/sun/star/rendering/XMtfRenderer.idl new file mode 100644 index 000000000000..ac69a9a75710 --- /dev/null +++ b/offapi/com/sun/star/rendering/XMtfRenderer.idl @@ -0,0 +1,41 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2010 Novell, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org 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 version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#ifndef __com_sun_star_rendering_XMtfRenderer_idl__ +#define __com_sun_star_rendering_XMtfRenderer_idl__ + +module com { module sun { module star { module rendering { + + interface XMtfRenderer : ::com::sun::star::uno::XInterface + { + void setMetafile( [in] sequence< byte > aMtf ); + void draw( [in] double fScaleX, [in] double fScaleY ); + }; + +}; }; }; }; + +#endif |