init
This commit is contained in:
92
actions/lc_actionfileexportmakercam.cpp
Normal file
92
actions/lc_actionfileexportmakercam.cpp
Normal file
@@ -0,0 +1,92 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** 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);
|
||||
}
|
||||
Reference in New Issue
Block a user