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 .
26 #include <sal/types.h>
27 #include <sot/storage.hxx>
28 #include <tools/stream.hxx>
31 #define PID_TITLE 0x02
32 #define PID_SUBJECT 0x03
33 #define PID_AUTHOR 0x04
34 #define PID_KEYWORDS 0x05
35 #define PID_COMMENTS 0x06
36 #define PID_TEMPLATE 0x07
37 #define PID_LASTAUTHOR 0x08
38 #define PID_REVNUMBER 0x09
39 #define PID_CREATE_DTM 0x0c
41 // DocumentSummaryInformation
42 #define PID_SLIDECOUNT 0x07
43 #define PID_HEADINGPAIR 0x0c
44 #define PID_DOCPARTS 0x0d
69 #define VT_FILETIME 64
73 #define VT_STREAMED_OBJECT 68
74 #define VT_STORED_OBJECT 69
75 #define VT_BLOB_OBJECT 70
78 #define VT_VECTOR 0x1000
79 #define VT_ARRAY 0x2000
80 #define VT_BYREF 0x4000
81 #define VT_TYPEMASK 0xFFF
83 typedef std::map
<OUString
,sal_uInt32
> PropDictionary
;
89 std::unique_ptr
<sal_uInt8
[]> mpBuf
;
91 PropEntry( sal_uInt32 nId
, const sal_uInt8
* pBuf
, sal_uInt32 nBufSize
);
92 PropEntry( const PropEntry
& rProp
);
94 PropEntry
& operator=(const PropEntry
& rPropEntry
);
97 class PropItem
: public SvMemoryStream
103 : mnTextEnc(RTL_TEXTENCODING_DONTKNOW
)
108 void SetTextEncoding( sal_uInt16 nTextEnc
){ mnTextEnc
= nTextEnc
; };
109 bool Read( OUString
& rString
, sal_uInt32 nType
= VT_EMPTY
, bool bDwordAlign
= true );
110 PropItem
& operator=( PropItem
& rPropItem
);
115 sal_uInt16 mnTextEnc
;
116 std::vector
<std::unique_ptr
<PropEntry
> > maEntries
;
118 sal_uInt8 aFMTID
[ 16 ];
120 void AddProperty( sal_uInt32 nId
, const sal_uInt8
* pBuf
, sal_uInt32 nBufSize
);
123 explicit Section( const sal_uInt8
* pFMTID
);
124 Section( const Section
& rSection
);
126 Section
& operator=( const Section
& rSection
);
127 bool GetProperty( sal_uInt32 nId
, PropItem
& rPropItem
);
128 void GetDictionary( PropDictionary
& rDict
);
129 const sal_uInt8
* GetFMTID() const { return aFMTID
; };
130 void Read( SotStorageStream
* pStrm
);
136 tools::SvRef
<SotStorageStream
> mpSvStream
;
138 sal_uInt16 mnByteOrder
;
139 sal_uInt8 mApplicationCLSID
[ 16 ];
140 std::vector
<std::unique_ptr
<Section
> > maSections
;
143 PropRead( SotStorage
& rSvStorage
, const OUString
& rName
);
145 PropRead
& operator=( const PropRead
& rPropRead
);
146 const Section
* GetSection( const sal_uInt8
* pFMTID
);
147 bool IsValid() const { return mbStatus
; };
151 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */