1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libetonyek project.
4  *
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/.
8  */
9 
10 #ifndef IWAOBJECTTYPE_H_INCLUDED
11 #define IWAOBJECTTYPE_H_INCLUDED
12 
13 namespace libetonyek
14 {
15 
16 namespace IWAObjectType
17 {
18 
19 enum
20 {
21   AuthorStorage = 212,
22   CustomDateTimeFormat = 222,
23   // 401: StyleRoot, ie. list of different styles id
24   Text = 2001,
25   ShapeField = 2003,
26   NoteStart = 2004, // find at the beginning of a note
27   Note = 2008,
28   DrawableShape = 2011,
29   CommentField = 2013,
30   StickyNote = 2014,
31   CharacterStyle = 2021,
32   ParagraphStyle = 2022,
33   ListStyle = 2023,
34   SectionStyle = 2024,
35   GraphicStyle = 2025,
36   // 2031: placeholder field
37   Link = 2032,
38   DateTimeField = 2034,
39   PageField = 2043,
40   Image = 3005,
41   Mask = 3006,
42   Group = 3008,
43   ConnectionLine = 3009,
44   MediaStyle = 3016,
45   // 3047: related to columns ?
46   Comment = 3056,
47   TabularInfo = 6000,
48   TabularModel = 6001,
49   Tile = 6002,
50   TableStyle = 6003,
51   CellStyle = 6004,
52   DataList = 6005,
53   Headers = 6006,
54 
55   TextRef = 6218,
56 
57   GridLines = 6305,
58   GridLine = 6306,
59 
60   PageMaster = 10011,
61   PageMasterData = 10016,
62   HeadersAndFooters = 10143,
63 
64   MetaData = 11006,
65   FileColorMap = 11014,
66   FileColor = 11015
67 };
68 
69 }
70 
71 }
72 
73 #endif
74 
75 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
76