1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SVTOOLS_SOURCE_GRAPHIC_DESCRIPTOR_HXX
21 #define INCLUDED_SVTOOLS_SOURCE_GRAPHIC_DESCRIPTOR_HXX
23 #include <comphelper/propertysethelper.hxx>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <comphelper/propertysetinfo.hxx>
27 #include <vcl/graph.hxx>
29 #define MIMETYPE_BMP "image/x-MS-bmp"
30 #define MIMETYPE_GIF "image/gif"
31 #define MIMETYPE_JPG "image/jpeg"
32 #define MIMETYPE_PCD "image/x-photo-cd"
33 #define MIMETYPE_PCX "image/x-pcx"
34 #define MIMETYPE_PNG "image/png"
35 #define MIMETYPE_TIF "image/tiff"
36 #define MIMETYPE_XBM "image/x-xbitmap"
37 #define MIMETYPE_XPM "image/x-xpixmap"
38 #define MIMETYPE_PBM "image/x-portable-bitmap"
39 #define MIMETYPE_PGM "image/x-portable-graymap"
40 #define MIMETYPE_PPM "image/x-portable-pixmap"
41 #define MIMETYPE_RAS "image/x-cmu-raster"
42 #define MIMETYPE_TGA "image/x-targa"
43 #define MIMETYPE_PSD "image/vnd.adobe.photoshop"
44 #define MIMETYPE_EPS "image/x-eps"
45 #define MIMETYPE_DXF "image/vnd.dxf"
46 #define MIMETYPE_MET "image/x-met"
47 #define MIMETYPE_PCT "image/x-pict"
48 #define MIMETYPE_SGF "image/x-sgf"
49 #define MIMETYPE_SVM "image/x-svm"
50 #define MIMETYPE_WMF "image/x-wmf"
51 #define MIMETYPE_SGV "image/x-sgv"
52 #define MIMETYPE_EMF "image/x-emf"
53 #define MIMETYPE_SVG "image/svg+xml"
54 #define MIMETYPE_VCLGRAPHIC "image/x-vclgraphic"
56 namespace comphelper
{ class PropertySetInfo
; }
57 namespace com
{ namespace sun
{ namespace star
{ namespace io
{ class XInputStream
; } } } }
61 namespace unographic
{
63 // -------------------
64 // - GraphicProvider -
65 // -------------------
67 class GraphicDescriptor
: public ::cppu::OWeakAggObject
,
68 public ::com::sun::star::lang::XServiceInfo
,
69 public ::com::sun::star::lang::XTypeProvider
,
70 public ::comphelper::PropertySetHelper
75 ~GraphicDescriptor() throw();
77 void init( const ::Graphic
& rGraphic
) throw();
78 void init( const OUString
& rURL
) throw();
79 void init( const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>& rxIStm
, const OUString
& rURL
) throw();
81 static OUString
getImplementationName_Static() throw();
82 static ::com::sun::star::uno::Sequence
< OUString
> getSupportedServiceNames_Static() throw();
86 static ::comphelper::PropertySetInfo
* createPropertySetInfo();
89 virtual ::com::sun::star::uno::Any SAL_CALL
queryAggregation( const ::com::sun::star::uno::Type
& rType
) throw(::com::sun::star::uno::RuntimeException
);
90 virtual ::com::sun::star::uno::Any SAL_CALL
queryInterface( const ::com::sun::star::uno::Type
& rType
) throw(::com::sun::star::uno::RuntimeException
);
91 virtual void SAL_CALL
acquire() throw();
92 virtual void SAL_CALL
release() throw();
95 virtual OUString SAL_CALL
getImplementationName() throw( ::com::sun::star::uno::RuntimeException
);
96 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) throw( ::com::sun::star::uno::RuntimeException
);
97 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() throw( ::com::sun::star::uno::RuntimeException
);
100 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::uno::Type
> SAL_CALL
getTypes( ) throw(::com::sun::star::uno::RuntimeException
);
101 virtual ::com::sun::star::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId( ) throw(::com::sun::star::uno::RuntimeException
);
104 virtual void _setPropertyValues( const comphelper::PropertyMapEntry
** ppEntries
, const ::com::sun::star::uno::Any
* pValues
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::beans::PropertyVetoException
, ::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::lang::WrappedTargetException
);
105 virtual void _getPropertyValues( const comphelper::PropertyMapEntry
** ppEntries
, ::com::sun::star::uno::Any
* pValue
) throw(::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
);
109 const ::Graphic
* mpGraphic
;
114 sal_uInt16 mnBitsPerPixel
;
119 GraphicDescriptor( const GraphicDescriptor
& rDescriptor
);
121 GraphicDescriptor
& operator=( const GraphicDescriptor
& );
123 void implCreate( SvStream
& rIStm
, const OUString
* pPath
);
130 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */