2014-12-12 15:08:31 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vobjengine.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 12 12, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-12-12 15:08:31 +01:00
|
|
|
** <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 VOBJENGINE_H
|
|
|
|
#define VOBJENGINE_H
|
|
|
|
|
|
|
|
#include <QPaintEngine>
|
|
|
|
#include "delaunay.h"
|
|
|
|
|
|
|
|
class QTextStream;
|
|
|
|
|
2015-03-02 18:11:43 +01:00
|
|
|
#define MAX_POINTS 512
|
2014-12-12 15:08:31 +01:00
|
|
|
|
|
|
|
class VObjEngine : public QPaintEngine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VObjEngine();
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VObjEngine() Q_DECL_OVERRIDE;
|
2014-12-12 15:08:31 +01:00
|
|
|
|
2015-07-03 15:36:54 +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 Type type() const Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPoints(const QPointF *points, int pointCount) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPoints(const QPoint *points, int pointCount) Q_DECL_OVERRIDE;
|
|
|
|
virtual void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) 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;
|
2014-12-12 15:08:31 +01:00
|
|
|
|
|
|
|
QSize getSize() const;
|
|
|
|
void setSize(const QSize &value);
|
|
|
|
|
|
|
|
QIODevice *getOutputDevice() const;
|
|
|
|
void setOutputDevice(QIODevice *value);
|
|
|
|
|
|
|
|
int getResolution() const;
|
|
|
|
void setResolution(int value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VObjEngine)
|
2015-10-20 16:32:01 +02:00
|
|
|
QSharedPointer<QTextStream> stream;
|
2015-10-26 09:36:07 +01:00
|
|
|
quint32 globalPointsCount;
|
2015-10-20 16:32:01 +02:00
|
|
|
QSharedPointer<QIODevice> outputDevice;
|
2015-03-02 18:11:43 +01:00
|
|
|
del_point2d_t points[MAX_POINTS];
|
2015-10-26 09:36:07 +01:00
|
|
|
quint32 planeCount;
|
2014-12-12 15:08:31 +01:00
|
|
|
QSize size;
|
|
|
|
int resolution;
|
|
|
|
QMatrix matrix;
|
|
|
|
|
|
|
|
QPolygonF MakePointsUnique(const QPolygonF &polygon)const;
|
|
|
|
qint64 Square(const QPolygonF &poly)const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VOBJENGINE_H
|