fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sdext / source / pdfimport / filterdet.hxx
blobfede97c8dce8a3f404692a4819a1ef28f5f16254
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_SDEXT_SOURCE_PDFIMPORT_FILTERDET_HXX
21 #define INCLUDED_SDEXT_SOURCE_PDFIMPORT_FILTERDET_HXX
23 #include <com/sun/star/document/XExtendedFilterDetection.hpp>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/uno/XComponentContext.hpp>
26 #include <com/sun/star/io/XStream.hpp>
27 #include <com/sun/star/task/XInteractionHandler.hpp>
29 #include <cppuhelper/compbase.hxx>
30 #include <cppuhelper/basemutex.hxx>
33 namespace pdfi
36 typedef ::cppu::WeakComponentImplHelper<
37 css::document::XExtendedFilterDetection, css::lang::XServiceInfo> PDFDetectorBase;
39 class PDFDetector : private cppu::BaseMutex,
40 public PDFDetectorBase
42 private:
43 css::uno::Reference<
44 css::uno::XComponentContext > m_xContext;
46 public:
47 explicit PDFDetector( const css::uno::Reference<
48 css::uno::XComponentContext >& xContext );
50 // XExtendedFilterDetection
51 virtual OUString SAL_CALL detect( css::uno::Sequence<
52 css::beans::PropertyValue >& io_rDescriptor )
53 throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
55 OUString SAL_CALL getImplementationName()
56 throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
58 sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
59 throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
61 css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
62 throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
66 /** Retrieve embedded substream from PDF file
68 Useful e.g. for hybrid PDF
70 @param rPDFFile
71 URI of the pdf file
73 @param o_rOutMimetype
74 Output parameter. Receives the mime type of the
75 substream. Used to distinguish between
76 draw/impress/writer/calc during import
78 @param o_rOutPwd
79 In/Out parameter. If given password is wrong, user is queried
80 for another (if bMayUseUI is true)
82 @param xContext
83 Component context
85 @param rFilterData
86 Basically used to pass on XFilter::filter properties (function
87 uses it to retrieve interaction handler)
89 @param bMayUseUI
90 When false, no dialog is opened to query user for alternate
91 password
93 css::uno::Reference< css::io::XStream >
94 getAdditionalStream( const OUString& rPDFFile,
95 OUString& o_rOutMimetype,
96 OUString& io_rOutPwd,
97 const css::uno::Reference< css::uno::XComponentContext >& xContext,
98 const css::uno::Sequence< css::beans::PropertyValue >& rFilterData,
99 bool bMayUseUI );
102 bool checkDocChecksum( const OUString& rInPDFFileURL,
103 sal_uInt32 nBytes,
104 const OUString& rChkSum );
108 #endif
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */