InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISVGExportCommandData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Greg St. Pierre
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2007 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 __ISVGExportCommandData__
25 #define __ISVGExportCommandData__
26 
27 class RangeProgressBar;
28 
29 #include "SVGExportID.h"
30 
31 #include "IPMStream.h"
32 #include "ISVGExportPreferences.h"
33 #include "TransformTypes.h"
34 
39 {
40 public:
41  enum { kDefaultIID = IID_ISVGEXPORTCOMMANDDATA };
42 
49  virtual void SetUIFlags(UIFlags uiFlags) = 0;
55  virtual UIFlags GetUIFlags() const = 0;
56 
62  virtual void SetCompressSVGOutput(bool16 compress) = 0;
68  virtual bool16 GetCompressSVGOutput() const = 0;
69 
78  virtual void SetProgress( RangeProgressBar* pProgress ) = 0;
79 
85  virtual RangeProgressBar* GetProgress() = 0;
86 
87  //[TODO]temporary for prototype APIs
88  virtual void SetOutputStream(
89  InterfacePtr<IPMStream> inOutputStream) = 0;
90 
91  virtual InterfacePtr<IPMStream> GetOutputStream() const = 0;
98  virtual void SetIncludeOpticalMarginAlignment(bool16 use) = 0;
99 
105  virtual bool16 GetIncludeOpticalMarginAlignment() const = 0;
106 
113  virtual void SetCoordinateSpace(const Transform::CoordinateSpace& coordinateSpace) = 0;
114 
122 
127  virtual void SetIncludeInlineObjects(bool16 includeInline) = 0;
128 
133  virtual bool16 GetIncludeInlineObjects() const = 0;
134 };
135 
136 #endif