File indexing completed on 2024-05-12 16:28:56

0001 /* This file is part of the Calligra project
0002    Copyright (C) 2012 Matus Uzak <matus.uzak@gmail.com>
0003 
0004    This library is free software; you can redistribute it and/or
0005    modify it under the terms of the Library GNU General Public
0006    version 2 of the License, or (at your option) version 3 or,
0007    at the discretion of KDE e.V (which shall act as a proxy as in
0008    section 14 of the GPLv3), any later version..
0009 
0010    This library is distributed in the hope that it will be useful,
0011    but WITHOUT ANY WARRANTY; without even the implied warranty of
0012    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0013    Library General Public License for more details.
0014 
0015    You should have received a copy of the GNU Library General Public License
0016    along with this library; see the file COPYING.LIB.  If not, write to
0017    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0018    Boston, MA 02110-1301, USA.
0019 */
0020 
0021 #ifndef MSOLEPS_H
0022 #define MSOLEPS_H
0023 
0024 /**
0025  * The PropertyIdentifier data type represents the property identifier
0026  * of a property in a property set.
0027  *
0028  * 0x00000002 — 0x7FFFFFFF - Used to identify normal properties.
0029  */
0030 enum PropertyType
0031 {
0032     PIDSI_CODEPAGE = 0x00000001,
0033     PIDSI_TITLE,
0034     PIDSI_SUBJECT,
0035     PIDSI_AUTHOR,
0036     PIDSI_KEYWORDS,
0037     PIDSI_COMMENTS,
0038     PIDSI_TEMPLATE,
0039     PIDSI_LASTAUTHOR,
0040     PIDSI_REVNUMBER,
0041     PIDSI_EDITTIME,
0042     PIDSI_LASTPRINTED,
0043     PIDSI_CREATE_DTM,
0044     PIDSI_LASTSAVE_DTM,
0045     PIDSI_PAGECOUNT,
0046     PIDSI_WORDCOUNT,
0047     PIDSI_CHARCOUNT,
0048     PIDSI_APPNAME = 0x00000012,
0049     PIDSI_DOC_SECURITY = 0x00000013
0050 };
0051 
0052 #endif