InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IPagesPanelPrefsCmdData.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 // Data interface for Pages Panel prefs command.
24 // includes : Page icon size, vertical or wrapping view, binding line visible setting.
25 //
26 //========================================================================================
27 
28 #ifndef __IPagesPanelPrefsCmdData__
29 #define __IPagesPanelPrefsCmdData__
30 
31 #include "IPMUnknown.h"
32 #include "IPagesPanelPrefs.h"
33 
39 {
40 public:
41 
45  virtual const IPagesPanelPrefs::IconSize GetIconSize() const = 0;
46 
50  virtual void SetIconSize(IPagesPanelPrefs::IconSize size) = 0;
51 
55  virtual const IPagesPanelPrefs::ViewSetting GetViewSetting() const = 0;
56 
61  virtual void SetViewSetting(IPagesPanelPrefs::ViewSetting setting) = 0;
62 
66  virtual const IPagesPanelPrefs::IconSize GetMasterIconSize() const = 0;
67 
71  virtual void SetMasterIconSize(IPagesPanelPrefs::IconSize size) = 0;
72 
76  virtual const bool16 GetMastersVerticalView() const = 0;
77 
81  virtual void SetMastersVerticalView(bool16 vertical) = 0;
82 
86  virtual const bool16 GetPagesFixedSize() const = 0;
87 
91  virtual void SetPagesFixedSize(bool16 fixed) = 0;
92 
96  virtual const bool16 GetMastersFixedSize() const = 0;
97 
101  virtual void SetMastersFixedSize(bool16 fixed) = 0;
102 
106  virtual const bool16 GetPagesOnTop() const = 0;
107 
111  virtual void SetPagesOnTop(bool16 top) = 0;
112 
116  virtual const bool16 GetPagesThumbnails() const = 0;
117 
121  virtual void SetPagesThumbnails(bool16 on) = 0;
122 
126  virtual const bool16 GetMastersThumbnails() const = 0;
127 
131  virtual void SetMastersThumbnails(bool16 on) = 0;
132 
137  virtual const bool16 GetShowTransparencyIcon() const = 0;
138 
143  virtual void SetShowTransparencyIcon(bool16 show) = 0;
144 
148  virtual const bool16 GetShowTransitionsIcon() const = 0;
149 
153  virtual void SetShowTransitionsIcon(bool16 show) = 0;
154 
158  virtual const bool16 GetShowRotationIcon() const = 0;
159 
163  virtual void SetShowRotationIcon(bool16 show) = 0;
164 };
165 
166 #endif // __IPagesPanelPrefsCmdData__