InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ITextFrameFootnoteOptionsData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Pooja Mangla
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 2016 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 #include "IPMUnknown.h"
25 #include "PMRect.h"
26 #include "TextID.h"
27 #include "UIDList.h"
28 
29 #ifndef __ITextFrameFootnoteOptionsData__
30 #define __ITextFrameFootnoteOptionsData__
31 
41 class ITextFrameFootnoteOptionsData : public IPMUnknown // ##rk: replace as default Impl for ITextColumnManager (ITextColumnProvider)?
42 {
43 public:
44  enum { kDefaultIID = IID_ITEXTFRAMEFOOTNOTEOPTIONSDATA };
45 
48  virtual bool16 GetEnableOverrides() const = 0;
49 
52  virtual bool16 GetSpanFootnotesAcross() const = 0;
53 
56  virtual PMReal GetMinimumSpacing() const = 0;
57 
60  virtual PMReal GetSpaceBetweenFootnotes() const = 0;
61 
64  virtual void SetEnableOverrides(bool16 enableOverrides) = 0;
65 
68  virtual void SetSpanFootnotesAcross(bool16 spanFootnotesAcross) = 0;
69 
73  virtual void SetMinimumSpacing(PMReal minimumSpacing) = 0;
74 
77  virtual void SetSpaceBetweenFootnotes(PMReal spaceBetweenFootnotes) = 0;
78 
81  virtual void CopyFrom(ITextFrameFootnoteOptionsData* sourceFootnoteOptions) = 0;
82 };
83 
84 #endif // __ITextFrameFootnoteOptionsData__