InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISVGPreferences.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Nitin Kumar
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 SVG import preferences. These preferences should
25 // be set using the kSetSVGPrefsCmdBoss command.
26 //
27 //========================================================================================
28 
29 #ifndef __ISVGPreferences__
30 #define __ISVGPreferences__
31 
32 #include "IPMUnknown.h"
33 #include "PMReal.h"
34 
39 {
40 public:
43  enum
44  {
48 
56 
63 
70 
78 
85 
95  };
96 
100  virtual void SetImportPref(const int32 importPref) = 0;
101 
105  virtual void SetCreateFrame(const int32 createFrame) = 0;
106 
110  virtual void SetCreateProxy(const int32 createProxy) = 0;
111 
115  virtual int32 GetImportPref() const = 0;
116 
120  virtual int32 GetCreateFrame() const = 0;
121 
125  virtual int32 GetCreateProxy() const = 0;
126 
127 };
128 
129 #endif