InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SLCID.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 SLC plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __SLCID_h__
28 #define __SLCID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kSLCCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kSLCCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kSLCPluginName "SingleLineComposer" // Name of this plug-in.
38 #define kSLCPrefixNumber 0x42500 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kSLCVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kSLCAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kSLCPrefixNumber above to modify the prefix.)
43 #define kSLCPrefix RezLong(kSLCPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kSLCStringPrefix SDK_DEF_STRINGIZE(kSLCPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // Missing plug-in: (see ExtraPluginInfo resource)
47 #define kSLCMissingPluginURLValue kSDKDefPartnersStandardValue_enUS // URL displayed in Missing Plug-in dialog
48 #define kSLCMissingPluginAlertValue kSDKDefMissingPluginAlertValue // Message displayed in Missing Plug-in dialog - provide a string that instructs user how to solve their missing plug-in problem
49 
50 
51 // PluginID:
52 
53 // ClassIDs:
54 
55 // InterfaceIDs:
56 // None in this plug-in.
57 
58 // ImplementationIDs:
59 
60 // ActionIDs:
61 
62 // WidgetIDs:
63 // None in this plug-in.
64 
65 // "About Plug-ins" sub-menu:
66 #define kSLCAboutMenuKey kSLCStringPrefix "kSLCAboutMenuKey"
67 #define kSLCAboutMenuPath kSDKDefStandardAboutMenuPath kSLCCompanyKey
68 
69 // "Plug-ins" sub-menu:
70 #define kSLCPluginsMenuKey kSLCStringPrefix "kSLCPluginsMenuKey"
71 #define kSLCPluginsMenuPath kSDKDefPlugInsStandardMenuPath kSLCCompanyKey kSDKDefDelimitMenuPath kSLCPluginsMenuKey
72 
73 // Menu item keys:
74 // none.
75 
76 // Other StringKeys:
77 #define kSLCAboutBoxStringKey kSLCStringPrefix "kSLCAboutBoxStringKey"
78 #define kSLComposerNameStringKey kSLCStringPrefix "kSLComposerNameStringKey"
79 
80 #define kSLCTargetMenuPath kSLCPluginsMenuPath
81 
82 // Initial data format version numbers
83 #define kSLCFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
84 #define kSLCFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
85 
86 // Data format version numbers for the PluginVersion resource
87 #define kSLCCurrentMajorFormatNumber kSLCFirstMajorFormatNumber // most recent major format change
88 #define kSLCCurrentMinorFormatNumber kSLCFirstMinorFormatNumber // most recent minor format change
89 
90 #endif // __SLCID_h__
91 // End, SLCID.h.
92