1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * either of the following licenses
7 * - GNU Lesser General Public License Version 2.1
8 * - Sun Industry Standards Source License Version 1.1
10 * Sun Microsystems Inc., October, 2000
12 * GNU Lesser General Public License Version 2.1
13 * =============================================
14 * Copyright 2000 by Sun Microsystems, Inc.
15 * 901 San Antonio Road, Palo Alto, CA 94303, USA
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License version 2.1, as published by the Free Software Foundation.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 * Sun Industry Standards Source License Version 1.1
33 * =================================================
34 * The contents of this file are subject to the Sun Industry Standards
35 * Source License Version 1.1 (the "License"); You may not use this file
36 * except in compliance with the License. You may obtain a copy of the
37 * License at http://www.openoffice.org/license.html.
39 * Software provided under this License is provided on an "AS IS" basis,
40 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
41 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
42 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
43 * See the License for the specific provisions governing your rights and
44 * obligations concerning the Software.
46 * The Initial Developer of the Original Code is: IBM Corporation
48 * Copyright: 2008 by IBM Corporation
50 * All Rights Reserved.
52 * Contributor(s): _______________________________________
55 ************************************************************************/
56 /*************************************************************************
59 ************************************************************************/
60 #ifndef _LWPFILTER_HXX
61 #define _LWPFILTER_HXX
63 #include <cppuhelper/implbase1.hxx>
64 #include <cppuhelper/implbase4.hxx>
65 #include <cppuhelper/factory.hxx>
67 #include <com/sun/star/document/XFilter.hpp>
68 #include <com/sun/star/document/XImporter.hpp>
69 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
70 #include <com/sun/star/xml/sax/SAXException.hpp>
71 #include <com/sun/star/lang/XServiceInfo.hpp>
72 #include <com/sun/star/io/XInputStream.hpp>
73 #include <com/sun/star/document/XExtendedFilterDetection.hpp>
74 #include <com/sun/star/text/XTextDocument.hpp>
75 #include <tools/stream.hxx>
77 using namespace ::rtl
;
78 using namespace ::cppu
;
79 using namespace ::com::sun::star::lang
;
80 using namespace ::com::sun::star::io
;
81 using namespace ::com::sun::star::registry
;
82 using namespace ::com::sun::star::document
;
83 using namespace ::com::sun::star::beans
;
84 using namespace ::com::sun::star::xml::sax
;
85 using namespace ::com::sun::star::uno
;
86 using namespace ::com::sun::star::text
;
87 using namespace ::com::sun::star
;
91 * Implements the XFilter interface.
92 * This is not the entry for the filter, but a proto of LwpFilterImportFilter.
94 class LWPFilterReader
: public WeakImplHelper1
< XFilter
>
102 * @descr loading the file. It's call be SfxObejctShell::ImportFrom.
103 * @param aDescriptor the parameters include file URL or XInputStream obejct, from which the filter can
104 * get which file to import.
106 virtual sal_Bool SAL_CALL
filter( const Sequence
< PropertyValue
>& aDescriptor
)
107 throw( RuntimeException
);
110 * @descr stop loading the file.
112 virtual void SAL_CALL
cancel() throw (com::sun::star::uno::RuntimeException
);
115 * @descr get the XDocumentHandler interface.
117 void setDocumentHandler( uno::Reference
< XDocumentHandler
>& xHandler
)
119 m_DocumentHandler
= xHandler
;
123 uno::Reference
< XDocumentHandler
> m_DocumentHandler
;
128 * Main entry for the xml filter framework.
129 * It's called by SfxObjectShell::ImportFrom.
131 class LWPFilterImportFilter
: public WeakImplHelper4
< XFilter
, XImporter
, XServiceInfo
, XExtendedFilterDetection
>
134 LWPFilterImportFilter( const uno::Reference
< XMultiServiceFactory
>& xFact
);
135 ~LWPFilterImportFilter();
139 * @descr see LWPFilterReader::filter.
141 virtual sal_Bool SAL_CALL
filter( const Sequence
< PropertyValue
>& aDescriptor
)
142 throw( RuntimeException
);
145 * @descr see LWPFilterReader::cancel.
147 virtual void SAL_CALL
cancel() throw (com::sun::star::uno::RuntimeException
);
150 virtual void SAL_CALL
setTargetDocument( const uno::Reference
< XComponent
>& xDoc
)
151 throw( IllegalArgumentException
, RuntimeException
);
154 OUString SAL_CALL
getImplementationName() throw ();
156 Sequence
< OUString
> SAL_CALL
getSupportedServiceNames(void) throw ();
158 sal_Bool SAL_CALL
supportsService(const OUString
& ServiceName
) throw ();
161 * @descr function of interface XExtendedFilterDetection. If this interface is registered, it will be called whenever
162 * a file is to be loaded.
164 virtual OUString SAL_CALL
detect( ::com::sun::star::uno::Sequence
< ::com::sun::star::beans::PropertyValue
>& Descriptor
) throw (::com::sun::star::uno::RuntimeException
);
167 uno::Reference
< XFilter
> rFilter
;
168 uno::Reference
< XImporter
> rImporter
;
172 int ReadWordproFile(SvStream
&rStream
, uno::Reference
<XDocumentHandler
>& XDoc
);
176 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */