diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-02-23 13:29:56 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-02-23 18:52:03 +0000 |
commit | efcf362b6658346ae0f8f3cdb73d871fdd82c8af (patch) | |
tree | 035759c5ba63c89600b5c9e88a2c3120de0e6ff9 /xfa/fxgraphics/cfx_path_generator.h | |
parent | c6dc69fb69e5d9974aa451d590194d568b78131b (diff) | |
download | pdfium-efcf362b6658346ae0f8f3cdb73d871fdd82c8af.tar.xz |
Merge CFX_PathGenerator into CFX_Path.
The CFX_Path was the only user of the CFX_PathGenerator which in turn just
proxied to the CFX_PathData. This CL removes the CFX_PathGenerator and merges
the code up into CFX_Path.
Change-Id: I9e1a3921c987830f29b2ff5bd4aceacd2082e8f0
Reviewed-on: https://pdfium-review.googlesource.com/2825
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxgraphics/cfx_path_generator.h')
-rw-r--r-- | xfa/fxgraphics/cfx_path_generator.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/xfa/fxgraphics/cfx_path_generator.h b/xfa/fxgraphics/cfx_path_generator.h deleted file mode 100644 index d3ba290f1c..0000000000 --- a/xfa/fxgraphics/cfx_path_generator.h +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef XFA_FXGRAPHICS_CFX_PATH_GENERATOR_H_ -#define XFA_FXGRAPHICS_CFX_PATH_GENERATOR_H_ - -#include <memory> - -#include "core/fxge/cfx_pathdata.h" - -class CFX_PathGenerator { - public: - CFX_PathGenerator(); - ~CFX_PathGenerator(); - - CFX_PathData* GetPathData() const { return m_pPathData.get(); } - - void AddPathData(CFX_PathData* path_data); - - void MoveTo(const CFX_PointF& point); - void LineTo(const CFX_PointF& point); - void BezierTo(const CFX_PointF& c1, - const CFX_PointF& c2, - const CFX_PointF& to); - void Close(); - void ArcTo(const CFX_PointF& point, - const CFX_SizeF& size, - FX_FLOAT start_angle, - FX_FLOAT sweep_angle); - - void AddLine(const CFX_PointF& p1, const CFX_PointF& p2); - void AddBezier(const CFX_PointF& p1, - const CFX_PointF& c1, - const CFX_PointF& c2, - const CFX_PointF& p2); - void AddRectangle(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2); - void AddEllipse(const CFX_PointF& point, const CFX_SizeF& size); - void AddArc(const CFX_PointF& point, - const CFX_SizeF& size, - FX_FLOAT start_angle, - FX_FLOAT sweep_angle); - void AddPie(const CFX_PointF& point, - const CFX_SizeF& size, - FX_FLOAT start_angle, - FX_FLOAT sweep_angle); - - protected: - std::unique_ptr<CFX_PathData> m_pPathData; -}; - -#endif // XFA_FXGRAPHICS_CFX_PATH_GENERATOR_H_ |