InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IExportStyleCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Ed Bomke
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 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 __IExportStyleCmdData__
25 #define __IExportStyleCmdData__
26 
27 #include "IPMUnknown.h"
28 #include "PMString.h"
29 
35 {
36  public:
40  virtual void SetStyleIndex(int32 index) = 0;
43  virtual int32 GetStyleIndex() const = 0;
44 
48  virtual void SetNewName(const PMString &newName) = 0;
51  virtual PMString GetNewName() const = 0;
52 
56  virtual void SetSrcList(UIDRef srcListRef) = 0;
60  virtual UIDRef GetSrcList() const = 0;
61 
65  virtual void SetDstList(UIDRef dstListRef) = 0;
69  virtual UIDRef GetDstList() const = 0;
70 
74  virtual bool16 IsImport() const = 0;
78  virtual void SetIsImport( bool16 f ) = 0;
79 
83  virtual void SetSuccess(bool32 successful) = 0;
87  virtual bool32 GetSuccess() = 0;
88 
92  virtual void SetListMgrIID(PMIID interfaceid) = 0;
93 
97  virtual PMIID GetListMgrIID() const = 0;
98 };
99 
100 #endif