InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
BscShpScriptingDefs.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 _BscShpScriptingDefs_h_
25 #define _BscShpScriptingDefs_h_
26 
27 
28 // GUIDs for script objects:
29 
30 // {576252F1-187A-4b95-ABB4-21160B20CBD0}
31 #define kBscShpBasicShapeObject_CLSID {0x576252f1, 0x187a, 0x4b95, {0xab, 0xb4, 0x21, 0x16, 0xb, 0x20, 0xcb, 0xd0} }
32 // {ECEAB454-4E99-4142-BFEB-943DE788C213}
33 #define kBscShpBasicShapesObject_CLSID {0xeceab454, 0x4e99, 0x4142, {0xbf, 0xeb, 0x94, 0x3d, 0xe7, 0x88, 0xc2, 0x13} }
34 
35 // ScriptIDs:
36 // New ScriptIDs must be registered with Adobe Developer Support to prevent conflict with other scriptable plug-ins.
37 // See the Making Your Plug-in Scriptable tech note.
38 
39 // Object ScriptIDs:
40 enum BscShpScriptClasses
41 {
42  c_BasicShape = 'BASH', // The basic shape script object (See kBasicShapeObjectScriptElement in BscShp.fr)
43  c_BasicShapes = 'BASC' // Collection of basic shape script objects.
44 };
45 
46 enum BscShpScriptProperties
47 {
48  p_TextBasicShape = 'pTBS'
49 };
50 #endif //_BscShpScriptingDefs_h_
51 
52 // End BscShpScriptingDefs.h
53 
54