File size: 7,005 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | // SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) 2002 Jürgen Riegel <juergen.riegel@web.de> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library 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 Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include <QDir>
#include <QFile>
#include <QFileInfo>
#include <QMessageBox>
#include "Dialogs/DlgMacroRecordImp.h"
#include "ui_DlgMacroRecord.h"
#include "Application.h"
#include "FileDialog.h"
#include "Macro.h"
#include "MainWindow.h"
using namespace Gui::Dialog;
/* TRANSLATOR Gui::Dialog::DlgMacroRecordImp */
/**
* Constructs a DlgMacroRecordImp which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*
* The dialog will by default be modeless, unless you set 'modal' to
* true to construct a modal dialog.
*/
DlgMacroRecordImp::DlgMacroRecordImp(QWidget* parent, Qt::WindowFlags fl)
: QDialog(parent, fl)
, WindowParameter("Macro")
, ui(new Ui_DlgMacroRecord)
{
ui->setupUi(this);
setupConnections();
// get the macro home path
this->macroPath = QString::fromUtf8(
getWindowParameter()->GetASCII("MacroPath", App::Application::getUserMacroDir().c_str()).c_str()
);
this->macroPath = QDir::toNativeSeparators(QDir(this->macroPath).path() + QDir::separator());
// set the edit fields
ui->lineEditMacroPath->setText(macroPath);
// get a pointer to the macro manager
this->macroManager = Application::Instance->macroManager();
// check if a macro recording is in progress
this->macroManager->isOpen() ? ui->buttonStart->setEnabled(false)
: ui->buttonStop->setEnabled(false);
}
/**
* Destroys the object and frees any allocated resources
*/
DlgMacroRecordImp::~DlgMacroRecordImp() = default;
void DlgMacroRecordImp::setupConnections()
{
// clang-format off
connect(ui->buttonStart, &QPushButton::clicked,
this, &DlgMacroRecordImp::onButtonStartClicked);
connect(ui->buttonStop, &QPushButton::clicked,
this, &DlgMacroRecordImp::onButtonStopClicked);
connect(ui->buttonClose, &QPushButton::clicked,
this, &DlgMacroRecordImp::onButtonCloseClicked);
connect(ui->pushButtonChooseDir, &QPushButton::clicked,
this, &DlgMacroRecordImp::onButtonChooseDirClicked);
connect(ui->lineEditMacroPath, &QLineEdit::textChanged,
this, &DlgMacroRecordImp::onMacroPathTextChanged);
// clang-format on
}
/**
* Starts the record of the macro.
*/
void DlgMacroRecordImp::onButtonStartClicked()
{
// test if the path already set
if (ui->lineEditPath->text().isEmpty()) {
QMessageBox::information(
getMainWindow(),
tr("Macro recorder"),
tr("Specify a place to save first.")
);
return;
}
QDir dir(macroPath);
if (!dir.exists()) {
QMessageBox::information(
getMainWindow(),
tr("Macro recorder"),
tr("The macro directory does not exist. Choose another one.")
);
return;
}
// search in the macro path first for an already existing macro
QString fn = this->macroPath + ui->lineEditPath->text();
if (!fn.endsWith(QLatin1String(".FCMacro"))) {
fn += QLatin1String(".FCMacro");
}
QFileInfo fi(fn);
if (fi.isFile() && fi.exists()) {
if (QMessageBox::question(
this,
tr("Existing macro"),
tr("The macro '%1' already exists. Overwrite it?").arg(fn),
QMessageBox::Yes | QMessageBox::No,
QMessageBox::No
)
== QMessageBox::No) {
return;
}
}
QFile file(fn);
if (!file.open(QFile::WriteOnly)) {
QMessageBox::information(
getMainWindow(),
tr("Macro recorder"),
tr("You have no write permission for the directory. Choose another one.")
);
return;
}
file.close();
// open the macro recording
this->macroManager->open(MacroManager::File, fn.toUtf8().constData());
ui->buttonStart->setEnabled(false);
ui->buttonStop->setEnabled(true);
ui->buttonClose->setEnabled(false);
QDialog::accept();
}
/**
* Abort the macro.
*/
void DlgMacroRecordImp::onButtonCloseClicked()
{
if (this->macroManager->isOpen()) {
this->macroManager->cancel();
}
QDialog::reject();
}
/**
* Stops the record of the macro and save to the file.
*/
void DlgMacroRecordImp::onButtonStopClicked()
{
if (this->macroManager->isOpen()) {
// ends the macrorecording and save the file...
this->macroManager->commit();
}
ui->buttonStart->setEnabled(true);
ui->buttonStop->setEnabled(false);
ui->buttonClose->setEnabled(true);
QDialog::accept();
}
void DlgMacroRecordImp::onButtonChooseDirClicked()
{
QString newDir
= QFileDialog::getExistingDirectory(nullptr, tr("Choose macro directory"), macroPath);
if (!newDir.isEmpty()) {
macroPath = QDir::toNativeSeparators(newDir + QDir::separator());
ui->lineEditMacroPath->setText(macroPath);
getWindowParameter()->SetASCII("MacroPath", macroPath.toUtf8());
}
}
void DlgMacroRecordImp::onMacroPathTextChanged(const QString& newDir)
{
macroPath = newDir;
}
#include "moc_DlgMacroRecordImp.cpp"
|