Files
newspark110/ui/forms/qg_polylineequidistantoptions.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

123 lines
3.8 KiB
C++

/****************************************************************************
**
* Create option widget used to draw equidistant polylines
Copyright (C) 2011 Dongxu Li (dongxuli2011@gmail.com)
Copyright (C) 2011 R. van Twisk (librecad@rvt.dds.nl)
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 "qg_polylineequidistantoptions.h"
#include "ui_qg_polylineequidistantoptions.h"
#include "rs_actionpolylineequidistant.h"
#include "rs_settings.h"
#include "rs_math.h"
#include "rs_actionpolylineequidistant.h"
#include "ui_qg_polylineequidistantoptions.h"
#include "rs_debug.h"
/*
* Create option widget used to draw equidistant polylines
*
*@Author Dongxu Li
*/
QG_PolylineEquidistantOptions::QG_PolylineEquidistantOptions(QWidget* parent, Qt::WindowFlags fl)
: QWidget(parent, fl)
, ui{new Ui::PolylineEquidistantOptions{}}
{
ui->setupUi(this);
}
/*
* Destroys the object and frees any allocated resources
*/
QG_PolylineEquidistantOptions::~QG_PolylineEquidistantOptions()
{
saveOptions();
}
/*
* Sets the strings of the subwidgets using the current
* language.
*/
void QG_PolylineEquidistantOptions::languageChange()
{
ui->retranslateUi(this);
}
void QG_PolylineEquidistantOptions::setAction(RS_ActionInterface* a, bool update) {
if (a && a->rtti()==RS2::ActionPolylineEquidistant) {
action = static_cast<RS_ActionPolylineEquidistant*>(a);
QString sd;
QString sn;
// settings from action:
if (update) {
sd = QString("%1").arg(action->getDist());
sn = QString("%1").arg(action->getNumber());
}
// settings from config file:
else {
RS_SETTINGS->beginGroup("/Draw");
sd = RS_SETTINGS->readEntry("/PolylineEquidistantDist", "10.0");
sn = RS_SETTINGS->readEntry("/PolylineEquidistantCopies", "1");
RS_SETTINGS->endGroup();
}
ui->leDist->setText(sd);
ui->leNumber->setText(sn);
} else {
RS_DEBUG->print(RS_Debug::D_ERROR,
"QG_PolylineEquidistantOptions::setAction: wrong action type");
this->action = nullptr;
}
}
void QG_PolylineEquidistantOptions::saveOptions() {
RS_SETTINGS->beginGroup("/Draw");
// std::cout<<"QG_PolylineEquidistantOptions::saveOptions(): saving /PolylineEquidistantDist="<<qPrintable(leDist->text())<<std::endl;
RS_SETTINGS->writeEntry("/PolylineEquidistantDist", ui->leDist->text());
RS_SETTINGS->writeEntry("/PolylineEquidistantCopies", ui->leNumber->text());
RS_SETTINGS->endGroup();
}
void QG_PolylineEquidistantOptions::updateDist() {
if (action) {
const QString& l = ui->leDist->text();
bool ok;
double dist=RS_Math::eval(l, &ok);
if (!ok)
dist=10.;
ui->leDist->setText(QString::number(dist, 'g', 3));
action->setDist(dist);
}
}
void QG_PolylineEquidistantOptions::updateNumber() {
if (action) {
const QString& l = ui->leNumber->text();
bool ok;
unsigned i=static_cast<unsigned>(RS_Math::eval(l,&ok)+0.5);
if (!ok || 0 == i || 100 < i) {
i=1;
}
ui->leNumber->setText(QString::number(i));
action->setNumber(i);
}
}