InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IArrangeSuite.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Ryan Gano
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 // Note:
24 //
25 //========================================================================================
26 
27 #ifndef _IArrangeSuite_
28 #define _IArrangeSuite_
29 //________________________________________________________________________________________________
30 // INCLUDES
31 //________________________________________________________________________________________________
32 
33 //================================================================================================
34 //________________________________________________________________________________________________
35 // CLASS DECLARATION
36 //________________________________________________________________________________________________
37 class IArrangeSuite : public IPMUnknown
38  {
39  //____________________________________________________________________________________________
40  // Data Types
41  //____________________________________________________________________________________________
42  public:
43  enum { kDefaultIID = IID_IARRANGESUITE };
44 
45  //____________________________________________________________________________________________
46  // Member functions
47  //____________________________________________________________________________________________
48  public:
53  virtual bool16 CanBringToFront (void) const = 0;
54 
59  virtual bool16 CanBringForward (void) const = 0;
60 
65  virtual bool16 CanSendBackward (void) const = 0;
66 
71  virtual bool16 CanSendToBack (void) const = 0;
72 
77  virtual ErrorCode ProcessBringToFront () = 0;
78 
83  virtual ErrorCode ProcessBringForward () = 0;
84 
89  virtual ErrorCode ProcessSendBackward () = 0;
90 
95  virtual ErrorCode ProcessSendToBack () = 0;
96 
97  };
98 
99 #endif // _IArrangeSuite_