InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
TranFxUIID.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 TranFxUI plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __TranFxUIID_h__
28 #define __TranFxUIID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kTranFxUICompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kTranFxUICompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kTranFxUIPluginName "TransparencyEffectUI" // Name of this plug-in.
38 #define kTranFxUIPrefixNumber 0x5c190 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kTranFxUIVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kTranFxUIAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kTranFxUIPrefixNumber above to modify the prefix.)
43 #define kTranFxUIPrefix RezLong(kTranFxUIPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kTranFxUIStringPrefix SDK_DEF_STRINGIZE(kTranFxUIPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // PluginID:
47 
48 // ClassIDs:
49 
50 // InterfaceIDs:
51 // None in this plug-in.
52 
53 // Implementation IDs:
54 
55 // ActionIDs:
56 
57 // WidgetIDs:
58 
59 // "About Plug-ins" sub-menu:
60 #define kTranFxUIAboutMenuKey kTranFxUIStringPrefix "kTranFxUIAboutMenuKey"
61 #define kTranFxUIAboutMenuPath kSDKDefStandardAboutMenuPath kTranFxUICompanyKey
62 
63 // "Plug-ins" sub-menu:
64 #define kTranFxUIPluginsMenuKey kTranFxUIStringPrefix "kTranFxUIPluginsMenuKey"
65 #define kTranFxUIPluginsMenuPath kSDKDefPlugInsStandardMenuPath kTranFxUICompanyKey
66 
67 // "Plug-ins" sub-menu item keys:
68 #define kTranFxUIDialogMenuItemKey kTranFxUIStringPrefix "kTranFxUIDialogMenuItemKey"
69 
70 // "Plug-ins" sub-menu item positions:
71 #define kTranFxUIDialogMenuItemPosition 1.0
72 
73 // Other StringKeys:
74 #define kTranFxUIDialogTitleKey kTranFxUIStringPrefix "kTranFxUIDialogTitleKey"
75 #define kTranFxUIAboutBoxStringKey kTranFxUIStringPrefix "kTranFxUIAboutBoxStringKey"
76 #define kTranFxUIXOffsetLabelStringKey kTranFxUIStringPrefix "kTranFxUIXOffsetLabelStringKey"
77 #define kTranFxUIYOffsetLabelStringKey kTranFxUIStringPrefix "kTranFxUIYOffsetLabelStringKey"
78 #define kTranFxUIUseBlackAsOpaqueWidgetKey kTranFxUIStringPrefix "kTranFxUIUseBlackAsOpaqueWidgetKey"
79 #define kTranFxUIUseAlphaWidgetKey kTranFxUIStringPrefix "kTranFxUIUseAlphaWidgetKey"
80 #define kTranFxUIUseBlurWidgetKey kTranFxUIStringPrefix "kTranFxUIUseBlurWidgetKey"
81 
82 // Initial data format version numbers
83 #define kTranFxUIFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
84 #define kTranFxUIFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
85 
86 // Data format version numbers for the PluginVersion resource
87 #define kTranFxUICurrentMajorFormatNumber kTranFxUIFirstMajorFormatNumber // most recent major format change
88 #define kTranFxUICurrentMinorFormatNumber kTranFxUIFirstMinorFormatNumber // most recent minor format change
89 
90 #endif // __TranFxUIID_h__
91 
92 // End, TranFxUIID.h.
93 
94