Undo selection of last object if was selected twice.
--HG-- branch : feature
This commit is contained in:
parent
0a11ec59fb
commit
c2da41bbf0
|
@ -127,6 +127,8 @@ void DialogPiecePath::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
{
|
{
|
||||||
reverse = true;
|
reverse = true;
|
||||||
}
|
}
|
||||||
|
if (id != GetLastId())
|
||||||
|
{
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case SceneObject::Arc:
|
case SceneObject::Arc:
|
||||||
|
@ -148,6 +150,14 @@ void DialogPiecePath::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
qDebug() << "Got wrong scene object. Ignore.";
|
qDebug() << "Got wrong scene object. Ignore.";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (ui->listWidget->count() > 1)
|
||||||
|
{
|
||||||
|
delete GetItemById(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ValidObjects(PathIsValid());
|
ValidObjects(PathIsValid());
|
||||||
|
|
||||||
|
@ -163,6 +173,8 @@ void DialogPiecePath::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
emit ToolTip(tr("Select main path objects, <b>Shift</b> - reverse direction curve, "
|
emit ToolTip(tr("Select main path objects, <b>Shift</b> - reverse direction curve, "
|
||||||
"<b>Enter</b> - finish creation"));
|
"<b>Enter</b> - finish creation"));
|
||||||
|
|
||||||
|
if (not qApp->getCurrentScene()->items().contains(visPath))
|
||||||
|
{
|
||||||
visPath->VisualMode(NULL_ID);
|
visPath->VisualMode(NULL_ID);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -170,6 +182,11 @@ void DialogPiecePath::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
visPath->RefreshGeometry();
|
visPath->RefreshGeometry();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
visPath->RefreshGeometry();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -545,6 +562,22 @@ QListWidgetItem *DialogPiecePath::GetItemById(quint32 id)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
quint32 DialogPiecePath::GetLastId() const
|
||||||
|
{
|
||||||
|
const int count = ui->listWidget->count();
|
||||||
|
if (count > 0)
|
||||||
|
{
|
||||||
|
QListWidgetItem *item = ui->listWidget->item(count-1);
|
||||||
|
const VPieceNode node = qvariant_cast<VPieceNode>(item->data(Qt::UserRole));
|
||||||
|
return node.GetId();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return NULL_ID;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogPiecePath::SetCurrentSABefore(qreal value)
|
void DialogPiecePath::SetCurrentSABefore(qreal value)
|
||||||
{
|
{
|
||||||
|
|
|
@ -99,6 +99,8 @@ private:
|
||||||
|
|
||||||
QListWidgetItem *GetItemById(quint32 id);
|
QListWidgetItem *GetItemById(quint32 id);
|
||||||
|
|
||||||
|
quint32 GetLastId() const;
|
||||||
|
|
||||||
void SetCurrentSABefore(qreal value);
|
void SetCurrentSABefore(qreal value);
|
||||||
void SetCurrentSAAfter(qreal value);
|
void SetCurrentSAAfter(qreal value);
|
||||||
};
|
};
|
||||||
|
|
|
@ -202,6 +202,8 @@ void DialogSeamAllowance::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
{
|
{
|
||||||
reverse = true;
|
reverse = true;
|
||||||
}
|
}
|
||||||
|
if (id != GetLastId())
|
||||||
|
{
|
||||||
switch (type)
|
switch (type)
|
||||||
{
|
{
|
||||||
case SceneObject::Arc:
|
case SceneObject::Arc:
|
||||||
|
@ -223,6 +225,14 @@ void DialogSeamAllowance::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
qDebug() << "Got wrong scene object. Ignore.";
|
qDebug() << "Got wrong scene object. Ignore.";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (ui->listWidgetMainPath->count() > 1)
|
||||||
|
{
|
||||||
|
delete GetItemById(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ValidObjects(MainPathIsValid());
|
ValidObjects(MainPathIsValid());
|
||||||
|
|
||||||
|
@ -238,6 +248,8 @@ void DialogSeamAllowance::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
emit ToolTip(tr("Select main path objects clockwise, <b>Shift</b> - reverse direction curve, "
|
emit ToolTip(tr("Select main path objects clockwise, <b>Shift</b> - reverse direction curve, "
|
||||||
"<b>Enter</b> - finish creation"));
|
"<b>Enter</b> - finish creation"));
|
||||||
|
|
||||||
|
if (not qApp->getCurrentScene()->items().contains(visPath))
|
||||||
|
{
|
||||||
visPath->VisualMode(NULL_ID);
|
visPath->VisualMode(NULL_ID);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -245,6 +257,11 @@ void DialogSeamAllowance::ChosenObject(quint32 id, const SceneObject &type)
|
||||||
visPath->RefreshGeometry();
|
visPath->RefreshGeometry();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
visPath->RefreshGeometry();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -925,6 +942,22 @@ QListWidgetItem *DialogSeamAllowance::GetItemById(quint32 id)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
quint32 DialogSeamAllowance::GetLastId() const
|
||||||
|
{
|
||||||
|
const int count = ui->listWidgetMainPath->count();
|
||||||
|
if (count > 0)
|
||||||
|
{
|
||||||
|
QListWidgetItem *item = ui->listWidgetMainPath->item(count-1);
|
||||||
|
const VPieceNode node = qvariant_cast<VPieceNode>(item->data(Qt::UserRole));
|
||||||
|
return node.GetId();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return NULL_ID;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogSeamAllowance::SetCurrentSABefore(qreal value)
|
void DialogSeamAllowance::SetCurrentSABefore(qreal value)
|
||||||
{
|
{
|
||||||
|
|
|
@ -105,6 +105,8 @@ private:
|
||||||
|
|
||||||
QListWidgetItem *GetItemById(quint32 id);
|
QListWidgetItem *GetItemById(quint32 id);
|
||||||
|
|
||||||
|
quint32 GetLastId() const;
|
||||||
|
|
||||||
void SetCurrentSABefore(qreal value);
|
void SetCurrentSABefore(qreal value);
|
||||||
void SetCurrentSAAfter(qreal value);
|
void SetCurrentSAAfter(qreal value);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user