tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / sdext / source / pdfimport / inc / wrapper.hxx
bloba27e92e28931f4121399eef744af8c7a37d7aae3
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_INC_WRAPPER_HXX
21 #define INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_WRAPPER_HXX
23 #include "contentsink.hxx"
24 #include <com/sun/star/uno/Reference.hxx>
25 #include <com/sun/star/task/XInteractionHandler.hpp>
27 namespace com::sun::star {
28 namespace uno {
29 class XComponentContext;
31 namespace io {
32 class XInputStream;
36 namespace pdfi
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 );
56 constexpr 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 u"-VKana"_ustr,
62 u"MT"_ustr,
63 u"PS"_ustr,
64 u"PSMT"_ustr,
65 u"Regular"_ustr,
66 u"Normal"_ustr,
67 u"Book"_ustr,
68 u"Medium"_ustr,
69 u"ExtraBold"_ustr,
70 u"UltraBold"_ustr,
71 u"ExtraLight"_ustr,
72 u"UltraLight"_ustr,
73 u"Bold"_ustr,
74 u"Heavy"_ustr,
75 u"Black"_ustr,
76 u"Italic"_ustr,
77 u"Oblique"_ustr,
78 u"Bold"_ustr, //BoldItalic, BoldOblique
79 u"Light"_ustr,
80 u"Thin"_ustr,
81 u"Semibold"_ustr,
82 u"-Roman"_ustr,
83 u"Reg"_ustr,
84 u"VKana"_ustr,
85 u"-"_ustr,
86 u","_ustr,
87 u";"_ustr,
88 u"PS"_ustr, // e.g. TimesNewRomanPS-BoldMT
92 #endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_WRAPPER_HXX
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */