InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISVGDocPrefs.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Jagriti Sikka
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2019 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:
24 // Stores the current EPS import preferences. These preferences should
25 // be set using the kSetEPSPrefsCmdBoss command.
26 //
27 //========================================================================================
28 
29 #ifndef __ISVGDocPrefs__
30 #define __ISVGDocPrefs__
31 
32 #include "IPMUnknown.h"
33 #include "ISVGAttributes.h"
34 
35 #include "PMReal.h"
36 
39 class ISVGDocPrefs : public IPMUnknown
40 {
41 public:
43  enum { kDefaultIID = IID_ISVGDOCPREFS };
44 
48  virtual void SetEPUBExportStrategy(const ISVGAttributes::EPubExportSVGStrategy strategy) = 0;
49 
53  virtual ISVGAttributes::EPubExportSVGStrategy GetEPUBExportStrategy() const = 0;
54 
58  virtual void SetApplyOnAllSVGsPref(const bool16 value) = 0;
59 
63  virtual bool16 GetApplyOnAllSVGsPref() const = 0;
64 
65 };
66 
67 #endif