summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_stipple.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_stipple.h')
-rw-r--r--xfa/fxfa/parser/cxfa_stipple.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_stipple.h b/xfa/fxfa/parser/cxfa_stipple.h
index 3211e24d9e..839534b9c9 100644
--- a/xfa/fxfa/parser/cxfa_stipple.h
+++ b/xfa/fxfa/parser/cxfa_stipple.h
@@ -7,9 +7,12 @@
#ifndef XFA_FXFA_PARSER_CXFA_STIPPLE_H_
#define XFA_FXFA_PARSER_CXFA_STIPPLE_H_
+#include "core/fxcrt/fx_coordinates.h"
#include "xfa/fxfa/parser/cxfa_node.h"
+#include "xfa/fxgraphics/cxfa_gepath.h"
class CXFA_Color;
+class CXFA_Graphics;
class CXFA_Stipple : public CXFA_Node {
public:
@@ -18,6 +21,12 @@ class CXFA_Stipple : public CXFA_Node {
CXFA_Stipple(CXFA_Document* doc, XFA_PacketType packet);
~CXFA_Stipple() override;
+ void Draw(CXFA_Graphics* pGS,
+ CXFA_GEPath* fillPath,
+ const CFX_RectF& rtFill,
+ const CFX_Matrix& matrix);
+
+ private:
CXFA_Color* GetColorIfExists();
int32_t GetRate();
};