1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 // This module is normally included unconditionally in the core installation, it
11 // provides various import filters for both plain PDF and hybrid PDF/ODF. For
12 // --with-system-poppler builds it can be advantageous though to package this
13 // module as an individual, optional part, so that the core installation does
14 // not feature a dependency on a poppler package.
17 // /org.openoffice.TypeDetection.Types/Types/pdf_Portable_Document_Format
18 // configuration node contained in pdfimport.xcd needs to override a
19 // node with the same name but which lacks import functionality and
20 // which is duplicated across calc, draw, impress, math, writer .xcd
21 // files. For this to work, there is a hack in
22 // postprocess/packregistry/makefile.mk to make pdfimport.xcd depend
23 // on all those other .xcd files (optinally, as not all of the other
24 // .xcd files need to be present in a given installation).
28 #include "AutoInstall/pdfimport"
30 Module gid_Module_Pdfimport
32 Description = "PDF Import";
33 PackageInfo = "packinfo_office.txt";
34 ParentID = gid_Module_Root_Brand;
35 Styles = (HIDDEN_ROOT);
36 Dirs = (gid_Dir_Share_Xpdfimport);
37 Files = (auto_pdfimport_ALL,
38 gid_File_Dat_XpdfimportErrPdf,
39 gid_File_Xcd_Pdfimport);
42 Directory gid_Dir_Share_Xpdfimport
43 ParentID = gid_Brand_Dir_Share;
44 DosName = "xpdfimport";
47 File gid_File_Dat_XpdfimportErrPdf
49 Dir = gid_Dir_Share_Xpdfimport;
50 Name = "xpdfimport_err.pdf";
54 File gid_File_Xcd_Pdfimport
56 Dir = gid_Brand_Dir_Share_Registry;
57 Name = "pdfimport.xcd";
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */