InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BscDlgID.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 BscDlg plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __BscDlgID_h__
28 #define __BscDlgID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kBscDlgCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kBscDlgCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kBscDlgPluginName "TestPrivateHeaders" // Name of this plug-in.
38 #define kTestPrivateHeaderPrefixNumber 0x40000 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kTestPrivateHeaderVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kBscDlgAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kTestPrivateHeaderPrefixNumber above to modify the prefix.)
43 #define kTestPrivateHeaderPrefix RezLong(kTestPrivateHeaderPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kBscDlgStringPrefix SDK_DEF_STRINGIZE(kTestPrivateHeaderPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // PluginID:
47 START_IDS()
48 
49 // ClassIDs:
50 //Start from InDesign 3.0, plug-ins no longer need to provide register bosses for menu, string, action, panel and tool tip.
51 
52 
53 // InterfaceIDs:
54 // None in this plug-in.
55 
56 // Implementation IDs:
57 
58 // ActionIDs:
59 
60 // WidgetIDs:
61 END_IDS()
62 
63 // "About Plug-ins" sub-menu:
64 #define kBscDlgAboutMenuKey kBscDlgStringPrefix "kBscDlgAboutMenuKey"
65 #define kBscDlgAboutMenuPath kSDKDefStandardAboutMenuPath kBscDlgCompanyKey
66 
67 // "Plug-ins" sub-menu:
68 #define kBscDlgPluginsMenuKey kBscDlgStringPrefix "kBscDlgPluginsMenuKey"
69 #define kBscDlgPluginsMenuPath kSDKDefPlugInsStandardMenuPath kBscDlgCompanyKey
70 
71 // "Plug-ins" sub-menu item keys:
72 #define kBscDlgDialogMenuItemKey kBscDlgStringPrefix "kBscDlgDialogMenuItemKey"
73 
74 // "Plug-ins" sub-menu item positions:
75 #define kBscDlgDialogMenuItemPosition 1.0
76 
77 // Other StringKeys:
78 #define kBscDlgDialogTitleKey kBscDlgStringPrefix "kBscDlgDialogTitleKey"
79 #define kBscDlgAboutBoxStringKey kBscDlgStringPrefix "kBscDlgAboutBoxStringKey"
80 
81 // Initial data format version numbers
82 #define kBscDlgFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
83 #define kBscDlgFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
84 
85 // Data format version numbers for the PluginVersion resource
86 #define kBscDlgCurrentMajorFormatNumber kBscDlgFirstMajorFormatNumber // most recent major format change
87 #define kBscDlgCurrentMinorFormatNumber kBscDlgFirstMinorFormatNumber // most recent minor format change
88 
89 #endif // __BscDlgID_h__
90 
91 // End, BscDlgID.h.
92 
93 
94