InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ICreateTopicListCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Michel Hutinel
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 // Purpose: Interface data for creating a topic List
24 //
25 //========================================================================================
26 
27 #ifndef __ICREATETOPICLISTCMDDATA__
28 #define __ICREATETOPICLISTCMDDATA__
29 
30 #include "IPMUnknown.h"
31 #include "IndexingID.h"
32 #include "UIDRef.h"
33 #include "IIndexHeaderSet.h"
34 
35 class PMString;
36 class TopicSectionHeadersSet;
37 
42 {
43  public:
44  enum { kDefaultIID = IID_ICREATETOPICLISTCMDDATA };
45 
50  virtual const UIDRef& GetTargetItem() const = 0;
51 
56  virtual void SetTargetItem(const UIDRef& targetItem) = 0;
57 
61  virtual bool16 GetUseTopicListListFlag() const = 0;
62 
67  virtual void SetUseTopicListListFlag(bool16 useIt) = 0;
68 
72  virtual bool16 GetDoNotifyFlag() const = 0;
73 
77  virtual void SetDoNotifyFlag(bool16 notify) = 0;
78 };
79 
80 #endif // __ICREATETOPICLISTCMDDATA__