InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IInCopyStoryList.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: cparrish
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 __IInCopyStoryList__
25 #define __IInCopyStoryList__
26 
27 #include "InCopyCoreID.h"
28 
41 {
42  public:
43  enum { kDefaultIID = IID_IINCOPYSTORYLIST };
44 
45 
49  virtual void ProcessAddStory(UID story) = 0;
50 
54  virtual void ProcessRemoveStory(UID story) = 0;
55 
60  virtual int32 GetStoryCount() const= 0;
61 
62 
67  virtual UIDRef GetNthStoryRef(int32 nth) const = 0;
68 
73  virtual UID GetNthStoryUID(int32 nth) const = 0;
74 
79  virtual int32 Location(UID story) const = 0;
80 
81 
85  virtual void AddStory(UID story) = 0;
86 
90  virtual void RemoveStory(UID story) = 0;
91 
96  virtual bool16 HasTextStory() const = 0;
97 
98 
103  virtual bool16 HasGraphicStory() const = 0;
104 };
105 
106 #endif //__InCopyStoryList__