Files
newspark110/actions/lc_actionfileexportmakercam.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

93 lines
3.7 KiB
C++

/****************************************************************************
**
** This file is part of the LibreCAD project, a 2D CAD program
**
** Copyright (C) 2014 Christian Luginbühl (dinkel@pimprecords.com)
** Copyright (C) 2018 Andrey Yaromenok (ayaromenok@gmail.com)
**
**
** This program 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 2 of the License, or
** (at your option) any later version.
**
** This program 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 this program; if not, write to the Free Software Foundation, Inc.,
** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
**
**********************************************************************/
#include "lc_actionfileexportmakercam.h"
#include <fstream>
#include <QAction>
#include "rs_dialogfactory.h"
#include "rs_graphic.h"
#include "lc_makercamsvg.h"
#include "rs_settings.h"
#include "lc_xmlwriterqxmlstreamwriter.h"
#include "rs_debug.h"
LC_ActionFileExportMakerCam::LC_ActionFileExportMakerCam(RS_EntityContainer& container,
RS_GraphicView& graphicView)
: RS_ActionInterface("Export as CAM/plain SVG...", container, graphicView) {}
void LC_ActionFileExportMakerCam::init(int status) {
RS_ActionInterface::init(status);
trigger();
}
void LC_ActionFileExportMakerCam::trigger() {
RS_DEBUG->print("LC_ActionFileExportMakerCam::trigger()");
if (graphic != NULL) {
bool accepted = RS_DIALOGFACTORY->requestOptionsMakerCamDialog();
if (accepted) {
QString filename = RS_DIALOGFACTORY->requestFileSaveAsDialog(tr("Export as"),
"",
"Scalable Vector Graphics (*.svg)");
if (!filename.isEmpty()) {
RS_SETTINGS->beginGroup("/ExportMakerCam");
std::unique_ptr<LC_MakerCamSVG> generator(new LC_MakerCamSVG(new LC_XMLWriterQXmlStreamWriter(),
(bool)RS_SETTINGS->readNumEntry("/ExportInvisibleLayers"),
(bool)RS_SETTINGS->readNumEntry("/ExportConstructionLayers"),
(bool)RS_SETTINGS->readNumEntry("/WriteBlocksInline"),
(bool)RS_SETTINGS->readNumEntry("/ConvertEllipsesToBeziers"),
(bool)RS_SETTINGS->readNumEntry("/ExportImages"),
(bool)RS_SETTINGS->readNumEntry("/BakeDashDotLines"),
(double)RS_SETTINGS->readEntry("/DefaultElementWidth").toDouble(),
(double)RS_SETTINGS->readEntry("/DefaultDashLinePatternLength").toDouble())
);
RS_SETTINGS->endGroup();
if (generator->generate(graphic)) {
std::ofstream file;
file.open(filename.toStdString());
file << generator->resultAsString();
file.close();
}
}
}
}
finish(false);
}