1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0030452: Visualization - SelectMgr_ViewerSelector::Deactivate() raises exception when called twice

Removed unused SelectMgr_SOS_Sleeping enumeration value.
SelectMgr_ViewerSelector::Deactivate() now checks activation status before updating tolerance map.
This commit is contained in:
kgv 2019-01-21 15:31:02 +03:00 committed by bugmaster
parent c29c0ad0a2
commit 82d23ad590
3 changed files with 26 additions and 22 deletions

View File

@ -20,11 +20,10 @@
//! different state of a Selection in a ViewerSelector...
enum SelectMgr_StateOfSelection
{
SelectMgr_SOS_Activated,
SelectMgr_SOS_Deactivated,
SelectMgr_SOS_Sleeping,
SelectMgr_SOS_Any,
SelectMgr_SOS_Unknown
SelectMgr_SOS_Any = -2, //!< ANY selection state (for querying selections)
SelectMgr_SOS_Unknown = -1, //!< selection, which has never been in SelectMgr_SOS_Activated state (almost the same thing as SelectMgr_SOS_Deactivated)
SelectMgr_SOS_Deactivated = 0, //!< deactivated selection, once been in SelectMgr_SOS_Activated state
SelectMgr_SOS_Activated, //!< activated selection
};
#endif // _SelectMgr_StateOfSelection_HeaderFile

View File

@ -137,11 +137,14 @@ void SelectMgr_ViewerSelector::Activate (const Handle(SelectMgr_Selection)& theS
aSelEntIter.Value()->SetActiveForSelection();
}
if (theSelection->GetSelectionState() != SelectMgr_SOS_Activated)
{
theSelection->SetSelectionState (SelectMgr_SOS_Activated);
myTolerances.Add (theSelection->Sensitivity());
myToUpdateTolerance = Standard_True;
}
}
//==================================================
// Function: Deactivate
@ -154,11 +157,14 @@ void SelectMgr_ViewerSelector::Deactivate (const Handle(SelectMgr_Selection)& th
aSelEntIter.Value()->ResetSelectionActiveStatus();
}
if (theSelection->GetSelectionState() == SelectMgr_SOS_Activated)
{
theSelection->SetSelectionState (SelectMgr_SOS_Deactivated);
myTolerances.Decrement (theSelection->Sensitivity());
myToUpdateTolerance = Standard_True;
}
}
//==================================================
// Function: Clear

View File

@ -402,11 +402,10 @@ TCollection_AsciiString VInspector_Tools::ToName (const VInspector_SelectionType
{
switch (theValue)
{
case SelectMgr_SOS_Activated: return "Activated";
case SelectMgr_SOS_Deactivated: return "Deactivated";
case SelectMgr_SOS_Sleeping: return "Sleeping";
case SelectMgr_SOS_Any: return "Any";
case SelectMgr_SOS_Unknown: return "Unknown";
case SelectMgr_SOS_Activated: return "Activated";
case SelectMgr_SOS_Deactivated: return "Deactivated";
default: break;
}
}