InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IFrmLblDataFacade.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Adobe Developer Technologies
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 __IFrmLblDataFacade_h__
25 #define __IFrmLblDataFacade_h__
26 
27 // Interface includes:
28 #include "IPMUnknown.h"
29 
30 // General includes:
31 
32 // Project includes:
33 #include "FrmLblID.h"
34 
35 // Forward declarations
36 class PMString;
37 class PMReal;
38 class UIDRef;
39 struct FrmLblInfo;
40 
46 {
47 public:
48 
49  enum {kDefaultIID = IID_FRMLBLDATAFACADE};
50 
56  virtual ErrorCode GetFrameLabelProperties(const UIDList& items, FrmLblInfo& frmLblInfo) = 0;
57 
63  virtual ErrorCode GetFrameLabelProperties(const UIDRef& item, FrmLblInfo& frmLblInfo) = 0;
64 
70  virtual ErrorCode UpdateFrameLabelProperties(const UIDRef& item, const FrmLblInfo& frmLblInfo) = 0;
71 
77  virtual ErrorCode UpdateFrameLabelProperties(const UIDList& items, const FrmLblInfo& frmLblInfo) = 0;
78 
84  virtual ErrorCode GetFrameLabelPreference(const UIDRef& workspace, FrmLblInfo& frmLblInfo) = 0;
85 
91  virtual ErrorCode SetFrameLabelPreference(const UIDRef& workspace, const FrmLblInfo& frmLblInfo) = 0;
92 
98  virtual ErrorCode GetFrameLabelPrintPreference(IWorkspace* workspace, bool16& value) = 0;
99 
105  virtual ErrorCode SetFrameLabelPrintPreference(IWorkspace* workspace, bool16 value) = 0;
106 };
107 
108 #endif // __IFrmLblDataFacade_h__
109