Changes in dialog: reverse and internal move update the visualization
automatically. --HG-- branch : feature
This commit is contained in:
parent
b7def444ef
commit
bff5462ef3
|
@ -52,6 +52,7 @@ DialogSeamAllowance::DialogSeamAllowance(const VContainer *data, const quint32 &
|
|||
|
||||
ui->listWidget->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
connect(ui->listWidget, &QListWidget::customContextMenuRequested, this, &DialogSeamAllowance::ShowContextMenu);
|
||||
connect(ui->listWidget->model(), &QAbstractItemModel::rowsMoved, this, &DialogSeamAllowance::ListChanged);
|
||||
|
||||
vis = new VisToolPiece(data);
|
||||
}
|
||||
|
@ -97,6 +98,8 @@ void DialogSeamAllowance::SetPiece(const VPiece &piece)
|
|||
*/
|
||||
void DialogSeamAllowance::ChosenObject(quint32 id, const SceneObject &type)
|
||||
{
|
||||
if (not prepare)
|
||||
{
|
||||
bool reverse = false;
|
||||
if (QGuiApplication::keyboardModifiers() == Qt::ShiftModifier)
|
||||
{
|
||||
|
@ -142,6 +145,7 @@ void DialogSeamAllowance::ChosenObject(quint32 id, const SceneObject &type)
|
|||
{
|
||||
visPath->RefreshGeometry();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
|
@ -150,7 +154,15 @@ void DialogSeamAllowance::ShowDialog(bool click)
|
|||
if (click == false)
|
||||
{
|
||||
emit ToolTip("");
|
||||
setModal(true);
|
||||
prepare = true;
|
||||
|
||||
auto visPath = qobject_cast<VisToolPiece *>(vis);
|
||||
SCASSERT(visPath != nullptr);
|
||||
visPath->SetMode(Mode::Show);
|
||||
visPath->RefreshGeometry();
|
||||
|
||||
// Fix issue #526. Dialog Detail is not on top after selection second object on Mac.
|
||||
setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
|
||||
show();
|
||||
}
|
||||
}
|
||||
|
@ -211,6 +223,17 @@ void DialogSeamAllowance::ShowContextMenu(const QPoint &pos)
|
|||
rowItem->setText(GetNodeName(rowNode));
|
||||
ValidObjects(MainPathIsValid());
|
||||
}
|
||||
|
||||
ListChanged();
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void DialogSeamAllowance::ListChanged()
|
||||
{
|
||||
auto visPath = qobject_cast<VisToolPiece *>(vis);
|
||||
SCASSERT(visPath != nullptr);
|
||||
visPath->SetPiece(CreatePiece());
|
||||
visPath->RefreshGeometry();
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -61,6 +61,7 @@ protected:
|
|||
|
||||
private slots:
|
||||
void ShowContextMenu(const QPoint &pos);
|
||||
void ListChanged();
|
||||
|
||||
private:
|
||||
Q_DISABLE_COPY(DialogSeamAllowance)
|
||||
|
|
|
@ -47,6 +47,8 @@ VisToolPiece::~VisToolPiece()
|
|||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void VisToolPiece::RefreshGeometry()
|
||||
{
|
||||
HideAllItems();
|
||||
|
||||
if (m_piece.CountNode() > 0)
|
||||
{
|
||||
DrawPath(this, m_piece.MainPathPath(Visualization::data), mainColor, Qt::SolidLine, Qt::RoundCap);
|
||||
|
@ -59,6 +61,8 @@ void VisToolPiece::RefreshGeometry()
|
|||
DrawPoint(point, nodes.at(i), supportColor);
|
||||
}
|
||||
|
||||
if (mode == Mode::Creation)
|
||||
{
|
||||
const QVector<QPointF> points = m_piece.MainPathPoints(Visualization::data);
|
||||
DrawLine(m_line1, QLineF(points.first(), Visualization::scenePos), supportColor, Qt::DashLine);
|
||||
|
||||
|
@ -67,6 +71,7 @@ void VisToolPiece::RefreshGeometry()
|
|||
DrawLine(m_line2, QLineF(points.last(), Visualization::scenePos), supportColor, Qt::DashLine);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
|
@ -80,3 +85,26 @@ QGraphicsEllipseItem *VisToolPiece::GetPoint(quint32 i, const QColor &color)
|
|||
{
|
||||
return GetPointItem(Visualization::data, factor, m_points, i, color, this);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void VisToolPiece::HideAllItems()
|
||||
{
|
||||
if (m_line1)
|
||||
{
|
||||
m_line1->setVisible(false);
|
||||
}
|
||||
|
||||
if (m_line2)
|
||||
{
|
||||
m_line2->setVisible(false);
|
||||
}
|
||||
|
||||
QVector<QGraphicsEllipseItem *> m_points;
|
||||
for (int i=0; i < m_points.size(); ++i)
|
||||
{
|
||||
if (QGraphicsEllipseItem *item = m_points.at(i))
|
||||
{
|
||||
item->setVisible(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,6 +55,8 @@ private:
|
|||
VPiece m_piece;
|
||||
|
||||
QGraphicsEllipseItem* GetPoint(quint32 i, const QColor &color);
|
||||
|
||||
void HideAllItems();
|
||||
};
|
||||
|
||||
#endif // VISTOOLPIECE_H
|
||||
|
|
Loading…
Reference in New Issue
Block a user