InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CstUniID.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 CstUni plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __CstUniID_h__
28 #define __CstUniID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kCstUniCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kCstUniCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kCstUniPluginName "CustomUnits" // Name of this plug-in.
38 #define kCstUniPrefixNumber 0x55700 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kCstUniVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kCstUniAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kCstUniPrefixNumber above to modify the prefix.)
43 #define kCstUniPrefix RezLong(kCstUniPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kCstUniStringPrefix SDK_DEF_STRINGIZE(kCstUniPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // Missing plug-in: (see ExtraPluginInfo resource)
47 #define kCstUniMissingPluginURLValue kSDKDefPartnersStandardValue_enUS // URL displayed in Missing Plug-in dialog
48 #define kCstUniMissingPluginAlertValue 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 // ImplementationIDs:
56 
57 // ActionIDs:
58 // WidgetIDs:
59 
60 // "About Plug-ins" sub-menu:
61 #define kCstUniAboutMenuKey kCstUniStringPrefix "kCstUniAboutMenuKey"
62 #define kCstUniAboutMenuPath kSDKDefStandardAboutMenuPath kCstUniCompanyKey
63 
64 // "Plug-ins" sub-menu:
65 #define kCstUniPluginsMenuKey kCstUniStringPrefix "kCstUniPluginsMenuKey"
66 #define kCstUniPluginsMenuPath kSDKDefPlugInsStandardMenuPath kCstUniCompanyKey kSDKDefDelimitMenuPath kCstUniPluginsMenuKey
67 
68 // Menu item keys:
69 
70 // Other StringKeys:
71 #define kCstUniAboutBoxStringKey kCstUniStringPrefix "kCstUniAboutBoxStringKey"
72 
73 #define kCstUniString kCstUniStringPrefix "kCstUniString"
74 #define kCstUnisString kCstUniStringPrefix "kCstUnisString"
75 #define kCstUniAbbrPlaceHolderString kCstUniStringPrefix "kCstUniAbbrPlaceHolderString"
76 #define kCstUniAbbrString kCstUniStringPrefix "kCstUniAbbrString"
77 
78 // Initial data format version numbers
79 #define kCstUniFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
80 #define kCstUniFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
81 
82 // Data format version numbers for the PluginVersion resource
83 #define kCstUniCurrentMajorFormatNumber kCstUniFirstMajorFormatNumber // most recent major format change
84 #define kCstUniCurrentMinorFormatNumber kCstUniFirstMinorFormatNumber // most recent minor format change
85 
86 #endif // __CstUniID_h__
87 // End, CstUniID.h.
88 
89