InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ITransformPanelPrefsCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Richard Rodseth
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: Preferences for the Transform Panel
24 //
25 //========================================================================================
26 
27 #ifndef __ITransformPanelPrefsCmdData__
28 #define __ITransformPanelPrefsCmdData__
29 
30 #include "IPMUnknown.h"
31 #include "SpreadID.h"
32 #include "TransformTypes.h"
33 
35 {
36 public:
37  virtual void SetCoordinateSpace(const Transform::CoordinateSpace& newCoordinateSpace) = 0;
38  virtual void SetShowStrokeBounds( Geometry::BoundsKind showStrokeBounds) = 0;
39  virtual void SetShowContentOffset(bool16 showContentOffset) = 0;
40  virtual void SetScaleStrokes(bool16 scaleStrokes) = 0;
41  virtual void SetScaleUsingLens(bool16) = 0;
42  virtual void SetScaleXPEffects(bool16 scaleXPEffects) = 0;
43 
44  virtual Transform::CoordinateSpace GetCoordinateSpace() const = 0;
45  virtual Geometry::BoundsKind GetShowStrokeBounds() const = 0;
46  virtual bool16 GetShowContentOffset() const = 0;
47  virtual bool16 GetScaleStrokes() const = 0;
48  virtual bool16 GetScaleUsingLens() const = 0;
49  virtual bool16 GetScaleXPEffects() const = 0;
50 
51  virtual bool16 GetChangeCoordinateSpace() const = 0;
52  virtual bool16 GetChangeShowStrokeBounds() const = 0;
53  virtual bool16 GetChangeShowContentOffset() const = 0;
54  virtual bool16 GetChangeScaleStrokes() const = 0;
55  virtual bool16 GetChangeScaleUsingLens() const = 0;
56  virtual bool16 GetChangeScaleXPEffects() const = 0;
57 };
58 
59 
60 #endif // __ITransformPanelPrefsCmdData__