InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IStructureViewPrefs.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Matt Joss
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 __IStructureViewPrefs__
25 #define __IStructureViewPrefs__
26 
27 #include "XMediaUIID.h"
28 #include "IPMUnknown.h"
29 
32 {
33 public:
34  enum { kDefaultIID = IID_ISTRUCTUREVIEWPREFS };
35 
36 
37 
42  virtual bool16 ShowAttributes() const = 0;
43 
47  virtual void SetShowAttributes(bool16 displayRoot) = 0;
48 
53  virtual bool16 ShowComments() const = 0;
54 
58  virtual void SetShowComments(bool16 displayRoot) = 0;
59 
64  virtual bool16 ShowPIs() const = 0;
65 
69  virtual void SetShowPIs(bool16 displayRoot) = 0;
70 
75  virtual bool16 ShowTextSnippets() const = 0;
76 
80  virtual void SetShowTextSnippets(bool16 showTextSnippets) = 0;
81 
85  virtual void Copy(IStructureViewPrefs* other) = 0;
86 };
87 
88 
89 #endif