InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IAssignSetPropsCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Jon Pugh
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 __IASSIGNSETPROPSCMDDATA__
25 #define __IASSIGNSETPROPSCMDDATA__
26 
27 #include "IPMUnknown.h"
28 #include "IAssignment.h"
29 #include "AssignmentID.h"
30 #include "CommandID.h"
31 #include "URI.h"
32 
33 class IAssignedDocument;
34 
39 {
40  public:
41  enum { kDefaultIID = IID_IASSIGNSETPROPSCMDDATA };
42 
55  virtual void Set(const PMString* name, const PMString* file,
56  const PMString* user, const UID* color, const IAssignment::AssignmentExportOptions* options,
57  const bool16* dirty, const bool16* includeLinkedWhenPackage, const URI* uri = nil) = 0;
58 
63  virtual const PMString* GetName() = 0;
64 
69  virtual const PMString* GetFile() = 0;
70 
75  virtual const PMString* GetUser() = 0;
76 
81  virtual const UID* GetColor() = 0;
82 
88 
93  virtual const bool16* GetDirty() = 0;
94 
99  virtual const bool16* GetIncludeLinkedFilesWhenPackage() = 0;
100 
105  virtual const URI* GetURI() = 0;
106 };
107 
109 
110 #endif // __IASSIGNSETPROPSCMDDATA__