InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ISVGPrefsCmdData.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 // Command data for setting the SVG import preferences. Used for
25 // the kSetSVGPrefsCmdBoss command.
26 //
27 //========================================================================================
28 
29 #ifndef __ISVGPrefsCmdData__
30 #define __ISVGPrefsCmdData__
31 
32 #include "IPMUnknown.h"
33 #include "ISVGPreferences.h"
34 
38 {
39 public:
47  virtual void Set(const int32 importSVGmode = ISVGPreferences::kDontChange,
48  const int32 importSVGCreateFrame = ISVGPreferences::kDontChange,
49  const int32 importSVGCreateProxy = ISVGPreferences::kDontChange) = 0;
50 
54  virtual void CopyPrefs(ISVGPreferences * copyPref) = 0;
55 
59  virtual void SetImportSVGMode(const int32 importSVGmode) = 0;
60 
64  virtual void SetImportSVGCreateFrame(const int32 createFrame) = 0;
65 
69  virtual void SetImportSVGCreateProxy(const int32 createProxy) = 0;
70 
74  virtual int32 GetImportSVGMode(void) const = 0;
75 
79  virtual int32 GetImportSVGCreateFrame(void) const = 0;
80 
84  virtual int32 GetImportSVGCreateProxy(void) const = 0;
85 
86 };
87 
88 #endif