InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IAssignmentPackageUIFacade.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Michele Stutzman
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 __IASSIGNMENTPACKAGEUIFACADE__
25 #define __IASSIGNMENTPACKAGEUIFACADE__
26 
27 #include "AssignmentUIID.h"
28 #include "Utils.h"
29 
30 class IAssignedDocument;
31 
37 {
38 public:
39  enum { kDefaultIID = IID_IASSIGNMENTPACKAGEUIFACADE };
40 
44  virtual bool16 CanPackage() const = 0;
45 
50  virtual ErrorCode Package(bool16 email = kFalse) = 0;
51 
56  virtual bool16 EnableUpdatePackage() const = 0;
57 
61  virtual ErrorCode UpdatePackage(bool16 email = kFalse) = 0;
62 
66  virtual bool16 CanForwardPackage() const = 0;
67 
72  virtual ErrorCode ForwardPackage(bool16 email = kFalse) = 0;
73 
77  virtual bool16 CanReturnPackage() const = 0;
78 
83  virtual ErrorCode ReturnPackage(bool16 email = kFalse) = 0;
84 
88  virtual bool16 CanOpenPackage() const = 0;
89 
94  virtual ErrorCode OpenPackage(UIDRef& openDocRef) = 0;
95 
99  virtual bool16 CanCancelPackage() const = 0;
100 
104  virtual ErrorCode CancelPackage() = 0;
105 };
106 
107 #endif // __IASSIGNMENTPACKAGEUIFACADE__