/************************************************************************ ** ** @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 #include "../vmisc/def.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 VDxfEngine : public QPaintEngine { friend class VDxfPaintDevice; public: VDxfEngine(); virtual ~VDxfEngine(); virtual bool begin(QPaintDevice *pdev) override; virtual bool end() override; virtual void updateState(const QPaintEngineState &state) override; virtual void drawPath(const QPainterPath &path) override; virtual void drawLines(const QLineF * lines, int lineCount) override; virtual void drawLines(const QLine * lines, int lineCount) override; virtual void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode) override; virtual void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode) override; virtual void drawEllipse(const QRectF & rect) override; virtual void drawEllipse(const QRect & rect) override; virtual void drawTextItem(const QPointF & p, const QTextItem & textItem) override; virtual Type type() const override; virtual void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) override; QSize getSize() const; void setSize(const QSize &value); double getResolution() const; void setResolution(double value); QString getFileName() const; void setFileName(const QString &value); DRW::Version GetVersion() const; void SetVersion(DRW::Version version); void SetBinaryFormat(bool binary); bool IsBinaryFormat() const; std::string getPenStyle(); int getPenColor(); void setMeasurement(const VarMeasurement &var); void setInsunits(const VarInsunits &var); private: Q_DISABLE_COPY(VDxfEngine) QSize size; double resolution; QString fileName; DRW::Version m_version; bool m_binary; QMatrix matrix; QSharedPointer input; VarMeasurement varMeasurement; VarInsunits varInsunits; DRW_Text *textBuffer; Q_REQUIRED_RESULT double FromPixel(double pix, const VarInsunits &unit) const; Q_REQUIRED_RESULT double ToPixel(double val, const VarInsunits &unit) const; bool ExportToAAMA(const QVector &details); void ExportAAMAOutline(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); void ExportAAMADraw(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); void ExportAAMAIntcut(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); void ExportAAMANotch(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); void ExportAAMAGrainline(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); void ExportAAMAText(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); void ExportAAMAGlobalText(const QSharedPointer &input, const QVector &details); void ExportAAMADrill(dx_ifaceBlock *detailBlock, const VLayoutPiece &detail); Q_REQUIRED_RESULT DRW_Entity *AAMAPolygon(const QVector &polygon, const QString &layer, bool forceClosed); Q_REQUIRED_RESULT DRW_Entity *AAMALine(const QLineF &line, const QString &layer); Q_REQUIRED_RESULT DRW_Entity *AAMAText(const QPointF &pos, const QString &text, const QString &layer); template Q_REQUIRED_RESULT P *CreateAAMAPolygon(const QVector &polygon, const QString &layer, bool forceClosed); static std::string FromUnicodeToCodec(const QString &str, QTextCodec *codec); std::string getFileNameForLocale() const; }; #endif // VDXFENGINE_H