InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
TxtExpID.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 TxtExp plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __TxtExpID_h__
28 #define __TxtExpID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kTxtExpCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kTxtExpCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kTxtExpPluginName "TextExportFilter" // Name of this plug-in.
38 #define kTxtExpPrefixNumber 0x42200 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kTxtExpVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kTxtExpAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kTxtExpPrefixNumber above to modify the prefix.)
43 #define kTxtExpPrefix RezLong(kTxtExpPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kTxtExpStringPrefix SDK_DEF_STRINGIZE(kTxtExpPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // PluginID:
47 
48 // ClassIDs:
49 
50 
51 // InterfaceIDs:
52 
53 // ImplementationIDs:
54 
55 // ActionIDs:
56 
57 // WidgetIDs:
58 
59 // "About Plug-ins" sub-menu:
60 #define kTxtExpAboutMenuKey kTxtExpStringPrefix "kTxtExpAboutMenuKey"
61 #define kTxtExpAboutMenuPath kSDKDefStandardAboutMenuPath kTxtExpCompanyKey
62 
63 // "Plug-ins" sub-menu:
64 #define kTxtExpPluginsMenuKey kTxtExpStringPrefix "kTxtExpPluginsMenuKey"
65 #define kTxtExpPluginsMenuPath kSDKDefPlugInsStandardMenuPath kTxtExpCompanyKey kSDKDefDelimitMenuPath kTxtExpPluginsMenuKey
66 
67 // Menu item keys:
68 
69 // Other StringKeys:
70 #define kTxtExpAboutBoxStringKey kTxtExpStringPrefix "kTxtExpAboutBoxStringKey"
71 #define kTxtExpDialogTitleKey kTxtExpStringPrefix "kTxtExpDialogTitleKey"
72 #define kTxtExpTargetMenuPath kTxtExpPluginsMenuPath
73 #define kTxtExpFormatNameKey kTxtExpStringPrefix "kTxtExpFormatNameKey"
74 #define kTxtExpProgressBarTitleKey kTxtExpStringPrefix "kTxtExpProgressBarTitleKey"
75 #define kTxtExpInProgressStringKey kTxtExpStringPrefix "kTxtExpInProgressStringKey"
76 #define kTxtExpEncodingASCIIKey kTxtExpStringPrefix "kTxtExpEncodingASCIIKey"
77 #define kTxtExpEncodingUNICODEKey kTxtExpStringPrefix "kTxtExpEncodingUNICDEKey"
78 #define kTxtExpEncodingShiftJISKey kTxtExpStringPrefix "kTxtExpEncodingShiftJISKey"
79 #define kTxtExpEncodingJISKey kTxtExpStringPrefix "kTxtExpEncodingJISKey"
80 
81 // non-translated StringKeys:
82 #define kTxtExpFileExtensionKey "CPP"
83 
84 // Nontranslated Strings:
85 #define kTxtExpFileType 'TEXT'
86 
87 // Initial data format version numbers
88 #define kTxtExpFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
89 #define kTxtExpFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
90 
91 // Data format version numbers for the PluginVersion resource
92 #define kTxtExpCurrentMajorFormatNumber kTxtExpFirstMajorFormatNumber // most recent major format change
93 #define kTxtExpCurrentMinorFormatNumber kTxtExpFirstMinorFormatNumber // most recent minor format change
94 
95 #endif // __TxtExpID_h__
96 
97 // End, TxtExpID.h.
98 
99 
100