InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IBookSyncCmdData.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 __IBOOKSYNCCMDDATA__
25 #define __IBOOKSYNCCMDDATA__
26 
27 #include "BookID.h"
28 
29 class UIDList;
30 
37 {
38  public:
39  enum { kDefaultIID = IID_IBOOKSYNCCMDDATA };
40 
52  virtual void Set
53  (
54  IDFile& sysFile,
55  UIDList* itemList,
56  bool16 syncAll = kTrue,
57  bool16 useDefaultOptions = kTrue,
58  bool16 syncOptionsOnly = kTrue
59  ) = 0;
60 
65  virtual IDFile GetBookFile() = 0;
66 
70  virtual void SetBookFile(const IDFile& BookFile) = 0;
71 
76  virtual UIDList* GetUIDList() = 0;
77 
81  virtual void SetUIDList(UIDList* uidList) = 0;
82 
87  virtual bool16 IsSyncAll() = 0;
88 
94  virtual bool16 UseDefaultOptions() = 0;
95 
101  virtual bool16 ToSyncOptionsOnly() = 0;
102 };
103 
104 #endif //__IBOOKSYNCCMDDATA__