/************************************************************************ ** ** @file vdxfengine.h ** @author Valentina Zhuravska ** @date 12 8, 2015 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2013-2015 Valentina project ** All Rights Reserved. ** ** Valentina is free software: you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation, either version 3 of the License, or ** (at your option) any later version. ** ** Valentina is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** *************************************************************************/ #ifndef VDXFENGINE_H #define VDXFENGINE_H #include #include #include #include #include #include #include #include #include "../vmisc/def.h" #include "../vmisc/defglobal.h" #include "dxfdef.h" #include "libdxfrw/drw_base.h" class QTextStream; class dx_iface; class DRW_Text; class VLayoutPiece; class DRW_Entity; class dx_ifaceBlock; class VLayoutPoint; class DRW_Point; #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) class VTextCodec; #endif class VDxfEngine final : public QPaintEngine { friend class VDxfPaintDevice; public: VDxfEngine(); ~VDxfEngine() override; auto type() const -> Type override; auto begin(QPaintDevice *pdev) -> bool override; auto end() -> bool override; void updateState(const QPaintEngineState &state) override; void drawPath(const QPainterPath &path) override; void drawLines(const QLineF * lines, int lineCount) override; void drawLines(const QLine * lines, int lineCount) override; void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode) override; void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode) override; void drawEllipse(const QRectF & rect) override; void drawEllipse(const QRect & rect) override; void drawTextItem(const QPointF & p, const QTextItem & textItem) override; void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) override; auto GetSize() const -> QSize; void SetSize(const QSize &value); auto GetResolution() const -> double; void SetResolution(double value); auto GetFileName() const -> QString; void SetFileName(const QString &value); auto GetVersion() const -> DRW::Version; void SetVersion(DRW::Version version); void SetBinaryFormat(bool binary); auto IsBinaryFormat() const -> bool; auto GetPenStyle() -> std::string; auto GetPenColor() -> int; void SetMeasurement(const VarMeasurement &var); void SetInsunits(const VarInsunits &var); auto GetXScale() const -> qreal; void SetXScale(const qreal &xscale); auto GetYScale() const -> qreal; void SetYScale(const qreal &yscale); auto ErrorString() const -> QString; private: Q_DISABLE_COPY_MOVE(VDxfEngine) // NOLINT QSize m_size{}; double m_resolution{PrintDPI}; QString m_fileName{}; DRW::Version m_version{DRW::AC1009}; bool m_binary{false}; QTransform m_matrix{}; QSharedPointer m_input{}; VarMeasurement m_varMeasurement{VarMeasurement::Metric}; VarInsunits m_varInsunits{VarInsunits::Millimeters}; DRW_Text *m_textBuffer{nullptr}; qreal m_xscale{1}; qreal m_yscale{1}; Q_REQUIRED_RESULT auto FromPixel(double pix, const VarInsunits &unit) const -> double; Q_REQUIRED_RESULT auto ToPixel(double val, const VarInsunits &unit) const -> double; auto ExportToAAMA(const QVector &details) -> bool; void ExportAAMAOutline(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportAAMADraw(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportAAMAIntcut(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportAAMANotch(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportAAMAGrainline(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportPieceText(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportStyleSystemText(const QSharedPointer &input, const QVector &details); void ExportAAMADrill(const QSharedPointer &detailBlock, const VLayoutPiece &detail); auto ExportToASTM(const QVector &details) -> bool; void ExportASTMPieceBoundary(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportASTMSewLine(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportASTMInternalLine(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportASTMInternalCutout(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportASTMAnnotationText(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportASTMDrill(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportASTMNotch(const QSharedPointer &detailBlock, const VLayoutPiece &detail); void ExportTurnPoints(const QSharedPointer &detailBlock, const QVector &points) const; void ExportCurvePoints(const QSharedPointer &detailBlock, const QVector &points) const; Q_REQUIRED_RESULT auto AAMAPolygon(const QVector &polygon, const UTF8STRING &layer, bool forceClosed) -> DRW_Entity *; Q_REQUIRED_RESULT auto AAMALine(const QLineF &line, const UTF8STRING &layer) -> DRW_Entity *; Q_REQUIRED_RESULT auto AAMAText(const QPointF &pos, const QString &text, const UTF8STRING &layer) -> DRW_Entity *; Q_REQUIRED_RESULT auto AAMAPoint(const QPointF &pos, const UTF8STRING &layer) const -> DRW_Point *; template Q_REQUIRED_RESULT auto CreateAAMAPolygon(const QVector &polygon, const UTF8STRING &layer, bool forceClosed) -> P *; static auto FromUnicodeToCodec(const QString &str, VTextCodec *codec) -> std::string; auto GetFileNameForLocale() const -> std::string; }; #endif // VDXFENGINE_H