254 lines
8.4 KiB
C++
254 lines
8.4 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vlayoutexporter.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 19 12, 2020
|
|
**
|
|
** @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) 2020 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 VLAYOUTEXPORTER_H
|
|
#define VLAYOUTEXPORTER_H
|
|
|
|
#include <QMargins>
|
|
#include <QPen>
|
|
#include <QRectF>
|
|
#include <QString>
|
|
#include <QCoreApplication>
|
|
|
|
#include "../vlayout/vlayoutdef.h"
|
|
|
|
class QGraphicsScene;
|
|
class QGraphicsItem;
|
|
class VLayoutPiece;
|
|
|
|
class VLayoutExporter
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(VLayoutExporter)
|
|
public:
|
|
VLayoutExporter() = default;
|
|
|
|
auto FileName() const -> QString;
|
|
void SetFileName(const QString &fileName);
|
|
|
|
auto Margins() const -> QMarginsF;
|
|
void SetMargins(const QMarginsF &margins);
|
|
|
|
auto ImageRect() const -> QRectF;
|
|
void SetImageRect(const QRectF &imageRect);
|
|
|
|
auto XScale() const -> qreal;
|
|
void SetXScale(qreal xScale);
|
|
|
|
auto YScale() const -> qreal;
|
|
void SetYScale(qreal yScale);
|
|
|
|
auto Title() const -> QString;
|
|
void SetTitle(const QString &title);
|
|
|
|
auto Description() const -> QString;
|
|
void SetDescription(const QString &description);
|
|
|
|
auto Pen() const -> QPen;
|
|
void SetPen(const QPen &pen);
|
|
|
|
auto IgnorePrinterMargins() const -> bool;
|
|
void SetIgnorePrinterMargins(bool ignorePrinterMargins);
|
|
|
|
auto BinaryDxfFormat() const -> bool;
|
|
void SetBinaryDxfFormat(bool binaryFormat);
|
|
|
|
auto DxfVersion() const -> int;
|
|
void SetDxfVersion(int dxfVersion);
|
|
|
|
void ExportToSVG(QGraphicsScene *scene) const;
|
|
void ExportToPNG(QGraphicsScene *scene) const;
|
|
void ExportToTIF(QGraphicsScene *scene) const;
|
|
void ExportToPDF(QGraphicsScene *scene) const;
|
|
void ExportToOBJ(QGraphicsScene *scene) const;
|
|
void ExportToPS(QGraphicsScene *scene) const;
|
|
void ExportToEPS(QGraphicsScene *scene) const;
|
|
void ExportToFlatDXF(QGraphicsScene *scene, const QList<QGraphicsItem *> &details) const;
|
|
void ExportToAAMADXF(const QVector<VLayoutPiece> &details) const;
|
|
void ExportToASTMDXF(const QVector<VLayoutPiece> &details) const;
|
|
void ExportToRLD(const QVector<VLayoutPiece> &details) const;
|
|
|
|
static auto SupportPDFConversion() -> bool;
|
|
|
|
|
|
static QString ExportFormatDescription(LayoutExportFormats format);
|
|
static QString ExportFormatSuffix(LayoutExportFormats format);
|
|
static void PdfToPs(const QStringList ¶ms);
|
|
|
|
auto offset() const -> QPointF;
|
|
void SetOffset(const QPointF &newOffset);
|
|
|
|
private:
|
|
QString m_fileName{};
|
|
QMarginsF m_margins{};
|
|
QRectF m_imageRect{};
|
|
qreal m_xScale{1.0};
|
|
qreal m_yScale{1.0};
|
|
QString m_title{};
|
|
QString m_description{};
|
|
QPen m_pen{};
|
|
bool m_ignorePrinterMargins{false};
|
|
bool m_binaryDxfFormat{false};
|
|
int m_dxfVersion{0};
|
|
QPointF m_offset{};
|
|
|
|
void ExportToPDF(QGraphicsScene *scene, const QString &filename) const;
|
|
};
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::FileName() const -> QString
|
|
{
|
|
return m_fileName;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetFileName(const QString &fileName)
|
|
{
|
|
m_fileName = fileName;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::Margins() const -> QMarginsF
|
|
{
|
|
return m_margins;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetMargins(const QMarginsF &margins)
|
|
{
|
|
m_margins = margins;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::ImageRect() const -> QRectF
|
|
{
|
|
return m_imageRect;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetImageRect(const QRectF &imageRect)
|
|
{
|
|
m_imageRect = imageRect;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::XScale() const -> qreal
|
|
{
|
|
return m_xScale;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetXScale(qreal xScale)
|
|
{
|
|
m_xScale = xScale;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::YScale() const -> qreal
|
|
{
|
|
return m_yScale;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetYScale(qreal yScale)
|
|
{
|
|
m_yScale = yScale;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::Title() const -> QString
|
|
{
|
|
return m_title;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetTitle(const QString &title)
|
|
{
|
|
m_title = title;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::Description() const -> QString
|
|
{
|
|
return m_description;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetDescription(const QString &description)
|
|
{
|
|
m_description = description;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::Pen() const -> QPen
|
|
{
|
|
return m_pen;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetPen(const QPen &pen)
|
|
{
|
|
m_pen = pen;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::IgnorePrinterMargins() const -> bool
|
|
{
|
|
return m_ignorePrinterMargins;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetIgnorePrinterMargins(bool ignorePrinterMargins)
|
|
{
|
|
m_ignorePrinterMargins = ignorePrinterMargins;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::BinaryDxfFormat() const -> bool
|
|
{
|
|
return m_binaryDxfFormat;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetBinaryDxfFormat(bool binaryFormat)
|
|
{
|
|
m_binaryDxfFormat = binaryFormat;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline auto VLayoutExporter::DxfVersion() const -> int
|
|
{
|
|
return m_dxfVersion;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VLayoutExporter::SetDxfVersion(int dxfVersion)
|
|
{
|
|
m_dxfVersion = dxfVersion;
|
|
}
|
|
|
|
#endif // VLAYOUTEXPORTER_H
|