InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BscKitID.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 BscKit plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __BscKitID_h__
28 #define __BscKitID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kBscKitCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kBscKitCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kBscKitPluginName "BasicKit" // Name of this plug-in.
38 #define kBscKitPrefixNumber 0x78400 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kBscKitVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kBscKitAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kBscKitPrefixNumber above to modify the prefix.)
43 #define kBscKitPrefix RezLong(kBscKitPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kBscKitStringPrefix SDK_DEF_STRINGIZE(kBscKitPrefixNumber) // 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 
59 // "About Plug-ins" sub-menu:
60 #define kBscKitAboutMenuKey kBscKitStringPrefix "kBscKitAboutMenuKey"
61 #define kBscKitAboutMenuPath kSDKDefStandardAboutMenuPath kBscKitCompanyKey
62 
63 // "Plug-ins" sub-menu:
64 #define kBscKitPluginsMenuKey kBscKitStringPrefix "kBscKitPluginsMenuKey"
65 #define kBscKitPluginsMenuPath kSDKDefPlugInsStandardMenuPath kBscKitCompanyKey kSDKDefDelimitMenuPath kBscKitPluginsMenuKey
66 
67 // Menu item keys:
68 
69 // Other StringKeys:
70 #define kBscKitAboutBoxStringKey kBscKitStringPrefix "kBscKitAboutBoxStringKey"
71 #define kBscKitPanelTitleKey kBscKitStringPrefix "kBscKitPanelTitleKey"
72 #define kBscKitInternalPopupMenuNameKey kBscKitStringPrefix "kBscKitInternalPopupMenuNameKey"
73 #define kBscKitTargetMenuPath kBscKitInternalPopupMenuNameKey
74 
75 #define kBscKitFirstControlSetTitleKey kBscKitStringPrefix "kBscKitFirstControlSetTitleKey"
76 #define kBscKitSecondControlSetTitleKey kBscKitStringPrefix "kBscKitSecondControlSetTitleKey"
77 
78 #define kBscKitControl1LabelLongStringKey kBscKitStringPrefix "kBscKitControl1LabelLongStringKey"
79 #define kBscKitControl1LabelShortStringKey kBscKitStringPrefix "kBscKitControl1LabelShortStringKey"
80 #define kBscKitControl2LabelLongStringKey kBscKitStringPrefix "kBscKitControl2LabelLongStringKey"
81 #define kBscKitControl2LabelShortStringKey kBscKitStringPrefix "kBscKitControl2LabelShortStringKey"
82 
83 // Menu item positions:
84 #define kBscKitSeparator1MenuItemPosition 10.0
85 #define kBscKitAboutThisMenuItemPosition 11.0
86 
87 // Initial data format version numbers
88 #define kBscKitFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
89 #define kBscKitFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
90 
91 // Data format version numbers for the PluginVersion resource
92 #define kBscKitCurrentMajorFormatNumber kBscKitFirstMajorFormatNumber // most recent major format change
93 #define kBscKitCurrentMinorFormatNumber kBscKitFirstMinorFormatNumber // most recent minor format change
94 
95 #endif // __BscKitID_h__
96 
97 // End, BscKitID.h.
98 
99 
100