2015-09-07 21:47:02 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vdxfengine.h
|
|
|
|
** @author Valentina Zhuravska <zhuravska19(at)gmail.com>
|
|
|
|
** @date 12 8, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VDXFENGINE_H
|
|
|
|
#define VDXFENGINE_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QMatrix>
|
2015-09-07 21:47:02 +02:00
|
|
|
#include <QPaintEngine>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QPointF>
|
|
|
|
#include <QRectF>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
#include <string>
|
|
|
|
|
2015-09-07 21:47:02 +02:00
|
|
|
#include "../vmisc/def.h"
|
|
|
|
#include "dxfdef.h"
|
2017-06-21 11:34:20 +02:00
|
|
|
#include "libdxfrw/drw_base.h"
|
2015-09-07 21:47:02 +02:00
|
|
|
|
|
|
|
class QTextStream;
|
2017-06-21 11:34:20 +02:00
|
|
|
class dx_iface;
|
2017-06-29 17:56:52 +02:00
|
|
|
class DRW_Text;
|
2015-09-07 21:47:02 +02:00
|
|
|
|
|
|
|
class VDxfEngine : public QPaintEngine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VDxfEngine();
|
2017-06-29 17:56:52 +02:00
|
|
|
virtual ~VDxfEngine();
|
2015-09-07 21:47:02 +02:00
|
|
|
|
|
|
|
virtual bool begin(QPaintDevice *pdev) Q_DECL_OVERRIDE;
|
|
|
|
virtual bool end() Q_DECL_OVERRIDE;
|
|
|
|
virtual void updateState(const QPaintEngineState &state) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPath(const QPainterPath &path) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawLines(const QLineF * lines, int lineCount) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawLines(const QLine * lines, int lineCount) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawEllipse(const QRectF & rect) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawEllipse(const QRect & rect) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawTextItem(const QPointF & p, const QTextItem & textItem) Q_DECL_OVERRIDE;
|
|
|
|
virtual Type type() const Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) Q_DECL_OVERRIDE;
|
|
|
|
|
|
|
|
QSize getSize() const;
|
|
|
|
void setSize(const QSize &value);
|
|
|
|
|
2016-03-27 18:00:08 +02:00
|
|
|
double getResolution() const;
|
|
|
|
void setResolution(double value);
|
2015-09-07 21:47:02 +02:00
|
|
|
|
|
|
|
QString getFileName() const;
|
|
|
|
void setFileName(const QString &value);
|
|
|
|
|
2017-06-21 11:34:20 +02:00
|
|
|
DRW::Version GetVersion() const;
|
|
|
|
void SetVersion(DRW::Version version);
|
|
|
|
|
2017-06-26 16:28:41 +02:00
|
|
|
void SetBinaryFormat(bool binary);
|
|
|
|
bool IsBinaryFormat() const;
|
|
|
|
|
2015-09-07 21:47:02 +02:00
|
|
|
std::string getPenStyle();
|
|
|
|
int getPenColor();
|
|
|
|
|
|
|
|
void setMeasurement(const VarMeasurement &var);
|
|
|
|
void setInsunits(const VarInsunits &var);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VDxfEngine)
|
|
|
|
QSize size;
|
2016-03-27 18:00:08 +02:00
|
|
|
double resolution;
|
2015-09-07 21:47:02 +02:00
|
|
|
QString fileName;
|
2017-06-21 11:34:20 +02:00
|
|
|
DRW::Version m_version;
|
2017-06-26 16:28:41 +02:00
|
|
|
bool m_binary;
|
2015-09-07 21:47:02 +02:00
|
|
|
QMatrix matrix;
|
2017-06-21 11:34:20 +02:00
|
|
|
QSharedPointer<dx_iface> input;
|
2015-09-07 21:47:02 +02:00
|
|
|
VarMeasurement varMeasurement;
|
|
|
|
VarInsunits varInsunits;
|
2017-06-29 17:56:52 +02:00
|
|
|
DRW_Text *textBuffer;
|
2015-09-07 21:47:02 +02:00
|
|
|
|
2017-07-01 20:38:26 +02:00
|
|
|
Q_REQUIRED_RESULT double FromPixel(double pix, const VarInsunits &unit) const;
|
2015-09-07 21:47:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VDXFENGINE_H
|