InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IImportSVGCmdData.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 #ifndef __IImportSVGCmdData__
24 #define __IImportSVGCmdData__
25 
26 #include "IPMUnknown.h"
27 
28 class IDataBase;
29 class IPMStream;
30 class PMReal;
31 
35 {
36 public:
49  virtual void Set(IDataBase* db,
50  const UID uid,
51  const PMReal& targetRes,
52  IPMStream* pStreamToImport,
53  const UIFlags uiFlags,
54  const bool16 bAddProColor,
55  const bool16 bImportDCS,
56  const bool16 bReadOPI,
57  const bool16 bCreateFrame,
58  UID uidPreview) = 0;
59 
63  virtual IDataBase* GetSVGDB() const = 0;
64 
68  virtual UID GetSVGUID() const = 0;
69 
73  virtual PMReal GetTargetRes() const = 0;
74 
78  virtual IPMStream* GetStream() const = 0;
79 
83  virtual UIFlags GetUIFlags() const = 0;
84 
88  virtual bool16 GetAddProColor() const = 0;
89 
93  virtual bool16 GetImportDCS() const = 0;
94 
98  virtual bool16 GetReadOPI() const = 0;
99 
103  virtual bool16 GetCreateFrame() const = 0;
104 
108  virtual UID GetPreview() const = 0;
109 };
110 
111 #endif