InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StrMutID.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 
24 #ifndef __StrMutID_h__
25 #define __StrMutID_h__
26 
27 #include "SDKDef.h"
28 
29 // Company:
30 #define kStrMutCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
31 #define kStrMutCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
32 
33 // Plug-in:
34 #define kStrMutPluginName "StrokeWeightMutator" // Name of this plug-in.
35 #define kStrMutPrefixNumber 0x79720 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
36 #define kStrMutVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
37 #define kStrMutAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
38 
39 // Plug-in Prefix: (please change kStrMutPrefixNumber above to modify the prefix.)
40 #define kStrMutPrefix RezLong(kStrMutPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
41 #define kStrMutStringPrefix SDK_DEF_STRINGIZE(kStrMutPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
42 
43 // PluginID:
44 
45 // ClassIDs:
46 
47 // InterfaceIDs:
48 
49 // ImplementationIDs:
50 
51 // ActionIDs:
52 
53 // WidgetIDs:
54 
55 // "About Plug-ins" sub-menu:
56 #define kStrMutAboutMenuKey kStrMutStringPrefix "kStrMutAboutMenuKey"
57 #define kStrMutAboutMenuPath kSDKDefStandardAboutMenuPath kStrMutCompanyKey
58 
59 // "Plug-ins" sub-menu:
60 #define kStrMutPluginsMenuKey kStrMutStringPrefix "kStrMutPluginsMenuKey"
61 #define kStrMutPluginsMenuPath kSDKDefPlugInsStandardMenuPath kStrMutCompanyKey kSDKDefDelimitMenuPath kStrMutPluginsMenuKey
62 
63 // Menu item keys:
64 
65 // Other StringKeys:
66 #define kStrMutAboutBoxStringKey kStrMutStringPrefix "kStrMutAboutBoxStringKey"
67 #define kStrMutPanelTitleKey kStrMutStringPrefix "kStrMutPanelTitleKey"
68 #define kStrMutStaticTextKey kStrMutStringPrefix "kStrMutStaticTextKey"
69 #define kStrMutInternalPopupMenuNameKey kStrMutStringPrefix "kStrMutInternalPopupMenuNameKey"
70 #define kStrMutTargetMenuPath kStrMutInternalPopupMenuNameKey
71 
72 // Menu item positions:
73 #define kStrMutSeparator1MenuItemPosition 10.0
74 #define kStrMutAboutThisMenuItemPosition 11.0
75 
76 // Initial data format version numbers
77 #define kStrMutFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
78 #define kStrMutFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
79 
80 // Data format version numbers for the PluginVersion resource
81 #define kStrMutCurrentMajorFormatNumber kStrMutFirstMajorFormatNumber // most recent major format change
82 #define kStrMutCurrentMinorFormatNumber kStrMutFirstMinorFormatNumber // most recent minor format change
83 
84 #endif // __StrMutID_h__
85 
86 // End, StrMutID.h.
87