InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IStyleMappingsCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Prakash Verma
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // ADOBE CONFIDENTIAL
16 //
17 // Copyright 2010 Adobe Systems Incorporated
18 // All Rights Reserved.
19 //
20 // NOTICE: All information contained herein is, and remains
21 // the property of Adobe Systems Incorporated and its suppliers,
22 // if any. The intellectual and technical concepts contained
23 // herein are proprietary to Adobe Systems Incorporated and its
24 // suppliers and are protected by trade secret or copyright law.
25 // Dissemination of this information or reproduction of this material
26 // is strictly forbidden unless prior written permission is obtained
27 // from Adobe Systems Incorporated.
28 //
29 //========================================================================================
30 
31 #ifndef __IStyleMappingsCmdData_h__
32 #define __IStyleMappingsCmdData_h__
33 
34 //interface includes
35 #include "IStyleMappings.h"
36 
37 //project includes
38 #include "SharedContentID.h"
39 
41 {
42 public:
43 
47  enum { kDefaultIID = IID_ISTYLEMAPPINGSCMDDATA };
48 
53  virtual void SetMappingRule(const IStyleMappings::MappingRule &inMappingRule) = 0;
54 
59  virtual void GetMappingRule(IStyleMappings::MappingRule &outMappingRule) const = 0;
60 
65  virtual void SetStyleType(const IStyleMappings::MappingStyleType &eInStyleType) = 0;
66 
71  virtual void GetStyleType(IStyleMappings::MappingStyleType &eInStyleType) const = 0;
72 
77  virtual void SetIndex(const int32 &index) = 0;
78 
83  virtual int32 GetIndex() const = 0;
84 };
85 
86 #endif //__IStyleMappingsCmdData_h__