InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
AnnotationConstants.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Prakhar Mehrotra
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // ADOBE CONFIDENTIAL
16 //
17 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
18 //
19 // NOTICE: All information contained herein is, and remains
20 // the property of Adobe Systems Incorporated and its suppliers,
21 // if any. The intellectual and technical concepts contained
22 // herein are proprietary to Adobe Systems Incorporated and its
23 // suppliers and may be covered by U.S. and Foreign Patents,
24 // patents in process, and are protected by trade secret or copyright law.
25 // Dissemination of this information or reproduction of this material
26 // is strictly forbidden unless prior written permission is obtained
27 // from Adobe Systems Incorporated.
28 //
29 //========================================================================================
30 
31 #ifndef __AnnotationConstants__
32 #define __AnnotationConstants__
33 
34 #include "PMRect.h"
35 
36 
37 //Enum to denote the status of annotations being imported.
38 enum AnnotationStatus{
39  kAnnotationOpen,
40  kAnnotationResolved
41 };
42 
43 //Enum of supported annotation type in InDesign. Currently support for the following type of annotations is available only.
44 enum AnnotationType
45 {
46  kStickyNote,
47  kHighlight,
48  kUnderline,
49  kSquiggly,
50  kStrikeThrough,
51  kReplaceText,
52  kInsertText,
53  kTextTypewriter,
54  kTextBox,
55  kFreeformDrawing,
56  kLineSegment,
57  kOval,
58  kRectangle,
59  kPolygon,
60  kArrow,
61  kTextCallout,
62  kStamp,
63  kConnectedLines,
64  kCloud,
65  kInvalidAnnotationType,
66  kNode
67 };
68 
69 #endif //__AnnotationConstants__