LibreOffice Module sdext (master) 1
wrapper.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_WRAPPER_HXX
21#define INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_WRAPPER_HXX
22
23#include "contentsink.hxx"
24#include <com/sun/star/uno/Reference.hxx>
25#include <com/sun/star/task/XInteractionHandler.hpp>
26
27namespace com::sun::star {
28 namespace uno {
29 class XComponentContext;
30 }
31 namespace io {
32 class XInputStream;
33 }
34}
35
36namespace pdfi
37{
38 bool xpdf_ImportFromFile( const OUString& rURL,
39 const ContentSinkSharedPtr& rSink,
40 const css::uno::Reference<
41 css::task::XInteractionHandler >& xIHdl,
42 const OUString& rPwd,
43 const css::uno::Reference<
44 css::uno::XComponentContext >& xContext,
45 const OUString& rFilterOptions);
46 bool xpdf_ImportFromStream( const css::uno::Reference<
47 css::io::XInputStream >& xInput,
48 const ContentSinkSharedPtr& rSink,
49 const css::uno::Reference<
50 css::task::XInteractionHandler >& xIHdl,
51 const OUString& rPwd,
52 const css::uno::Reference<
53 css::uno::XComponentContext >& xContext,
54 const OUString& rFilterOptions );
55
56 const OUString fontAttributesSuffixes[] = {
57 // Note: for performance consideration, each one listed here is evaluated once,
58 // and they are checked from the suffix, thus the order matters.
59 // e.g. for "TimesNewRomanPS-BoldItalic", to get "TimesNewRoman", you should
60 // first have "Italic", and then "Bold", then "-", and then "PS".
61 "-VKana",
62 "MT",
63 "PS",
64 "PSMT",
65 "Regular",
66 "Normal",
67 "Book",
68 "Medium",
69 "ExtraBold",
70 "UltraBold",
71 "ExtraLight",
72 "UltraLight",
73 "Bold",
74 "Heavy",
75 "Black",
76 "Italic",
77 "Oblique",
78 "Bold", //BoldItalic, BoldOblique
79 "Light",
80 "Thin",
81 "Semibold",
82 "-Roman",
83 "Reg",
84 "VKana",
85 "-",
86 ",",
87 ";",
88 "PS", // e.g. TimesNewRomanPS-BoldMT
89 };
90}
91
92#endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_WRAPPER_HXX
93
94/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool xpdf_ImportFromStream(const css::uno::Reference< css::io::XInputStream > &xInput, const ContentSinkSharedPtr &rSink, const css::uno::Reference< css::task::XInteractionHandler > &xIHdl, const OUString &rPwd, const css::uno::Reference< css::uno::XComponentContext > &xContext, const OUString &rFilterOptions)
bool xpdf_ImportFromFile(const OUString &rURL, const ContentSinkSharedPtr &rSink, const css::uno::Reference< css::task::XInteractionHandler > &xIHdl, const OUString &rPwd, const css::uno::Reference< css::uno::XComponentContext > &xContext, const OUString &rFilterOptions)
const OUString fontAttributesSuffixes[]
Definition: wrapper.hxx:56
std::shared_ptr< ContentSink > ContentSinkSharedPtr