InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IBookPaginateOptions.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Yeming Liu
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 __IBOOKPAGINATEOPTIONS__
25 #define __IBOOKPAGINATEOPTIONS__
26 
27 #include "IPMUnknown.h"
28 #include "BookID.h"
29 
34 {
35  public:
36  enum { kDefaultIID = IID_IBOOKPAGINATEOPTIONS };
37 
44  typedef enum { kNextPage, kOdd, kEven } Options;
45 
51 
55  virtual void SetPaginateOptions(IBookPaginateOptions::Options option) = 0;
56 
63  virtual bool16 GetInsertBlankPage() = 0;
64 
68  virtual void SetInsertBlankPage(bool16 insertBlankPage) = 0;
69 
74  virtual UIDRef GetCurrentBookUIDRef() = 0;
75 
79  virtual void SetCurrentBookUIDRef(UIDRef& bookUIDRef) = 0;
80 
87  virtual bool16 GetAutoRepaginateFlag() = 0;
88 
92  virtual void SetAutoRepaginateFlag(bool16 autoRepaginate) = 0;
93 };
94 
95 
96 #endif //__IBOOKPAGINATEOPTIONS__