61172d46c4
--HG-- branch : develop
329 lines
11 KiB
C++
329 lines
11 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialogflippingbyaxis.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 16 9, 2016
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2016 Valentina project
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "dialogflippingbyaxis.h"
|
|
|
|
#include <QColor>
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPointF>
|
|
#include <QPointer>
|
|
#include <QPushButton>
|
|
#include <QRegularExpression>
|
|
#include <QRegularExpressionMatch>
|
|
#include <QSharedPointer>
|
|
#include <QStringList>
|
|
#include <QToolButton>
|
|
#include <Qt>
|
|
#include <new>
|
|
|
|
#include "../../visualization/visualization.h"
|
|
#include "../../visualization/line/operation/vistoolflippingbyaxis.h"
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
#include "../ifc/xml/vdomdocument.h"
|
|
#include "../qmuparser/qmudef.h"
|
|
#include "../vgeometry/vpointf.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vmisc/vcommonsettings.h"
|
|
#include "../vpatterndb/vcontainer.h"
|
|
#include "../vwidgets/vabstractmainwindow.h"
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
|
#include "ui_dialogflippingbyaxis.h"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogFlippingByAxis::DialogFlippingByAxis(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
|
: DialogTool(data, toolId, parent),
|
|
ui(new Ui::DialogFlippingByAxis),
|
|
objects(),
|
|
stage1(true),
|
|
m_suffix()
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
ui->lineEditSuffix->setText(qApp->getCurrentDocument()->GenerateSuffix());
|
|
|
|
InitOkCancelApply(ui);
|
|
|
|
FillComboBoxPoints(ui->comboBoxOriginPoint);
|
|
FillComboBoxAxisType(ui->comboBoxAxisType);
|
|
|
|
flagName = true;
|
|
CheckState();
|
|
|
|
connect(ui->lineEditSuffix, &QLineEdit::textChanged, this, &DialogFlippingByAxis::SuffixChanged);
|
|
connect(ui->comboBoxOriginPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogFlippingByAxis::PointChanged);
|
|
|
|
vis = new VisToolFlippingByAxis(data);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogFlippingByAxis::~DialogFlippingByAxis()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 DialogFlippingByAxis::GetOriginPointId() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxOriginPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::SetOriginPointId(quint32 value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxOriginPoint, value);
|
|
VisToolFlippingByAxis *operation = qobject_cast<VisToolFlippingByAxis *>(vis);
|
|
SCASSERT(operation != nullptr)
|
|
operation->SetOriginPointId(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
AxisType DialogFlippingByAxis::GetAxisType() const
|
|
{
|
|
return getCurrentCrossPoint<AxisType>(ui->comboBoxAxisType);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::SetAxisType(AxisType type)
|
|
{
|
|
auto index = ui->comboBoxAxisType->findData(static_cast<int>(type));
|
|
if (index != -1)
|
|
{
|
|
ui->comboBoxAxisType->setCurrentIndex(index);
|
|
|
|
auto operation = qobject_cast<VisToolFlippingByAxis *>(vis);
|
|
SCASSERT(operation != nullptr)
|
|
operation->SetAxisType(type);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogFlippingByAxis::GetSuffix() const
|
|
{
|
|
return m_suffix;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::SetSuffix(const QString &value)
|
|
{
|
|
m_suffix = value;
|
|
ui->lineEditSuffix->setText(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QVector<quint32> DialogFlippingByAxis::GetObjects() const
|
|
{
|
|
return objects.toVector();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::ShowDialog(bool click)
|
|
{
|
|
if (stage1 && not click)
|
|
{
|
|
if (objects.isEmpty())
|
|
{
|
|
return;
|
|
}
|
|
|
|
stage1 = false;
|
|
|
|
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(qApp->getCurrentScene());
|
|
SCASSERT(scene != nullptr)
|
|
scene->clearSelection();
|
|
|
|
VisToolFlippingByAxis *operation = qobject_cast<VisToolFlippingByAxis *>(vis);
|
|
SCASSERT(operation != nullptr)
|
|
operation->SetObjects(objects.toVector());
|
|
operation->VisualMode();
|
|
|
|
scene->ToggleArcSelection(false);
|
|
scene->ToggleElArcSelection(false);
|
|
scene->ToggleSplineSelection(false);
|
|
scene->ToggleSplinePathSelection(false);
|
|
|
|
scene->ToggleArcHover(false);
|
|
scene->ToggleElArcHover(false);
|
|
scene->ToggleSplineHover(false);
|
|
scene->ToggleSplinePathHover(false);
|
|
|
|
emit ToolTip(tr("Select origin point"));
|
|
}
|
|
else if (not stage1 && prepare && click)
|
|
{
|
|
setModal(true);
|
|
emit ToolTip("");
|
|
show();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::ChosenObject(quint32 id, const SceneObject &type)
|
|
{
|
|
if (not stage1 && not prepare)// After first choose we ignore all objects
|
|
{
|
|
if (type == SceneObject::Point)
|
|
{
|
|
if (objects.contains(id))
|
|
{
|
|
emit ToolTip(tr("Select origin point that is not part of the list of objects"));
|
|
return;
|
|
}
|
|
|
|
if (SetObject(id, ui->comboBoxOriginPoint, ""))
|
|
{
|
|
VisToolFlippingByAxis *operation = qobject_cast<VisToolFlippingByAxis *>(vis);
|
|
SCASSERT(operation != nullptr)
|
|
operation->SetOriginPointId(id);
|
|
operation->RefreshGeometry();
|
|
|
|
prepare = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::SelectedObject(bool selected, quint32 object, quint32 tool)
|
|
{
|
|
Q_UNUSED(tool)
|
|
if (stage1)
|
|
{
|
|
if (selected)
|
|
{
|
|
if (not objects.contains(object))
|
|
{
|
|
objects.append(object);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
objects.removeOne(object);
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::SuffixChanged()
|
|
{
|
|
QLineEdit* edit = qobject_cast<QLineEdit*>(sender());
|
|
if (edit)
|
|
{
|
|
const QString suffix = edit->text();
|
|
if (suffix.isEmpty())
|
|
{
|
|
flagName = false;
|
|
ChangeColor(ui->labelSuffix, Qt::red);
|
|
CheckState();
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
if (m_suffix != suffix)
|
|
{
|
|
QRegularExpression rx(NameRegExp());
|
|
const QStringList uniqueNames = VContainer::AllUniqueNames();
|
|
for (int i=0; i < uniqueNames.size(); ++i)
|
|
{
|
|
const QString name = uniqueNames.at(i) + suffix;
|
|
if (not rx.match(name).hasMatch() || not data->IsUnique(name))
|
|
{
|
|
flagName = false;
|
|
ChangeColor(ui->labelSuffix, Qt::red);
|
|
CheckState();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
flagName = true;
|
|
ChangeColor(ui->labelSuffix, okColor);
|
|
}
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::CheckState()
|
|
{
|
|
SCASSERT(bOk != nullptr)
|
|
bOk->setEnabled(flagError && flagName);
|
|
SCASSERT(bApply != nullptr)
|
|
bApply->setEnabled(bOk->isEnabled());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::ShowVisualization()
|
|
{
|
|
AddVisualization<VisToolFlippingByAxis>();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::SaveData()
|
|
{
|
|
m_suffix = ui->lineEditSuffix->text();
|
|
|
|
VisToolFlippingByAxis *operation = qobject_cast<VisToolFlippingByAxis *>(vis);
|
|
SCASSERT(operation != nullptr)
|
|
|
|
operation->SetObjects(objects.toVector());
|
|
operation->SetOriginPointId(GetOriginPointId());
|
|
operation->SetAxisType(GetAxisType());
|
|
operation->RefreshGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::PointChanged()
|
|
{
|
|
QColor color = okColor;
|
|
if (objects.contains(getCurrentObjectId(ui->comboBoxOriginPoint)))
|
|
{
|
|
flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
flagError = true;
|
|
color = okColor;
|
|
}
|
|
ChangeColor(ui->labelOriginPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogFlippingByAxis::FillComboBoxAxisType(QComboBox *box)
|
|
{
|
|
SCASSERT(box != nullptr)
|
|
|
|
box->addItem(tr("Vertical axis"), QVariant(static_cast<int>(AxisType::VerticalAxis)));
|
|
box->addItem(tr("Horizontal axis"), QVariant(static_cast<int>(AxisType::HorizontalAxis)));
|
|
}
|