1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0030726: Visualization - change Selected state of owner in AIS_Selection

AIS_InteractiveContext::IsHilighted() behavior has been changed.
It should use the same logic for owner processing like when it is highlighted. IsSelected of owner is used for selection state, not highlight.

 Without this correction, object is never shown as selected by click (Select(bool)):
 if (!HighlightStyle (theOwner, aCustomStyle) ||
    (!aCustomStyle.IsNull() && aCustomStyle != anObjSelStyle))

 IsSelected is already true, so the highlight style is equal to selection style, nothing to do.
This commit is contained in:
nds 2019-06-06 11:50:21 +03:00 committed by bugmaster
parent fc552d842e
commit 8d2c79f4e3
3 changed files with 14 additions and 23 deletions

View File

@ -754,7 +754,9 @@ Standard_Boolean AIS_InteractiveContext::IsHilighted (const Handle(SelectMgr_Ent
return myObjects (anObj)->IsHilighted(); return myObjects (anObj)->IsHilighted();
} }
return theOwner->IsSelected(); const Handle(Prs3d_Drawer)& aStyle = getSelStyle (anObj, theOwner);
const Standard_Integer aHiMode = getHilightMode (anObj, aStyle, -1);
return theOwner->IsHilighted (myMainPM, aHiMode);
} }
//======================================================================= //=======================================================================

View File

