InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ILoadStyleCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Wai Cheuk
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 __ILOADSTYLECMDDATA__
25 #define __ILOADSTYLECMDDATA__
26 
27 #ifndef __IPMUnknown__
28 #include "IPMUnknown.h"
29 #endif
30 
31 class IStyleNameTable;
32 class IStyleGroupManager;
33 
39 {
40 public:
41 
46  {
71 
78 
81 
82  };
83 
84 
92  virtual void Set(IStyleGroupManager* srcStyleNameTable,
93  IStyleGroupManager* destStyleNameTable,
94  UID srcStyleUID,
95  UID destStyleUID) = 0;
96 
104  virtual void Set(IStyleNameTable* srcStyleNameTable,
105  IStyleNameTable* destStyleNameTable,
106  UID srcStyleUID,
107  UID destStyleUID) = 0;
108 
113  virtual IStyleNameTable* GetSrcStyleNameTable() = 0;
114 
120 
125  virtual IStyleNameTable* GetDestStyleNameTable() = 0;
126 
132 
137  virtual UID GetSrcStyleUID() = 0;
138 
143  virtual UID GetDestStyleUID() = 0;
144 };
145 
146 #endif