2021-09-06 14:31:19 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file dialogsavemanuallayout.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 9, 2021
|
|
|
|
**
|
|
|
|
** @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) 2021 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
#include "dialogsavemanuallayout.h"
|
|
|
|
#include "ui_dialogsavemanuallayout.h"
|
|
|
|
#include "../vpapplication.h"
|
|
|
|
#include "../ifc/exception/vexception.h"
|
|
|
|
#include "../vlayout/vlayoutexporter.h"
|
2022-08-17 14:51:35 +02:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
|
|
|
|
#include "../vmisc/backport/qoverload.h"
|
|
|
|
#endif // QT_VERSION < QT_VERSION_CHECK(5, 7, 0)
|
2021-09-06 14:31:19 +02:00
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QShowEvent>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
|
|
|
#ifndef Q_OS_WIN
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, baseFilenameRegExp, (QLatin1String("^[^\\/]+$"))) // NOLINT
|
2021-09-06 14:31:19 +02:00
|
|
|
#else
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, baseFilenameRegExp, (QLatin1String("^[^\\:?\"*|\\/<>]+$"))) // NOLINT
|
2021-09-06 14:31:19 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2023-02-09 16:23:11 +01:00
|
|
|
DialogSaveManualLayout::DialogSaveManualLayout(vsizetype count, bool consoleExport, const QString &fileName,
|
|
|
|
QWidget *parent)
|
2021-09-06 14:31:19 +02:00
|
|
|
: VAbstractLayoutDialog(parent),
|
|
|
|
ui(new Ui::DialogSaveManualLayout),
|
|
|
|
m_count(count),
|
|
|
|
m_consoleExport(consoleExport)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
#if defined(Q_OS_MAC)
|
|
|
|
setWindowFlags(Qt::Window);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
VPApplication::VApp()->PuzzleSettings()->GetOsSeparator() ? setLocale(QLocale()) : setLocale(QLocale::c());
|
|
|
|
|
|
|
|
QPushButton *bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
SCASSERT(bOk != nullptr)
|
|
|
|
bOk->setEnabled(false);
|
|
|
|
|
|
|
|
ui->lineEditFileName->setValidator( new QRegularExpressionValidator(QRegularExpression(*baseFilenameRegExp), this));
|
|
|
|
|
|
|
|
const QString mask = m_count > 1 ? fileName + '_' : fileName;
|
|
|
|
if (not m_consoleExport)
|
|
|
|
{
|
|
|
|
ui->lineEditFileName->setText(mask);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (QRegularExpression(*baseFilenameRegExp).match(mask).hasMatch())
|
|
|
|
{
|
|
|
|
ui->lineEditFileName->setText(mask);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw VException(tr("The base filename does not match a regular expression."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &v : InitFormats())
|
|
|
|
{
|
|
|
|
ui->comboBoxFormat->addItem(v.first, QVariant(static_cast<int>(v.second)));
|
|
|
|
}
|
|
|
|
#ifdef V_NO_ASSERT // Temporarily unavailable
|
|
|
|
RemoveFormatFromList(LayoutExportFormats::OBJ);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// RemoveFormatFromList(LayoutExportFormats::NC); // No support for now
|
|
|
|
|
|
|
|
connect(bOk, &QPushButton::clicked, this, &DialogSaveManualLayout::Save);
|
|
|
|
connect(ui->lineEditFileName, &QLineEdit::textChanged, this, &DialogSaveManualLayout::ShowExample);
|
|
|
|
connect(ui->comboBoxFormat, QOverload<int>::of(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogSaveManualLayout::ShowExample);
|
|
|
|
|
|
|
|
connect(ui->pushButtonBrowse, &QPushButton::clicked, this, [this]()
|
|
|
|
{
|
|
|
|
const QString dirPath = VPApplication::VApp()->PuzzleSettings()->GetPathManualLayouts();
|
|
|
|
bool usedNotExistedDir = false;
|
|
|
|
QDir directory(dirPath);
|
|
|
|
if (not directory.exists())
|
|
|
|
{
|
|
|
|
usedNotExistedDir = directory.mkpath(QChar('.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString dir = QFileDialog::getExistingDirectory(
|
|
|
|
this, tr("Select folder"), dirPath,
|
|
|
|
VAbstractApplication::VApp()->NativeFileDialog(QFileDialog::ShowDirsOnly |
|
|
|
|
QFileDialog::DontResolveSymlinks));
|
|
|
|
if (not dir.isEmpty())
|
|
|
|
{// If paths equal the signal will not be called, we will do this manually
|
|
|
|
dir == ui->lineEditPath->text() ? PathChanged(dir) : ui->lineEditPath->setText(dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usedNotExistedDir)
|
|
|
|
{
|
|
|
|
QDir directory(dirPath);
|
|
|
|
directory.rmpath(QChar('.'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(ui->lineEditPath, &QLineEdit::textChanged, this, &DialogSaveManualLayout::PathChanged);
|
|
|
|
|
|
|
|
ui->lineEditPath->setText(VPApplication::VApp()->PuzzleSettings()->GetPathManualLayouts());
|
|
|
|
|
|
|
|
ReadSettings();
|
|
|
|
|
|
|
|
ShowExample();//Show example for current format.
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogSaveManualLayout::~DialogSaveManualLayout()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::Path() const -> QString
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
return ui->lineEditPath->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::FileName() const -> QString
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
return ui->lineEditFileName->text();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::Format() const -> LayoutExportFormats
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
return static_cast<LayoutExportFormats>(ui->comboBoxFormat->currentData().toInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SelectFormat(LayoutExportFormats format)
|
|
|
|
{
|
|
|
|
if (static_cast<int>(format) < 0 || format >= LayoutExportFormats::COUNT)
|
|
|
|
{
|
|
|
|
throw VException(tr("Tried to use out of range format number."));
|
|
|
|
}
|
|
|
|
|
|
|
|
const int i = ui->comboBoxFormat->findData(static_cast<int>(format));
|
|
|
|
if (i < 0)
|
|
|
|
{
|
|
|
|
throw VException(tr("Selected not present format."));
|
|
|
|
}
|
|
|
|
ui->comboBoxFormat->setCurrentIndex(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SetBinaryDXFFormat(bool binary)
|
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::DXF_AC1006_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1009_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1012_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1014_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1015_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1018_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1021_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1024_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1027_Flat:
|
2023-05-03 15:23:54 +02:00
|
|
|
case LayoutExportFormats::DXF_AAMA:
|
|
|
|
case LayoutExportFormats::DXF_ASTM:
|
2021-09-06 14:31:19 +02:00
|
|
|
ui->checkBoxBinaryDXF->setChecked(binary);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ui->checkBoxBinaryDXF->setChecked(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::IsBinaryDXFFormat() const -> bool
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::DXF_AC1006_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1009_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1012_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1014_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1015_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1018_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1021_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1024_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1027_Flat:
|
2023-05-03 15:23:54 +02:00
|
|
|
case LayoutExportFormats::DXF_AAMA:
|
|
|
|
case LayoutExportFormats::DXF_ASTM:
|
2021-09-06 14:31:19 +02:00
|
|
|
return ui->checkBoxBinaryDXF->isChecked();
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-10 11:20:18 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SetShowGrainline(bool show)
|
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::SVG:
|
|
|
|
case LayoutExportFormats::PDF:
|
|
|
|
case LayoutExportFormats::PNG:
|
|
|
|
case LayoutExportFormats::PS:
|
|
|
|
case LayoutExportFormats::EPS:
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
|
|
|
case LayoutExportFormats::TIF:
|
|
|
|
case LayoutExportFormats::DXF_AC1006_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1009_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1012_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1014_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1015_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1018_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1021_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1024_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1027_Flat:
|
|
|
|
ui->checkBoxShowGrainline->setChecked(show);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ui->checkBoxShowGrainline->setChecked(true);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2023-05-03 13:07:02 +02:00
|
|
|
auto DialogSaveManualLayout::IsShowGrainline() const -> bool
|
2023-04-10 11:20:18 +02:00
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::SVG:
|
|
|
|
case LayoutExportFormats::PDF:
|
|
|
|
case LayoutExportFormats::PNG:
|
|
|
|
case LayoutExportFormats::PS:
|
|
|
|
case LayoutExportFormats::EPS:
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
|
|
|
case LayoutExportFormats::TIF:
|
|
|
|
case LayoutExportFormats::DXF_AC1006_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1009_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1012_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1014_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1015_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1018_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1021_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1024_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1027_Flat:
|
|
|
|
return ui->checkBoxShowGrainline->isChecked();
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-06 14:31:19 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SetDestinationPath(const QString &cmdDestinationPath)
|
|
|
|
{
|
|
|
|
QString path;
|
|
|
|
if (cmdDestinationPath.isEmpty())
|
|
|
|
{
|
|
|
|
path = QDir::currentPath();
|
|
|
|
}
|
|
|
|
else if (QDir(cmdDestinationPath).isAbsolute())
|
|
|
|
{
|
|
|
|
path = cmdDestinationPath;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QDir dir;
|
|
|
|
if (not dir.cd(cmdDestinationPath))
|
|
|
|
{
|
|
|
|
throw VException(tr("The destination directory doesn't exists or is not readable."));
|
|
|
|
}
|
|
|
|
path = dir.absolutePath();
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug() << "Output full path: " << path << "\n";
|
|
|
|
ui->lineEditPath->setText(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::IsTextAsPaths() const -> bool
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
return ui->checkBoxTextAsPaths->isChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SetTextAsPaths(bool textAsPaths)
|
|
|
|
{
|
|
|
|
ui->checkBoxTextAsPaths->setChecked(textAsPaths);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SetExportUnified(bool value)
|
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::PDF:
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
|
|
|
case LayoutExportFormats::PS:
|
|
|
|
case LayoutExportFormats::EPS:
|
|
|
|
ui->checkBoxExportUnified->setChecked(value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ui->checkBoxExportUnified->setChecked(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::IsExportUnified() const -> bool
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::PDF:
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
|
|
|
case LayoutExportFormats::PS:
|
|
|
|
case LayoutExportFormats::EPS:
|
|
|
|
return ui->checkBoxExportUnified->isChecked();
|
2021-09-08 17:32:43 +02:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::SetTilesScheme(bool value)
|
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
|
|
|
ui->checkBoxTilesScheme->setChecked(value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ui->checkBoxTilesScheme->setChecked(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2022-08-12 17:50:13 +02:00
|
|
|
auto DialogSaveManualLayout::IsTilesScheme() const -> bool
|
2021-09-08 17:32:43 +02:00
|
|
|
{
|
|
|
|
switch(Format())
|
|
|
|
{
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
|
|
|
return ui->checkBoxTilesScheme->isChecked();
|
2021-09-06 14:31:19 +02:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::showEvent(QShowEvent *event)
|
|
|
|
{
|
|
|
|
QDialog::showEvent( event );
|
|
|
|
if ( event->spontaneous() )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_isInitialized)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// do your init stuff here
|
|
|
|
|
|
|
|
setFixedHeight(size().height());
|
|
|
|
|
|
|
|
m_isInitialized = true;//first show windows are held
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::Save()
|
|
|
|
{
|
|
|
|
WriteSettings();
|
|
|
|
|
|
|
|
for (int i=0; i < m_count; ++i)
|
|
|
|
{
|
|
|
|
QString name;
|
|
|
|
if (m_count > 1 && not IsExportUnified())
|
|
|
|
{
|
|
|
|
name = Path() + '/' + FileName() + QString::number(i+1) + VLayoutExporter::ExportFormatSuffix(Format());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
name = Path() + '/' + FileName() + VLayoutExporter::ExportFormatSuffix(Format());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (QFile::exists(name))
|
|
|
|
{
|
|
|
|
QMessageBox::StandardButton res = QMessageBox::question(this, tr("Name conflict"),
|
|
|
|
tr("Folder already contain file with name %1. Rewrite all conflict file names?")
|
|
|
|
.arg(name), QMessageBox::Yes|QMessageBox::No, QMessageBox::Yes);
|
|
|
|
if (res == QMessageBox::No)
|
|
|
|
{
|
|
|
|
reject();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::PathChanged(const QString &text)
|
|
|
|
{
|
|
|
|
QPushButton *bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
SCASSERT(bOk != nullptr)
|
|
|
|
|
|
|
|
QPalette palette = ui->lineEditPath->palette();
|
|
|
|
|
|
|
|
QDir dir(text);
|
|
|
|
dir.setPath(text);
|
|
|
|
if (not text.isEmpty() && dir.exists(text))
|
|
|
|
{
|
|
|
|
bOk->setEnabled(true);
|
|
|
|
palette.setColor(ui->lineEditPath->foregroundRole(), Qt::black);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bOk->setEnabled(false);
|
|
|
|
palette.setColor(ui->lineEditPath->foregroundRole(), Qt::red);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->lineEditPath->setPalette(palette);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::ShowExample()
|
|
|
|
{
|
|
|
|
const LayoutExportFormats currentFormat = Format();
|
|
|
|
|
|
|
|
QString example;
|
|
|
|
if (m_count > 1)
|
|
|
|
{
|
|
|
|
example = tr("Example:") + FileName() + QLatin1Char('1') + VLayoutExporter::ExportFormatSuffix(currentFormat);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
example = tr("Example:") + FileName() + VLayoutExporter::ExportFormatSuffix(currentFormat);
|
|
|
|
}
|
|
|
|
ui->labelExample->setText(example);
|
|
|
|
|
|
|
|
ui->checkBoxBinaryDXF->setEnabled(false);
|
|
|
|
ui->checkBoxTextAsPaths->setEnabled(true);
|
|
|
|
ui->checkBoxExportUnified->setEnabled(false);
|
2021-09-08 17:32:43 +02:00
|
|
|
ui->checkBoxTilesScheme->setEnabled(false);
|
2023-04-10 11:20:18 +02:00
|
|
|
ui->checkBoxShowGrainline->setEnabled(true);
|
2021-09-06 14:31:19 +02:00
|
|
|
|
|
|
|
switch(currentFormat)
|
|
|
|
{
|
2023-05-03 15:23:54 +02:00
|
|
|
case LayoutExportFormats::DXF_AAMA:
|
|
|
|
case LayoutExportFormats::DXF_ASTM:
|
2021-09-06 14:31:19 +02:00
|
|
|
ui->checkBoxBinaryDXF->setEnabled(true);
|
2023-04-10 11:20:18 +02:00
|
|
|
ui->checkBoxShowGrainline->setEnabled(false);
|
2021-09-06 14:31:19 +02:00
|
|
|
break;
|
|
|
|
case LayoutExportFormats::RLD:
|
|
|
|
ui->checkBoxTextAsPaths->setEnabled(false);
|
2023-04-10 11:20:18 +02:00
|
|
|
ui->checkBoxShowGrainline->setEnabled(false);
|
2021-09-06 14:31:19 +02:00
|
|
|
break;
|
|
|
|
case LayoutExportFormats::PDFTiled:
|
2021-09-08 17:32:43 +02:00
|
|
|
ui->checkBoxTilesScheme->setEnabled(true);
|
|
|
|
ui->checkBoxExportUnified->setEnabled(true);
|
|
|
|
break;
|
2021-09-06 14:31:19 +02:00
|
|
|
case LayoutExportFormats::PDF:
|
|
|
|
case LayoutExportFormats::PS:
|
|
|
|
case LayoutExportFormats::EPS:
|
|
|
|
ui->checkBoxExportUnified->setEnabled(true);
|
|
|
|
break;
|
2023-04-10 11:20:18 +02:00
|
|
|
case LayoutExportFormats::NC:
|
|
|
|
case LayoutExportFormats::OBJ:
|
|
|
|
ui->checkBoxShowGrainline->setEnabled(false);
|
|
|
|
break;
|
|
|
|
case LayoutExportFormats::DXF_AC1006_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1009_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1012_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1014_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1015_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1018_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1021_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1024_Flat:
|
|
|
|
case LayoutExportFormats::DXF_AC1027_Flat:
|
2021-09-06 14:31:19 +02:00
|
|
|
case LayoutExportFormats::SVG:
|
|
|
|
case LayoutExportFormats::PNG:
|
|
|
|
case LayoutExportFormats::TIF:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::SupportPSTest() -> bool
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
2022-08-12 17:50:13 +02:00
|
|
|
static bool havePdf = false;
|
|
|
|
static bool tested = false;
|
2021-09-06 14:31:19 +02:00
|
|
|
if (!tested)
|
|
|
|
{
|
|
|
|
havePdf = VLayoutExporter::SupportPDFConversion();
|
|
|
|
tested = true;
|
|
|
|
}
|
|
|
|
return havePdf;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-09-06 15:56:56 +02:00
|
|
|
auto DialogSaveManualLayout::InitFormats() -> QVector<std::pair<QString, LayoutExportFormats> >
|
2021-09-06 14:31:19 +02:00
|
|
|
{
|
|
|
|
QVector<std::pair<QString, LayoutExportFormats>> list;
|
|
|
|
|
|
|
|
auto InitFormat = [&list](LayoutExportFormats format)
|
|
|
|
{
|
|
|
|
list.append(std::make_pair(VLayoutExporter::ExportFormatDescription(format), format));
|
|
|
|
};
|
|
|
|
|
|
|
|
InitFormat(LayoutExportFormats::SVG);
|
|
|
|
InitFormat(LayoutExportFormats::PDF);
|
|
|
|
InitFormat(LayoutExportFormats::PNG);
|
|
|
|
InitFormat(LayoutExportFormats::OBJ);
|
|
|
|
if (SupportPSTest())
|
|
|
|
{
|
|
|
|
InitFormat(LayoutExportFormats::PS);
|
|
|
|
InitFormat(LayoutExportFormats::EPS);
|
|
|
|
}
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1006_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1009_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1012_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1014_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1015_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1018_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1021_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1024_Flat);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_AC1027_Flat);
|
2023-05-03 15:23:54 +02:00
|
|
|
InitFormat(LayoutExportFormats::DXF_AAMA);
|
|
|
|
InitFormat(LayoutExportFormats::DXF_ASTM);
|
2021-09-06 14:31:19 +02:00
|
|
|
InitFormat(LayoutExportFormats::PDFTiled);
|
|
|
|
// InitFormat(LayoutExportFormats::NC);
|
|
|
|
InitFormat(LayoutExportFormats::RLD);
|
|
|
|
InitFormat(LayoutExportFormats::TIF);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::RemoveFormatFromList(LayoutExportFormats format)
|
|
|
|
{
|
|
|
|
const int index = ui->comboBoxFormat->findData(static_cast<int>(format));
|
|
|
|
if (index != -1)
|
|
|
|
{
|
|
|
|
ui->comboBoxFormat->removeItem(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::ReadSettings()
|
|
|
|
{
|
|
|
|
VPSettings *settings = VPApplication::VApp()->PuzzleSettings();
|
|
|
|
SelectFormat(static_cast<LayoutExportFormats>(settings->GetLayoutExportFormat()));
|
2023-04-10 11:20:18 +02:00
|
|
|
SetShowGrainline(settings->GetShowGrainline());
|
2021-09-06 14:31:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSaveManualLayout::WriteSettings() const
|
|
|
|
{
|
|
|
|
if (m_consoleExport)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPSettings *settings = VPApplication::VApp()->PuzzleSettings();
|
|
|
|
settings->SetLayoutExportFormat(static_cast<qint8>(Format()));
|
2023-04-10 11:20:18 +02:00
|
|
|
settings->SetShowGrainline(IsShowGrainline());
|
2021-09-06 14:31:19 +02:00
|
|
|
}
|