InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IFindGlyphCmdData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Heath Horton
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 __IFINDGLYPHCMDDATA__
25 #define __IFINDGLYPHCMDDATA__
26 
27 #ifndef __IPMUnknown__
28 #include "IPMUnknown.h"
29 #endif
30 
31 #include "CTextEnum.h" // Text::GlyphID
32 #include "TextWalkerServiceProviderID.h"
33 
34 class AttributeBossList;
35 
43 {
44 public:
45  enum { kDefaultIID = IID_IFINDGLYPHCMDDATA };
46 
52  virtual void SetGlyphID(const Text::GlyphID glyphID) = 0;
53 
59  virtual void ApplyFindAttributeBossList(const AttributeBossList* findList) = 0;
60 
65  virtual void SetTargetDB(IDataBase* db) = 0;
66 
72  virtual void SetROSFontGroup(const PMString& registry,const PMString& ordering) = 0;
73 
80  virtual void SetUseROSFontGroup(const bool16 bUseROSFontGroup) = 0;
81 
87  virtual Text::GlyphID GetGlyphID() const = 0;
88 
94  virtual const AttributeBossList* GetFindAppliedAttrs() const = 0;
95 
100  virtual IDataBase* GetTargetDB() const = 0;
101 
107  virtual void GetROSFontGroup(PMString& registry, PMString& ordering) const = 0;
108 
114  virtual const bool16 GetUseROSFontGroup() const = 0;
115 };
116 
117 #endif
118