52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
// Copyright 2016 The PDFium Authors
|
|
// 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 CORE_FXGE_CFX_GRAPHSTATEDATA_H_
|
|
#define CORE_FXGE_CFX_GRAPHSTATEDATA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <vector>
|
|
|
|
#include "core/fxcrt/retain_ptr.h"
|
|
|
|
class CFX_GraphStateData {
|
|
public:
|
|
enum class LineCap : uint8_t { kButt = 0, kRound = 1, kSquare = 2 };
|
|
|
|
enum class LineJoin : uint8_t { kMiter = 0, kRound = 1, kBevel = 2 };
|
|
|
|
CFX_GraphStateData();
|
|
CFX_GraphStateData(const CFX_GraphStateData& src);
|
|
CFX_GraphStateData(CFX_GraphStateData&& src) noexcept;
|
|
~CFX_GraphStateData();
|
|
|
|
CFX_GraphStateData& operator=(const CFX_GraphStateData& that);
|
|
CFX_GraphStateData& operator=(CFX_GraphStateData&& that) noexcept;
|
|
|
|
LineCap m_LineCap = LineCap::kButt;
|
|
LineJoin m_LineJoin = LineJoin::kMiter;
|
|
float m_DashPhase = 0.0f;
|
|
float m_MiterLimit = 10.0f;
|
|
float m_LineWidth = 1.0f;
|
|
std::vector<float> m_DashArray;
|
|
};
|
|
|
|
class CFX_RetainableGraphStateData final : public Retainable,
|
|
public CFX_GraphStateData {
|
|
public:
|
|
CONSTRUCT_VIA_MAKE_RETAIN;
|
|
|
|
RetainPtr<CFX_RetainableGraphStateData> Clone() const;
|
|
|
|
private:
|
|
CFX_RetainableGraphStateData();
|
|
CFX_RetainableGraphStateData(const CFX_RetainableGraphStateData& src);
|
|
~CFX_RetainableGraphStateData() override;
|
|
};
|
|
|
|
#endif // CORE_FXGE_CFX_GRAPHSTATEDATA_H_
|