nss: upgrade to release 3.73
[LibreOffice.git] / writerperfect / source / draw / QXPImportFilter.hxx
blob8a2538b8bdd92e700a86431f65e18d6260387678
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
8 #ifndef INCLUDED_WRITERPERFECT_SOURCE_DRAW_QXPIMPORTFILTER_HXX
9 #define INCLUDED_WRITERPERFECT_SOURCE_DRAW_QXPIMPORTFILTER_HXX
11 #include <ImportFilter.hxx>
13 #include <DocumentHandlerForOdg.hxx>
15 /* This component will be instantiated for both import or export. Whether it calls
16 * setSourceDocument or setTargetDocument determines which Impl function the filter
17 * member calls */
18 class QXPImportFilter : public writerperfect::ImportFilter<OdgGenerator>
20 public:
21 explicit QXPImportFilter(const css::uno::Reference<css::uno::XComponentContext>& rxContext)
22 : writerperfect::ImportFilter<OdgGenerator>(rxContext)
26 // XServiceInfo
27 virtual OUString SAL_CALL getImplementationName() override;
28 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
29 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
31 private:
32 virtual bool doDetectFormat(librevenge::RVNGInputStream& rInput, OUString& rTypeName) override;
33 virtual bool doImportDocument(weld::Window* pParent, librevenge::RVNGInputStream& rInput,
34 OdgGenerator& rGenerator, utl::MediaDescriptor&) override;
37 #endif
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */