/************************************************************************ ** ** @file dialogdetail.cpp ** @author Roman Telezhynskyi ** @date November 15, 2013 ** ** @brief ** @copyright ** This source code is part of the Valentine project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2013 Valentina project ** 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 . ** *************************************************************************/ #include "dialogdetail.h" #include #include //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogDetail create dialog * @param data container with data * @param parent parent widget */ DialogDetail::DialogDetail(const VContainer *data, QWidget *parent) :DialogTool(data, parent), ui(), details(VDetail()), supplement(true), closed(true) { ui.setupUi(this); labelEditNamePoint = ui.labelEditNameDetail; bOk = ui.buttonBox->button(QDialogButtonBox::Ok); Q_CHECK_PTR(bOk); connect(bOk, &QPushButton::clicked, this, &DialogTool::DialogAccepted); QPushButton *bCansel = ui.buttonBox->button(QDialogButtonBox::Cancel); Q_CHECK_PTR(bCansel); connect(bCansel, &QPushButton::clicked, this, &DialogTool::DialogRejected); flagName = true;//We have default name of detail. QPalette palette = labelEditNamePoint->palette(); palette.setColor(labelEditNamePoint->foregroundRole(), QColor(76, 76, 76)); labelEditNamePoint->setPalette(palette); CheckState(); connect(ui.listWidget, &QListWidget::currentRowChanged, this, &DialogDetail::ObjectChanged); connect(ui.spinBoxBiasX, static_cast(&QSpinBox::valueChanged), this, &DialogDetail::BiasXChanged); connect(ui.spinBoxBiasY, static_cast(&QSpinBox::valueChanged), this, &DialogDetail::BiasYChanged); connect(ui.checkBoxSeams, &QCheckBox::clicked, this, &DialogDetail::ClickedSeams); connect(ui.checkBoxClosed, &QCheckBox::clicked, this, &DialogDetail::ClickedClosed); connect(ui.lineEditNameDetail, &QLineEdit::textChanged, this, &DialogDetail::NamePointChanged); connect(ui.toolButtonDelete, &QToolButton::clicked, this, &DialogDetail::DeleteItem); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief ChoosedObject gets id and type of selected object. Save right data and ignore wrong. * @param id id of objects (points, arcs, splines, spline paths) * @param type type of object */ void DialogDetail::ChoosedObject(quint32 id, const Valentina::Scenes &type) { if (type != Valentina::Line && type != Valentina::Detail) { switch (type) { case (Valentina::Arc): NewItem(id, Valentina::NodeArc, NodeDetail::Contour); break; case (Valentina::Point): NewItem(id, Valentina::NodePoint, NodeDetail::Contour); break; case (Valentina::Spline): NewItem(id, Valentina::NodeSpline, NodeDetail::Contour); break; case (Valentina::SplinePath): NewItem(id, Valentina::NodeSplinePath, NodeDetail::Contour); break; default: qDebug()<setEnabled(true); this->show(); } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogAccepted save data and emit signal about closed dialog. */ void DialogDetail::DialogAccepted() { details.Clear(); for (qint32 i = 0; i < ui.listWidget->count(); ++i) { QListWidgetItem *item = ui.listWidget->item(i); details.append( qvariant_cast(item->data(Qt::UserRole))); } details.setWidth(ui.spinBoxSeams->value()); details.setName(ui.lineEditNameDetail->text()); details.setSeamAllowance(supplement); details.setClosed(closed); emit ToolTip(""); emit DialogClosed(QDialog::Accepted); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief NewItem add new object (point, arc, spline or spline path) to list * @param id id of object * @param typeTool type of tool * @param typeNode type of node in detail * @param mx offset respect to x * @param my offset respect to y */ void DialogDetail::NewItem(quint32 id, const Valentina::Tools &typeTool, const NodeDetail::NodeDetails &typeNode, qreal mx, qreal my) { QString name; switch (typeTool) { case (Valentina::NodePoint): { const VPointF *point = data->GeometricObject(id); name = point->name(); break; } case (Valentina::NodeArc): { const VArc *arc = data->GeometricObject(id); name = arc->name(); break; } case (Valentina::NodeSpline): { const VSpline *spl = data->GeometricObject(id); name = spl->name(); break; } case (Valentina::NodeSplinePath): { const VSplinePath *splPath = data->GeometricObject(id); name = splPath->name(); break; } default: qDebug()<<"Got wrong tools. Ignore."; break; } QListWidgetItem *item = new QListWidgetItem(name); item->setFont(QFont("Times", 12, QFont::Bold)); VNodeDetail node(id, typeTool, typeNode, mx, my); item->setData(Qt::UserRole, QVariant::fromValue(node)); ui.listWidget->addItem(item); ui.listWidget->setCurrentRow(ui.listWidget->count()-1); disconnect(ui.spinBoxBiasX, static_cast(&QSpinBox::valueChanged), this, &DialogDetail::BiasXChanged); disconnect(ui.spinBoxBiasY, static_cast(&QSpinBox::valueChanged), this, &DialogDetail::BiasYChanged); ui.spinBoxBiasX->setValue(static_cast(qApp->fromPixel(node.getMx()))); ui.spinBoxBiasY->setValue(static_cast(qApp->fromPixel(node.getMy()))); connect(ui.spinBoxBiasX, static_cast(&QSpinBox::valueChanged), this, &DialogDetail::BiasXChanged); connect(ui.spinBoxBiasY, static_cast(&QSpinBox::valueChanged), this, &DialogDetail::BiasYChanged); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setDetails set detail * @param value detail */ void DialogDetail::setDetails(const VDetail &value) { details = value; ui.listWidget->clear(); for (ptrdiff_t i = 0; i < details.CountNode(); ++i) { NewItem(details[i].getId(), details[i].getTypeTool(), details[i].getTypeNode(), details[i].getMx(), details[i].getMy()); } ui.lineEditNameDetail->setText(details.getName()); ui.checkBoxSeams->setChecked(details.getSeamAllowance()); ui.checkBoxClosed->setChecked(details.getClosed()); ClickedClosed(details.getClosed()); ClickedSeams(details.getSeamAllowance()); ui.spinBoxSeams->setValue(static_cast(details.getWidth())); ui.listWidget->setCurrentRow(0); ui.listWidget->setFocus(Qt::OtherFocusReason); ui.toolButtonDelete->setEnabled(true); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief BiasXChanged changed value of offset for object respect to x * @param d value in mm */ void DialogDetail::BiasXChanged(qreal d) { qint32 row = ui.listWidget->currentRow(); QListWidgetItem *item = ui.listWidget->item( row ); Q_CHECK_PTR(item); VNodeDetail node = qvariant_cast(item->data(Qt::UserRole)); node.setMx(qApp->toPixel(d)); item->setData(Qt::UserRole, QVariant::fromValue(node)); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief BiasYChanged changed value of offset for object respect to y * @param d value in mm */ void DialogDetail::BiasYChanged(qreal d) { qint32 row = ui.listWidget->currentRow(); QListWidgetItem *item = ui.listWidget->item( row ); Q_CHECK_PTR(item); VNodeDetail node = qvariant_cast(item->data(Qt::UserRole)); node.setMy(qApp->toPixel(d)); item->setData(Qt::UserRole, QVariant::fromValue(node)); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief ClickedSeams save supplement of seams for detail * @param checked 1 - need supplement, 0 - don't need supplement */ void DialogDetail::ClickedSeams(bool checked) { supplement = checked; ui.checkBoxClosed->setEnabled(checked); ui.spinBoxSeams->setEnabled(checked); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief ClickedClosed save closed equdistant or not * @param checked 1 - closed, 0 - don't closed */ void DialogDetail::ClickedClosed(bool checked) { closed = checked; } //--------------------------------------------------------------------------------------------------------------------- /** * @brief ObjectChanged changed new object (point, arc, spline or spline path) form list * @param row number of row */ void DialogDetail::ObjectChanged(int row) { if (ui.listWidget->count() == 0) { return; } QListWidgetItem *item = ui.listWidget->item( row ); VNodeDetail node = qvariant_cast(item->data(Qt::UserRole)); ui.spinBoxBiasX->setValue(static_cast(qApp->fromPixel(node.getMx()))); ui.spinBoxBiasY->setValue(static_cast(qApp->fromPixel(node.getMy()))); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief DeleteItem delete item from list */ void DialogDetail::DeleteItem() { qint32 row = ui.listWidget->currentRow(); delete ui.listWidget->item( row ); }