valentina/src/libs/vobj/vobjengine.h

90 lines
3.0 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vobjengine.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 12 12, 2014
**
** @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
** <https://gitlab.com/smart-pattern/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
2023-07-13 16:49:20 +02:00
#include <QPaintEngine>
#include <QPolygonF>
#include <QRectF>
#include <QSharedPointer>
#include <QSize>
#include <QtGlobal>
#include "delaunay.h"
2022-08-12 17:50:13 +02:00
#include "../vmisc/defglobal.h"
class QTextStream;
2015-03-02 18:11:43 +01:00
#define MAX_POINTS 512
class VObjEngine final : public QPaintEngine
{
public:
VObjEngine();
virtual ~VObjEngine() override;
2023-05-03 13:07:02 +02:00
virtual auto begin(QPaintDevice *pdev) -> bool override;
virtual auto end() -> bool override;
virtual void updateState(const QPaintEngineState &state) override;
virtual void drawPath(const QPainterPath &path) override;
2023-05-03 13:07:02 +02:00
virtual auto type() const -> Type override;
virtual void drawPoints(const QPointF *points, int pointCount) override;
virtual void drawPoints(const QPoint *points, int pointCount) override;
virtual void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) override;
virtual void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode) override;
virtual void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode) override;
2023-05-03 13:07:02 +02:00
auto getSize() const -> QSize;
void setSize(const QSize &value);
2023-05-03 13:07:02 +02:00
auto getOutputDevice() const -> QIODevice *;
void setOutputDevice(QIODevice *value);
2023-05-03 13:07:02 +02:00
auto getResolution() const -> int;
void setResolution(int value);
private:
2022-08-12 17:50:13 +02:00
// cppcheck-suppress unknownMacro
Q_DISABLE_COPY_MOVE(VObjEngine) // NOLINT
2015-10-20 16:32:01 +02:00
QSharedPointer<QTextStream> stream;
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];
quint32 planeCount;
QSize size;
int resolution;
2020-07-07 09:51:00 +02:00
QTransform matrix;
2023-05-03 13:07:02 +02:00
auto MakePointsUnique(const QPolygonF &polygon) const -> QPolygonF;
auto Square(const QPolygonF &poly) const -> qint64;
};
#endif // VOBJENGINE_H