InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BscShpID.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Adobe Developer Technologies
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 // Defines IDs used by the BscShp plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __BscShpID_h__
28 #define __BscShpID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kBscShpCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kBscShpCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kBscShpPluginName "BasicShape" // Name of this plug-in.
38 #define kBscShpPrefixNumber 0x5D300 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kBscShpVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kBscShpAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kBscShpPrefixNumber above to modify the prefix.)
43 #define kBscShpPrefix RezLong(kBscShpPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kBscShpStringPrefix SDK_DEF_STRINGIZE(kBscShpPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // PluginID:
47 
48 // ClassIDs:
49 
50 // InterfaceIDs:
51 // None in this plug-in.
52 
53 // ImplementationIDs:
54 
55 // ActionIDs:
56 
57 // WidgetIDs:
58 // None in this plug-in.
59 
60 // ScriptElementIDs:
61 
62 // ErrorIDs:
63 
64 // Error string keys:
65 #define kBscShpFailureErrorCodeErrorCodeStringKey kBscShpStringPrefix "kBscShpFailureErrorCodeErrorCodeStringKey"
66 #define kBscShpCreatePageItemErrorCodeStringKey kBscShpStringPrefix "kBscShpCreatePageItemErrorCodeStringKey"
67 
68 // "About Plug-ins" sub-menu:
69 #define kBscShpAboutMenuKey kBscShpStringPrefix "kBscShpAboutMenuKey"
70 #define kBscShpAboutMenuPath kSDKDefStandardAboutMenuPath kBscShpCompanyKey
71 
72 // "Plug-ins" sub-menu:
73 #define kBscShpPluginsMenuKey kBscShpStringPrefix "kBscShpPluginsMenuKey"
74 #define kBscShpPluginsMenuPath kSDKDefPlugInsStandardMenuPath kBscShpCompanyKey kSDKDefDelimitMenuPath kBscShpPluginsMenuKey
75 
76 // Menu item keys:
77 #define kBscShpPlace_PageItemMenuItemKey kBscShpStringPrefix "kBscShpPlace_PageItemMenuItemKey"
78 
79 // Other StringKeys:
80 #define kBscShpAboutBoxStringKey kBscShpStringPrefix "kBscShpAboutBoxStringKey"
81 #define kBscShpPlace_PageItemStringKey kBscShpStringPrefix "kBscShpPlace_PageItemStringKey"
82 #define kLockedLayerAlertMessage kBscShpStringPrefix "kLockedLayerAlertMessage"
83 
84 #define kBscShpTargetMenuPath kBscShpPluginsMenuPath
85 
86 // Menu item positions:
87 #define kBscShpPlace_PageItemMenuItemPosition 1.0
88 
89 // Initial data format version numbers
90 #define kBscShpFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
91 #define kBscShpFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
92 
93 // Data format version numbers for the PluginVersion resource
94 #define kBscShpCurrentMajorFormatNumber kBscShpFirstMajorFormatNumber // most recent major format change
95 #define kBscShpCurrentMinorFormatNumber kBscShpFirstMinorFormatNumber // most recent minor format change
96 
97 #endif // __BscShpID_h__
98 
99 // End, BscShpID.h.
100 
101 
102 
103