InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IEveInfo.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: lance bushore
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 __IEveInfo_h__
25 #define __IEveInfo_h__
26 
27 #include "IPMUnknown.h"
28 #include "DialogLayoutID.h"
29 
33 class IEveInfo : public IPMUnknown
34 {
35 public:
36  enum { kDefaultIID = IID_IEVEINFO };
37 
41  virtual uint32 GetHeight() const = 0;
42 
46  virtual uint32 GetWidth() const = 0;
47 
51  virtual void AppendEveDescriptionForControl(PMString* dialogDesc) const = 0;
52 
58  virtual void ApplyEVELayoutToWidget(const PMPoint& newTopLeft, const PMReal& newWidth, const PMReal& newHeight) = 0;
59 
63  virtual uint32 GetChildArrangement() const = 0;
64 
68  virtual void SetChildArrangement(uint32 newArrangement) = 0;
69 
73  virtual uint32 GetChildAlignment() const = 0;
74 
78  virtual bool16 GetIncludeForFirstColumnAlignment() const = 0;
79 
83  virtual bool16 GetDoNotIncludeForAlignmentOfLables() const = 0;
84 
88  virtual uint32 GetChildSpaceAfter() const = 0;
89 
93  virtual uint32 GetMargin() const = 0;
94 
98  virtual void SetMargin(uint32) = 0;
99 
103  virtual uint32 GetSpaceAfter() const = 0;
104 
108  virtual void SetSpaceAfter(uint32 newSpaceAfter) = 0;
109 
113  virtual uint32 GetAlignment() const = 0;
114 
118  virtual bool16 HasEVEInfo() const = 0;
119 
123  virtual void AppendEveDescriptionForControlToStdString(std::stringstream &dialogDesc) const = 0;
124 
125 };
126 
127 #endif // __IEveInfo_h__
128