summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_box.h
blob: c85d0164afc35e769c8e8cc7668502b9246ce33e (plain)
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
// 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

#ifndef XFA_FXFA_PARSER_CXFA_BOX_H_
#define XFA_FXFA_PARSER_CXFA_BOX_H_

#include <memory>
#include <tuple>
#include <vector>

#include "xfa/fxfa/parser/cxfa_node.h"

class CXFA_Edge;
class CXFA_Fill;
class CXFA_Margin;
class CXFA_Stroke;

class CXFA_Box : public CXFA_Node {
 public:
  ~CXFA_Box() override;

  bool IsArc() const { return GetElementType() == XFA_Element::Arc; }
  bool IsCircular();

  XFA_AttributeEnum GetHand();
  XFA_AttributeEnum GetPresence();
  std::tuple<XFA_AttributeEnum, bool, float> Get3DStyle();

  int32_t CountEdges();
  CXFA_Edge* GetEdge(int32_t nIndex);
  CXFA_Fill* GetFill() const;
  CXFA_Fill* GetOrCreateFill();
  CXFA_Margin* GetMargin();

  std::vector<CXFA_Stroke*> GetStrokes();

  Optional<int32_t> GetStartAngle();
  Optional<int32_t> GetSweepAngle();

 protected:
  CXFA_Box(CXFA_Document* pDoc,
           XFA_PacketType ePacket,
           uint32_t validPackets,
           XFA_ObjectType oType,
           XFA_Element eType,
           const PropertyData* properties,
           const AttributeData* attributes,
           const WideStringView& elementName,
           std::unique_ptr<CJX_Object> js_node);

 private:
  std::vector<CXFA_Stroke*> GetStrokesInternal(bool bNull);
};

#endif  // XFA_FXFA_PARSER_CXFA_BOX_H_