@ -184,7 +184,6 @@ void AIS_InteractiveContext::unhighlightSelected (const Standard_Boolean theIsTo
{ {
anObjToClear.Add (anInteractive); anObjToClear.Add (anInteractive);
} }
anOwner->SetSelected (Standard_False);
if (anOwner == anInteractive->GlobalSelOwner()) if (anOwner == anInteractive->GlobalSelOwner())
{ {
myObjects.ChangeFind (anInteractive)->SetHilightStatus (Standard_False); myObjects.ChangeFind (anInteractive)->SetHilightStatus (Standard_False);
@ -504,7 +503,6 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const Standard_Integer theXPMi
continue; continue;
mySelection->Select (aCurOwner); mySelection->Select (aCurOwner);
aCurOwner->SetSelected (Standard_True);
} }
if (myAutoHilight) if (myAutoHilight)
@ -544,7 +542,6 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const TColgp_Array1OfPnt2d& the
continue; continue;
mySelection->Select (anOwner); mySelection->Select (anOwner);
anOwner->SetSelected (Standard_True);
} }
if (myAutoHilight) if (myAutoHilight)
@ -644,8 +641,7 @@ AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const Standard_Integer the
if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner)) if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
continue; continue;
AIS_SelectStatus aSelStatus = mySelection->Select (anOwner); mySelection->Select (anOwner);
anOwner->SetSelected (aSelStatus == AIS_SS_Added);
} }
if (myAutoHilight) if (myAutoHilight)
@ -685,8 +681,7 @@ AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const TColgp_Array1OfPnt2d
if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner)) if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
continue; continue;
AIS_SelectStatus aSelStatus = mySelection->Select (anOwner); mySelection->Select (anOwner);
anOwner->SetSelected (aSelStatus == AIS_SS_Added);
} }
if (myAutoHilight) if (myAutoHilight)
@ -721,7 +716,6 @@ void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdate
aState->SetHilightStatus (Standard_True); aState->SetHilightStatus (Standard_True);
aState->SetHilightStyle (anObjSelStyle); aState->SetHilightStyle (anObjSelStyle);
} }
anOwner->SetSelected (Standard_True);
if (!anOwner->IsAutoHilight()) if (!anOwner->IsAutoHilight())
{ {
NCollection_Handle<SelectMgr_SequenceOfOwner> aSeq; NCollection_Handle<SelectMgr_SequenceOfOwner> aSeq;
@ -771,7 +765,6 @@ void AIS_InteractiveContext::UnhilightSelected (const Standard_Boolean theToUpda
myObjects.ChangeFind (anObj)->SetHilightStatus (Standard_False); myObjects.ChangeFind (anObj)->SetHilightStatus (Standard_False);
} }
anOwner->SetSelected (Standard_False);
anOwner->Unhilight (myMainPM); anOwner->Unhilight (myMainPM);
} }
@ -793,13 +786,6 @@ void AIS_InteractiveContext::ClearSelected (const Standard_Boolean theToUpdateVi
{ {
unhighlightSelected(); unhighlightSelected();
} }
else
{
for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
{
aSelIter.Value()->SetSelected (Standard_False);
}
}
mySelection->Clear(); mySelection->Clear();
if (myAutoHilight) if (myAutoHilight)
@ -861,7 +847,6 @@ void AIS_InteractiveContext::SetSelected (const Handle(AIS_InteractiveObject)& t
{ {
Unhilight (aSelectable, Standard_False); Unhilight (aSelectable, Standard_False);
} }
aSelOwner->SetSelected (Standard_False);
if (aSelOwner == aSelectable->GlobalSelOwner()) if (aSelOwner == aSelectable->GlobalSelOwner())
{ {
myObjects.ChangeFind (aSelectable)->SetHilightStatus (Standard_False); myObjects.ChangeFind (aSelectable)->SetHilightStatus (Standard_False);
@ -886,7 +871,6 @@ void AIS_InteractiveContext::SetSelected (const Handle(AIS_InteractiveObject)& t
HilightWithColor (theObject, anObjSelStyle, Standard_False); HilightWithColor (theObject, anObjSelStyle, Standard_False);
} }
} }
anOwner->SetSelected (Standard_True);
if (theToUpdateViewer) if (theToUpdateViewer)
UpdateCurrentViewer(); UpdateCurrentViewer();
@ -933,12 +917,10 @@ void AIS_InteractiveContext::SetSelected (const Handle(SelectMgr_EntityOwner)& t
if (!HighlightStyle (theOwner, aCustomStyle) || if (!HighlightStyle (theOwner, aCustomStyle) ||
(!aCustomStyle.IsNull() && aCustomStyle != anObjSelStyle)) (!aCustomStyle.IsNull() && aCustomStyle != anObjSelStyle))
{ {
theOwner->SetSelected (Standard_True);
highlightSelected (theOwner); highlightSelected (theOwner);
} }
} }
theOwner->SetSelected (Standard_True);
if (myAutoHilight && theOwner == anObject->GlobalSelOwner()) if (myAutoHilight && theOwner == anObject->GlobalSelOwner())
{ {
Handle(AIS_GlobalStatus)& aState = myObjects.ChangeFind (anObject); Handle(AIS_GlobalStatus)& aState = myObjects.ChangeFind (anObject);
@ -987,8 +969,7 @@ void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(SelectMgr_EntityO
if (!myFilters->IsOk(theOwner) && !theOwner->IsSelected()) if (!myFilters->IsOk(theOwner) && !theOwner->IsSelected())
return; return;
AIS_SelectStatus aSelStat = mySelection->Select (theOwner); mySelection->Select (theOwner);
theOwner->SetSelected (aSelStat == AIS_SS_Added);
if (myAutoHilight) if (myAutoHilight)
{ {

View File

@ -39,6 +39,11 @@ AIS_Selection::AIS_Selection()
//======================================================================= //=======================================================================
void AIS_Selection::Clear() void AIS_Selection::Clear()
{ {
for (AIS_NListOfEntityOwner::Iterator aSelIter (Objects()); aSelIter.More(); aSelIter.Next())
{
const Handle(SelectMgr_EntityOwner) anObject = aSelIter.Value();
anObject->SetSelected (Standard_False);
}
myresult.Clear(); myresult.Clear();
myResultMap.Clear(); myResultMap.Clear();
myIterator = AIS_NListOfEntityOwner::Iterator(); myIterator = AIS_NListOfEntityOwner::Iterator();
@ -61,6 +66,7 @@ AIS_SelectStatus AIS_Selection::Select (const Handle(SelectMgr_EntityOwner)& the
AIS_NListOfEntityOwner::Iterator aListIter; AIS_NListOfEntityOwner::Iterator aListIter;
myresult.Append (theObject, aListIter); myresult.Append (theObject, aListIter);
myResultMap.Bind (theObject, aListIter); myResultMap.Bind (theObject, aListIter);
theObject->SetSelected (Standard_True);
return AIS_SS_Added; return AIS_SS_Added;
} }
@ -87,6 +93,7 @@ AIS_SelectStatus AIS_Selection::Select (const Handle(SelectMgr_EntityOwner)& the
myresult.Remove (aListIter); myresult.Remove (aListIter);
myResultMap.UnBind (theObject); myResultMap.UnBind (theObject);
theObject->SetSelected (Standard_False);
// update list iterator for next object in <myresult> list if any // update list iterator for next object in <myresult> list if any
if (aListIter.More()) if (aListIter.More())
@ -120,5 +127,6 @@ AIS_SelectStatus AIS_Selection::AddSelect (const Handle(SelectMgr_EntityOwner)&
AIS_NListOfEntityOwner::Iterator aListIter; AIS_NListOfEntityOwner::Iterator aListIter;
myresult.Append (theObject, aListIter); myresult.Append (theObject, aListIter);
myResultMap.Bind (theObject, aListIter); myResultMap.Bind (theObject, aListIter);
theObject->SetSelected (Standard_True);
return AIS_SS_Added; return AIS_SS_Added;
} }