1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright 2016 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
#include "core/fpdfapi/page/cpdf_path.h"
CPDF_Path::CPDF_Path() {}
CPDF_Path::CPDF_Path(const CPDF_Path& that) : m_Ref(that.m_Ref) {}
CPDF_Path::~CPDF_Path() {}
const std::vector<FX_PATHPOINT>& CPDF_Path::GetPoints() const {
return m_Ref.GetObject()->GetPoints();
}
void CPDF_Path::ClosePath() {
m_Ref.GetPrivateCopy()->ClosePath();
}
CFX_PointF CPDF_Path::GetPoint(int index) const {
return m_Ref.GetObject()->GetPoint(index);
}
CFX_FloatRect CPDF_Path::GetBoundingBox() const {
return m_Ref.GetObject()->GetBoundingBox();
}
CFX_FloatRect CPDF_Path::GetBoundingBox(float line_width,
float miter_limit) const {
return m_Ref.GetObject()->GetBoundingBox(line_width, miter_limit);
}
bool CPDF_Path::IsRect() const {
return m_Ref.GetObject()->IsRect();
}
void CPDF_Path::Transform(const CFX_Matrix* pMatrix) {
m_Ref.GetPrivateCopy()->Transform(pMatrix);
}
void CPDF_Path::Append(const CPDF_Path& other, const CFX_Matrix* pMatrix) {
m_Ref.GetPrivateCopy()->Append(other.GetObject(), pMatrix);
}
void CPDF_Path::Append(const CFX_PathData* pData, const CFX_Matrix* pMatrix) {
m_Ref.GetPrivateCopy()->Append(pData, pMatrix);
}
void CPDF_Path::AppendRect(float left, float bottom, float right, float top) {
m_Ref.GetPrivateCopy()->AppendRect(left, bottom, right, top);
}
void CPDF_Path::AppendPoint(const CFX_PointF& point,
FXPT_TYPE type,
bool close) {
CFX_PathData data;
data.AppendPoint(point, type, close);
Append(&data, nullptr);
}
|