InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IPrnSelData.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 __IPrnSelData_h__
25 #define __IPrnSelData_h__
26 
27 // Interface includes:
28 #include "IPMUnknown.h"
29 #include "IDocument.h"
30 
31 // General includes:
32 
33 // Project includes:
34 #include "PrnSelID.h"
35 
41 class IPrnSelData : public IPMUnknown
42 {
43 public:
44 
45  enum {kDefaultIID = IID_IPRNSELDATA};
46 
50  virtual void SetIsChecked(bool16 bchecked) = 0;
51 
55  virtual bool16 GetIsChecked() = 0;
56 
60  virtual void SetSuppressPrintSelectionDialog(bool16 bSuppress)= 0;
61 
65  virtual bool16 GetSuppressPrintSelectionDialog() = 0;
66 
71  virtual bool16 GetPageUIDHadSelection(UID pageuid) = 0;
72 
76  virtual void LoadPageUID(UID pageuid) = 0;
77 
82  virtual bool16 GetPageItemUIDHadSelection(UID uid) = 0;
83 
87  virtual void LoadPageItemUID(UID uid) = 0;
88 
91  virtual void FlushUIDs() = 0;
92 };
93 
94 #endif // __IPrnSelData_h__
95 
96 // End, IPrnSelData.h.