InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CstAFltID.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 CstAFlt plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __CstAFltID_h__
28 #define __CstAFltID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kCstAFltCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kCstAFltCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kCstAFltPluginName "CustomActionFilter" // Name of this plug-in.
38 #define kCstAFltPrefixNumber 0x6BB00 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kCstAFltVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kCstAFltAuthor "Ken Sadahiro" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kCstAFltPrefixNumber above to modify the prefix.)
43 #define kCstAFltPrefix RezLong(kCstAFltPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kCstAFltStringPrefix SDK_DEF_STRINGIZE(kCstAFltPrefixNumber) // 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 kCstAFltAboutMenuKey kCstAFltStringPrefix "kCstAFltAboutMenuKey"
61 #define kCstAFltAboutMenuPath kSDKDefStandardAboutMenuPath kCstAFltCompanyKey
62 
63 // "Plug-ins" sub-menu:
64 #define kCstAFltPluginsMenuKey kCstAFltStringPrefix "kCstAFltPluginsMenuKey"
65 #define kCstAFltPluginsMenuPath kSDKDefPlugInsStandardMenuPath kCstAFltCompanyKey kSDKDefDelimitMenuPath kCstAFltPluginsMenuKey
66 
67 // Menu item keys:
68 // none in this plugin
69 
70 // Other StringKeys:
71 #define kCstAFltAboutBoxStringKey kCstAFltStringPrefix "kCstAFltAboutBoxStringKey"
72 #define kCstAFltOnlineSupportNameStringKey kCstAFltStringPrefix "kCstAFltOnlineSupportNameStringKey"
73 #define kCstAFltUpdatesNameStringKey kCstAFltStringPrefix "kCstAFltUpdatesNameStringKey"
74 #define kCstAFltRegistrationNameStringKey kCstAFltStringPrefix "kCstAFltRegistrationNameStringKey"
75 #define kCstAFltInDesignOnlineNameStringKey kCstAFltStringPrefix "kCstAFltInDesignOnlineNameStringKey"
76 
77 #define kCstAFltTargetMenuPath kCstAFltPluginsMenuPath
78 
79 // Menu item positions:
80 #define kCstAFltItemOneMenuItemPosition 1.0
81 #define kCstAFltItemTwoMenuItemPosition 2.0
82 #define kCstAFltItemThreeMenuItemPosition 3.0
83 
84 // Initial data format version numbers
85 #define kCstAFltFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
86 #define kCstAFltFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
87 
88 // Data format version numbers for the PluginVersion resource
89 #define kCstAFltCurrentMajorFormatNumber kCstAFltFirstMajorFormatNumber // most recent major format change
90 #define kCstAFltCurrentMinorFormatNumber kCstAFltFirstMinorFormatNumber // most recent minor format change
91 
92 
93 #endif // __CstAFltID_h__
94 // Generated by Dolly build 17: template "IfPanelMenu".
95 // End, CstAFltID.h.
96 
97