InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IImageObjectSuite.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: DBerggren
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 the interface for the image object suite to be used in the new selection architecture
24 //
25 //========================================================================================
26 
27 #ifndef __IImageObjectSuite__
28 #define __IImageObjectSuite__
29 
30 // ----- Interface files
31 #include "IPMUnknown.h"
32 #include "IGraphicLayerInfo.h"
33 
34 // ----- ID files
35 #include "ImageID.h"
36 
38 {
39  public:
40  enum { kDefaultIID = IID_IIMAGEOBJECTSUITE };
41 
42  //________________________________________________________________________________________
43  // Accessors
44  //________________________________________________________________________________________
45 
51  virtual ErrorCode InitGraphicLayerInfo () = 0;
52 
58  virtual ErrorCode GetGraphicLayerInfo (IGraphicLayerInfo* dstLayerInfo) = 0;
59 
65  virtual ErrorCode SetGraphicLayerInfo (IGraphicLayerInfo* srcLayerInfo) = 0;
66 
71  virtual ErrorCode GetGraphicItem (UIDRef& itemUIDRef) = 0;
72 
76  virtual bool16 CanModifyLayers () = 0;
77 
81  virtual bool16 BadLinkState () = 0;
82 
86  virtual bool16 HasLayerCompInfo () = 0;
87 
88 };
89 
90 #endif // __IImageObjectSuite__