InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BscPnlID.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 BscPnl plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __BscPnlID_h__
28 #define __BscPnlID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kBscPnlCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kBscPnlCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kBscPnlPluginName "BasicPanel" // Name of this plug-in.
38 #define kBscPnlPrefixNumber 0x40300 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kBscPnlVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kBscPnlAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kBscPnlPrefixNumber above to modify the prefix.)
43 #define kBscPnlPrefix RezLong(kBscPnlPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kBscPnlStringPrefix SDK_DEF_STRINGIZE(kBscPnlPrefixNumber) // 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 kBscPnlAboutMenuKey kBscPnlStringPrefix "kBscPnlAboutMenuKey_a"
61 #define kBscPnlAboutMenuPath kSDKDefStandardAboutMenuPath kBscPnlCompanyKey
62 
63 // "Plug-ins" sub-menu:
64 #define kBscPnlPluginsMenuKey kBscPnlStringPrefix "kBscPnlPluginsMenuKey_b"
65 #define kBscPnlPluginsMenuPath kSDKDefPlugInsStandardMenuPath kBscPnlCompanyKey kSDKDefDelimitMenuPath kBscPnlPluginsMenuKey
66 
67 // Menu item keys:
68 #define kBscPnlGoesNowhereMenuItemKey kBscPnlStringPrefix "kBscPnlGoesNowhereMenuItemKey_c"
69 #define kBscPnlDoesNothingMenuItemKey kBscPnlStringPrefix "kBscPnlDoesNothingMenuItemKey_d"
70 
71 // Other StringKeys:
72 #define kBscPnlAboutBoxStringKey kBscPnlStringPrefix "kBscPnlAboutBoxStringKey_e"
73 #define kBscPnlGoesNowhereStringKey kBscPnlStringPrefix "kBscPnlGoesNowhereStringKey_f"
74 #define kBscPnlDoesNothingStringKey kBscPnlStringPrefix "kBscPnlDoesNothingStringKey_g"
75 #define kBscPnlPanelTitleKey kBscPnlStringPrefix "kBscPnlPanelTitleKey_h"
76 #define kBscPnlStaticTextKey kBscPnlStringPrefix "kBscPnlStaticTextKey_i"
77 #define kBscPnlInternalPopupMenuNameKey kBscPnlStringPrefix "kBscPnlInternalPopupMenuNameKey_j"
78 #define kBscPnlTargetMenuPath kBscPnlInternalPopupMenuNameKey
79 
80 // Menu item positions:
81 #define kBscPnlGoesNowhereMenuItemPosition 1.0
82 #define kBscPnlDoesNothingMenuItemPosition 2.0
83 #define kBscPnlSeparator1MenuItemPosition 10.0
84 #define kBscPnlAboutThisMenuItemPosition 11.0
85 
86 // Initial data format version numbers
87 #define kBscPnlFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
88 #define kBscPnlFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
89 
90 // Data format version numbers for the PluginVersion resource
91 #define kBscPnlCurrentMajorFormatNumber kBscPnlFirstMajorFormatNumber // most recent major format change
92 #define kBscPnlCurrentMinorFormatNumber kBscPnlFirstMinorFormatNumber // most recent minor format change
93 
94 #endif // __BscPnlID_h__
95 
96 // End, BscPnlID.h.
97 
98 
99