InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ICustDashPathStrokerValues.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Greg St. Pierre
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 // ADOBE CONFIDENTIAL
24 //
25 //========================================================================================
26 
27 #ifndef __ICustDashPathStrokerValues__
28 #define __ICustDashPathStrokerValues__
29 
30 #include "InstStrokeFillID.h"
31 
32 #include "IDashedAttributeValues.h"
33 
35 {
36 public:
37  enum { kDefaultIID = IID_ICUSTOMDASHEDPATHSTROKERVALUES };
38 
42  virtual uint32 GetDashCount() const = 0;
43 
50  virtual PMReal GetNthDash(uint32 index) const = 0;
51 
58  virtual void SetDashes(uint32 count, PMReal const *dashes) = 0;
59 
65  virtual PMReal const *GetDashes() const = 0;
66 
74 
81 
87  virtual int32 GetLineCap() const = 0;
88 
94  virtual void SetLineCap(int32 lineCap) = 0;
95 };
96 
97 #endif