InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IApplyTableBorderCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Danielle Bessette
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 __IApplyTableBorderCmdData__
25 #define __IApplyTableBorderCmdData__
26 
27 #include "IPMUnknown.h"
28 #include "TablesUIID.h"
29 
30 class AttributeBossList;
35 {
36 public:
37  enum { kDefaultIID = IID_IAPPLYTABLEBORDERCMDDATA };
38 
42  virtual void SetApplyAttrList(const AttributeBossList& attrs) = 0;
43 
47  virtual void SetLeftList(const AttributeBossList& attrs) = 0;
48 
52  virtual void SetTopList(const AttributeBossList& attrs) = 0;
53 
57  virtual void SetRightList(const AttributeBossList& attrs) = 0;
58 
62  virtual void SetBottomList(const AttributeBossList& attrs) = 0;
63 
64 
68  virtual const AttributeBossList& GetApplyAttrList(void) const= 0;
69 
73  virtual const AttributeBossList& GetLeftList(void) const= 0;
74 
78  virtual const AttributeBossList& GetTopList(void) const= 0;
79 
83  virtual const AttributeBossList& GetRightList(void) const= 0;
84 
88  virtual const AttributeBossList& GetBottomList(void) const= 0;
89 
93  virtual void Duplicate(IApplyTableBorderCmdData* other) = 0;
94 
95 
96 };
97 
98 #endif