InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
HypID.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 __HypID_h__
25 #define __HypID_h__
26 
27 #include "SDKDef.h"
28 
29 // Company:
30 #define kHypCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
31 #define kHypCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
32 
33 // Plug-in:
34 #define kHypPluginName "Hyphenator" // Name of this plug-in.
35 #define kHypPrefixNumber 0x67020 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
36 #define kHypVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
37 #define kHypAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
38 
39 // Plug-in Prefix: (please change kHypPrefixNumber above to modify the prefix.)
40 #define kHypPrefix RezLong(kHypPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
41 #define kHypStringPrefix SDK_DEF_STRINGIZE(kHypPrefixNumber) // 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 // performance IDs
52 
53 //Script Element IDs
54 
55 // scripting defs
56 enum HypScriptIDs
57 {
58  // en_HypPerformanceMetricsSelector = 'hppm',
59  p_HypMax = 'hpmx',
60  p_HypTotal = 'hptt',
61 };
62 
63 // Linguistic service provider name
64 #define kHypLinguisticServiceName kHypStringPrefix "kHypLinguisticServiceName"
65 
66 // Languages:
67 // No new language names are introduced by this plug-in.
68 // Check out the notes in the body of HypAdapter.cpp if you need
69 // to add languages the application is not aware of.
70 
71 // Initial data format version numbers
72 #define kHypFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
73 #define kHypFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
74 
75 // Data format version numbers for the PluginVersion resource
76 #define kHypCurrentMajorFormatNumber kHypFirstMajorFormatNumber // most recent major format change
77 #define kHypCurrentMinorFormatNumber kHypFirstMinorFormatNumber // most recent minor format change
78 
79 #endif // __HypID_h__
80 
81 // End, HypID.h.
82 
83