InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
GPortOutlineInfo.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Jeff Argast
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 __GPortOutlineInfo__
25 #define __GPortOutlineInfo__
26 
27 #include "IOutlineInfo.h"
28 
29 class IGraphicsPort;
30 
31 
42 {
43 public:
52 
59 
63  virtual void BeginPath();
64 
68  virtual void EndPath();
69 
76  virtual void moveto(const PMReal& x, const PMReal& y);
77 
86  virtual void lineto(const PMReal& x, const PMReal& y);
87 
103  virtual void curveto(const PMReal& x1, const PMReal& y1, const PMReal& x2, const PMReal& y2, const PMReal& x3, const PMReal& y3);
104 
115  virtual void closepath();
116 
117 private:
118  IGraphicsPort * fPort;
119  bool16 fBeginPathCalled;
120 };
121 
122 
123 #endif
124