InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
TOPOptionsType.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Yves Carbonneaux
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //
23 // This interface contains declarations used both by the ITOPOptionsCmdData
24 // interface and by the TOPOptionsDatas class.
25 //
26 //========================================================================================
27 
28 #ifndef TOPOPTIONSTYPE_h
29 #define TOPOPTIONSTYPE_h
30 
31 
32  //
33  typedef enum {
34  kUndefinedType = 0, // Don't use this value. If used, it will be replaced by default value
35  kRainbowType, // Default
36  kSkewType,
37  k3DRibbonType,
38  kStairStepType,
39  kGravityType
40  } EffectType;
41 
42  //
43  typedef enum {
44  kUndefinedTextAlign = 0, // Don't use this value. If used, it will be replaced by default value
45  kTextAlignAscender,
46  kTextAlignDescender,
47  kTextAlignCenter,
48  kTextAlignBaseline, // Default
49  kTextAlignAboveRightEmbox, // Above OR Right of the em box, depending on vertical or horizontal text
50  kTextAlignBelowLeftEmbox,
51  kTextAlignAboveRightICFBox,
52  kTextAlignBelowLeftICFBox
53  } TextAlignType;
54 
55  //
56  typedef enum {
57  kUndefinedPathAlign = 0, // Don't use this value. If used, it will be replaced by default value
58  kPathAlignTop,
59  kPathAlignBottom,
60  kPathAlignCenter //Default
61  } PathAlignType;
62 
63 
64 
65 #endif /* TOPOPTIONSTYPE_h */