InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
TblBscID.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 TblBsc plug-in.
24 //
25 //========================================================================================
26 
27 #ifndef __TblBscID_h__
28 #define __TblBscID_h__
29 
30 #include "SDKDef.h"
31 
32 // Company:
33 #define kTblBscCompanyKey kSDKDefPlugInCompanyKey // Company name used internally for menu paths and the like. Must be globally unique, only A-Z, 0-9, space and "_".
34 #define kTblBscCompanyValue kSDKDefPlugInCompanyValue // Company name displayed externally.
35 
36 // Plug-in:
37 #define kTblBscPluginName "TableBasics" // Name of this plug-in.
38 #define kTblBscPrefixNumber 0x57300 // Unique prefix number for this plug-in(*Must* be obtained from Adobe Developer Support).
39 #define kTblBscVersion kSDKDefPluginVersionString // Version of this plug-in (for the About Box).
40 #define kTblBscAuthor "Adobe Developer Technologies" // Author of this plug-in (for the About Box).
41 
42 // Plug-in Prefix: (please change kTblBscPrefixNumber above to modify the prefix.)
43 #define kTblBscPrefix RezLong(kTblBscPrefixNumber) // The unique numeric prefix for all object model IDs for this plug-in.
44 #define kTblBscStringPrefix SDK_DEF_STRINGIZE(kTblBscPrefixNumber) // The string equivalent of the unique prefix number for this plug-in.
45 
46 // PluginID:
47 
48 // ClassIDs:
49 // InterfaceIDs:
50 // ImplementationIDs:
51 // ActionIDs:
52 // WidgetIDs:
53 
54 
55 // "About Plug-ins" sub-menu:
56 #define kTblBscAboutMenuKey kTblBscStringPrefix "kTblBscAboutMenuKey"
57 #define kTblBscAboutMenuPath kSDKDefStandardAboutMenuPath kTblBscCompanyKey
58 
59 // "Plug-ins" sub-menu:
60 #define kTblBscPluginsMenuKey kTblBscStringPrefix "kTblBscPluginsMenuKey"
61 #define kTblBscPluginsMenuPath kSDKDefPlugInsStandardMenuPath kTblBscCompanyKey kSDKDefDelimitMenuPath kTblBscPluginsMenuKey
62 
63 // Menu item keys:
64 #define kTblBscNewTableMenuItemKey kTblBscStringPrefix "kTblBscNewTableMenuItemKey"
65 
66 // Other StringKeys:
67 #define kTblBscDialogTitleKey kTblBscStringPrefix "kTblBscDialogTitleKey"
68 
69 #define kTblBscAboutBoxStringKey kTblBscStringPrefix "kTblBscAboutBoxStringKey"
70 #define kTblBscNewTableStringKey kTblBscStringPrefix "kTblBscNewTableStringKey"
71 #define kTblBscTargetMenuPath kTblBscPluginsMenuPath
72 
73 #define kTblBscNumRowsWidgetKey kTblBscStringPrefix "kTblBscNumRowsWidgetKey"
74 #define kTblBscNumColsWidgetKey kTblBscStringPrefix "kTblBscNumColsWidgetKey"
75 #define kTblBscPreFilledWidgetKey kTblBscStringPrefix "kTblBscPreFilledWidgetKey"
76 
77 #define kTblBscAddressFillRadioWidgetKey kTblBscStringPrefix "kTblBscAddressFillRadioWidgetKey"
78 #define kTblBscPlaceholderFillRadioWidgetKey kTblBscStringPrefix "kTblBscPlaceholderFillRadioWidgetKey"
79 
80 
81 // Menu item positions:
82 #define kTblBscNewTableMenuItemPosition 1.0
83 #define kTblBscSeparator1MenuItemPosition 10.0
84 #define kTblBscAboutThisMenuItemPosition 11.0
85 
86 // Initial data format version numbers
87 #define kTblBscFirstMajorFormatNumber kSDKDef_30_PersistMajorVersionNumber
88 #define kTblBscFirstMinorFormatNumber kSDKDef_30_PersistMinorVersionNumber
89 
90 // Data format version numbers for the PluginVersion resource
91 #define kTblBscCurrentMajorFormatNumber kTblBscFirstMajorFormatNumber // most recent major format change
92 #define kTblBscCurrentMinorFormatNumber kTblBscFirstMinorFormatNumber // most recent minor format change
93 
94 #endif // __TblBscID_h__
95 
96 // End, TblBscID.h.
97 
98 
99