InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
LnkWtchID.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 LnkWtch plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __LnkWtchID_h__
28 #define __LnkWtchID_h__
29 
30 #include "SDKDef.h"
31 
32 // Comment out the#define below to build with the SDK for the InDesign CS2 Product Family.
33 // Leave the#define below to build with the SDK for the InDesign CS3 Product Family.
34 #define SDKAUTOUNDO 1
35 
36 
37 // Company:
38 #define kLnkWtchCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
39 #define kLnkWtchCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
40 
41 // Plug-in:
42 #define kLnkWtchPluginName "LinkWatcher" // Name of this plug-in.
43 #define kLnkWtchPrefixNumber 0xddc00 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
44 #define kLnkWtchVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
45 #define kLnkWtchAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
46 
47 // Plug-in Prefix: (please change kLnkWtchPrefixNumber above to modify the prefix.)
48 #define kLnkWtchPrefix RezLong(kLnkWtchPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
49 #define kLnkWtchStringPrefix SDK_DEF_STRINGIZE(kLnkWtchPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
50 
51 // PluginID:
52 
53 // ClassIDs:
54 
55 
56 // <Message ID> // note - message ids conflict with class ids.
57 
58 // InterfaceIDs:
59 
60 // ImplementationIDs:
61 
62 // ActionIDs:
63 
64 // WidgetIDs:
65 
66 // "About Plug-ins" sub-menu:
67 #define kLnkWtchAboutMenuKey kLnkWtchStringPrefix "kLnkWtchAboutMenuKey"
68 #define kLnkWtchTargetMenuPath kLnkWtchInternalPopupMenuNameKey
69 
70 // Other StringKeys:
71 #define kLnkWtchAboutBoxStringKey kLnkWtchStringPrefix "kLnkWtchAboutBoxStringKey"
72 #define kLnkWtchPanelTitleKey kLnkWtchStringPrefix "kLnkWtchPanelTitleKey"
73 #define kLnkWtchInternalPopupMenuNameKey kLnkWtchStringPrefix "kLnkWtchInternalPopupMenuNameKey"
74 #define kLnkWtchItemBaseKey kLnkWtchStringPrefix "kLnkWtchItemBaseKey"
75 
76 
77 
78 // Menu item positions:
79 #define kLnkWtchAboutThisMenuItemPosition 11.0
80 
81 // Initial data format version numbers
82 #define kLnkWtchFirstMajorFormatNumber kSDKDef_40_PersistMajorVersionNumber
83 #define kLnkWtchFirstMinorFormatNumber kSDKDef_40_PersistMinorVersionNumber
84 
85 // Data format version numbers for the PluginVersion resource
86 #define kLnkWtchCurrentMajorFormatNumber kLnkWtchFirstMajorFormatNumber // most recent major format change
87 #define kLnkWtchCurrentMinorFormatNumber kLnkWtchFirstMinorFormatNumber // most recent minor format change
88 
89 // ResourceIDs:
90 #define kLnkWtchListElementRsrcID 1200
91 
92 #endif // __LnkWtchID_h__
93 
94 // End, LnkWtchID.h.
95 
96