InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ILayoutTrackerAccess.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Paul Sorrick
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 __LAYOUTTRACKERACCESS__
25 #define __LAYOUTTRACKERACCESS__
26 
27 #include "LayoutUIID.h"
28 #include "ILayoutTarget.h"
29 
30 //----------------------------------------------------------------------------------------
31 // Forward Declarations
32 //----------------------------------------------------------------------------------------
33 
34 class UIDList;
35 class ITracker;
36 
37 //----------------------------------------------------------------------------------------
38 // LayoutTrackerAccess: Access interface for layout trackers to layout item list.
39 //----------------------------------------------------------------------------------------
40 
42 {
43  //____________________________________________________________________________________________
44  // Data Types
45  //____________________________________________________________________________________________
46  public:
47  enum { kDefaultIID = IID_ILAYOUTTRACKERACCESS };
48 
49  public:
50 
56  virtual UIDList GetUIDList (ITracker* tracker, ILayoutTarget::StandoffChoice stripStandoffs, const PMIID& iid = kInvalidInterfaceID) const = 0;
57 
62  virtual bool16 IsSelected (ITracker* tracker, UID pageItemUID) const = 0;
63 
64  };
65 
66 #endif //__LAYOUTTRACKERACCESS__