InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IXRefFormatCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Jianlan Song
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 
25 #include "IPMUnknown.h"
26 #include "HyperlinkID.h"
27 
28 #include "XRefBuildingBlock.h"
29 
34 {
35 public:
36  enum { kDefaultIID = IID_IXREFFORMATCMDDATA };
37 
41  virtual void SetName(const PMString & formatName) = 0;
45  virtual PMString GetName() const = 0;
49  virtual bool16 ChangingName() const = 0;
50 
54  virtual void SetCharStyle(UID charStyle) = 0;
58  virtual UID GetCharStyle() const = 0;
62  virtual bool16 ChangingCharStyle() const = 0;
63 
67  virtual void SetBuildingBlocks(const K2Vector<XRefBuildingBlock>& buildingBlocks) = 0;
71  virtual void GetBuildingBlocks(K2Vector<XRefBuildingBlock>& buildingBlocks) const = 0;
75  virtual bool16 ChangingBuildingBlocks() const = 0;
76 };
77 
78 
79