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/.
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 .
19 #ifndef _SFXDOCINF_HXX
20 #define _SFXDOCINF_HXX
22 #include "sal/config.h"
23 #include "sfx2/dllapi.h"
24 #include "sal/types.h"
25 #include <com/sun/star/uno/Reference.hxx>
31 namespace com
{ namespace sun
{ namespace star
{
33 class XDocumentProperties
;
40 /** load document meta-data from OLE stream
42 @param i_xDocProps Document meta-data
43 @param i_pStorage OLE Storage
45 sal_uInt32 SFX2_DLLPUBLIC
LoadOlePropertySet(
46 ::com::sun::star::uno::Reference
<
47 ::com::sun::star::document::XDocumentProperties
> i_xDocProps
,
48 SotStorage
* i_pStorage
);
50 /** save document meta-data to OLE stream
52 @param i_xDocProps Document meta-data
53 @param i_pStorage OLE Storage
54 @param i_pThumb Thumbnail: preview bitmap
55 @param i_pGuid Blob: Guid blob ("_PID_GUID")
56 @param i_pHyperlinks Blob: Hyperlink blob ("_PID_HLINKS")
58 bool SFX2_DLLPUBLIC
SaveOlePropertySet(
59 ::com::sun::star::uno::Reference
<
60 ::com::sun::star::document::XDocumentProperties
> i_xDocProps
,
61 SotStorage
* i_pStorage
,
62 const ::com::sun::star::uno::Sequence
<sal_uInt8
> * i_pThumb
= 0,
63 const ::com::sun::star::uno::Sequence
<sal_uInt8
> * i_pGuid
= 0,
64 const ::com::sun::star::uno::Sequence
<sal_uInt8
> * i_pHyperlinks
= 0);
67 ::com::sun::star::uno::Sequence
<sal_uInt8
> SFX2_DLLPUBLIC
convertMetaFile(
68 GDIMetaFile
* i_pThumb
);
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */