0030784: Visualization - check if selectable of owner in internal container in AIS_In...
[occt.git] / src / AIS / AIS_InteractiveContext_1.cxx
index 50257ac..7c9b44c 100644 (file)
 // Alternatively, this file may be used under the terms of Open CASCADE
 // commercial license or contractual agreement.
 
-#define UKI60826       //GG_161199     Use the requested selection color instead of default
-
-#define        IMP280200       //GG Don't returns a NULL shape in SelectedShape()
-//                     method when the current selected is a shape !
-
-#define BUC60814       //GG_300101     Idem UKI60826
-
-#define OCC138          //VTN Avoding infinit loop in AddOrRemoveCurrentObject method.
-
-#define OCC9657
-
-#include <AIS_InteractiveContext.jxx>
-#include <SelectMgr_EntityOwner.hxx>
-#include <AIS_Selection.hxx>
-#include <AIS_StatusOfDetection.hxx>
-#include <AIS_StatusOfPick.hxx>
 
 #include <AIS_DataMapIteratorOfDataMapOfIOStatus.hxx>
-#include <AIS_LocalContext.hxx>
 #include <AIS_GlobalStatus.hxx>
+#include <AIS_InteractiveContext.hxx>
+#include <AIS_InteractiveObject.hxx>
+#include <AIS_MapIteratorOfMapOfInteractive.hxx>
+#include <AIS_MapOfInteractive.hxx>
+#include <AIS_Selection.hxx>
 #include <AIS_Shape.hxx>
-
+#include <AIS_StatusOfDetection.hxx>
+#include <AIS_StatusOfPick.hxx>
 #include <Aspect_Grid.hxx>
-
+#include <Prs3d_BasicAspect.hxx>
+#include <Prs3d_LineAspect.hxx>
+#include <Prs3d_Presentation.hxx>
+#include <Quantity_Color.hxx>
+#include <Select3D_SensitiveEntity.hxx>
+#include <SelectMgr_EntityOwner.hxx>
+#include <SelectMgr_Filter.hxx>
+#include <SelectMgr_OrFilter.hxx>
+#include <SelectMgr_Selection.hxx>
+#include <SelectMgr_SelectionManager.hxx>
+#include <Standard_Transient.hxx>
+#include <StdSelect_BRepOwner.hxx>
+#include <StdSelect_ViewerSelector3d.hxx>
+#include <TCollection_AsciiString.hxx>
+#include <TCollection_ExtendedString.hxx>
+#include <TColStd_ListIteratorOfListOfInteger.hxx>
+#include <TopLoc_Location.hxx>
+#include <V3d_AmbientLight.hxx>
+#include <V3d_DirectionalLight.hxx>
 #include <V3d_Light.hxx>
 #include <V3d_PositionalLight.hxx>
 #include <V3d_SpotLight.hxx>
-#include <V3d_DirectionalLight.hxx>
-#include <V3d_AmbientLight.hxx>
+#include <V3d_View.hxx>
+#include <V3d_Viewer.hxx>
 
-#include <TColStd_ListIteratorOfListOfInteger.hxx>
-#include <SelectMgr_Selection.hxx>
-#include <SelectBasics_SensitiveEntity.hxx>
+typedef NCollection_DataMap<Handle(AIS_InteractiveObject), NCollection_Handle<SelectMgr_SequenceOfOwner> > AIS_MapOfObjSelectedOwners;
 
-#include <Prs3d_Presentation.hxx>
+namespace
+{
+  TopoDS_Shape AIS_InteractiveContext_myDummyShape;
+}
 
-#ifdef OCC9657
-#include <AIS_MapOfInteractive.hxx>
-#include <AIS_MapIteratorOfMapOfInteractive.hxx>
-#endif
+//=======================================================================
+//function : highlightWithColor
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::highlightWithColor (const Handle(SelectMgr_EntityOwner)& theOwner,
+                                                 const Handle(V3d_Viewer)& theViewer)
+{
+  const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
+  if (anObj.IsNull())
+  {
+    return;
+  }
+
+  const Handle(Prs3d_Drawer)& aStyle = getHiStyle (anObj, theOwner);
+  const Standard_Integer aHiMode = getHilightMode (anObj, aStyle, -1);
+
+  myMainPM->BeginImmediateDraw();
+  theOwner->HilightWithColor (myMainPM, aStyle, aHiMode);
+  myMainPM->EndImmediateDraw (theViewer.IsNull() ? myMainVwr : theViewer);
+}
+
+//=======================================================================
+//function : highlightSelected
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::highlightSelected (const Handle(SelectMgr_EntityOwner)& theOwner)
+{
+  AIS_NListOfEntityOwner anOwners;
+  const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
+  if (anObj.IsNull())
+  {
+    return;
+  }
+
+  if (!theOwner->IsAutoHilight())
+  {
+    SelectMgr_SequenceOfOwner aSeq;
+    for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
+    {
+      if (aSelIter.Value()->IsSameSelectable (anObj))
+      {
+        anOwners.Append (aSelIter.Value());
+      }
+    }
+  }
+  else
+  {
+    anOwners.Append (theOwner);
+  }
+  highlightOwners (anOwners);
+}
+
+//=======================================================================
+//function : highlightGlobal
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::highlightGlobal (const Handle(AIS_InteractiveObject)& theObj,
+                                              const Handle(Prs3d_Drawer)& theStyle,
+                                              const Standard_Integer theDispMode)
+{
+  if (theObj.IsNull())
+  {
+    return;
+  }
+
+  const Standard_Integer aHiMode = getHilightMode (theObj, theStyle, theDispMode);
+  const Handle(SelectMgr_EntityOwner)& aGlobOwner = theObj->GlobalSelOwner();
+
+  if (aGlobOwner.IsNull())
+  {
+    myMainPM->Color (theObj, theStyle, aHiMode);
+    return;
+  }
+
+  AIS_NListOfEntityOwner anOwners;
+  if (!aGlobOwner->IsAutoHilight())
+  {
+    SelectMgr_SequenceOfOwner aSeq;
+    for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
+    {
+      if (aSelIter.Value()->IsSameSelectable (theObj))
+      {
+        anOwners.Append (aSelIter.Value());
+      }
+    }
+  }
+  else
+  {
+    anOwners.Append (aGlobOwner);
+  }
+  highlightOwners (anOwners);
+}
+
+//=======================================================================
+//function : unhighlightSelected
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::unhighlightSelected (const Standard_Boolean theIsToHilightSubIntensity)
+{
+  unhighlightOwners (mySelection->Objects(), theIsToHilightSubIntensity);
+}
+
+//=======================================================================
+//function : unhighlightOwners
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::unhighlightOwners (const AIS_NListOfEntityOwner& theOwners,
+                                                const Standard_Boolean theIsToHilightSubIntensity)
+{
+  NCollection_IndexedMap<Handle(AIS_InteractiveObject)> anObjToClear;
+  for (AIS_NListOfEntityOwner::Iterator aSelIter (theOwners); aSelIter.More(); aSelIter.Next())
+  {
+    const Handle(SelectMgr_EntityOwner) anOwner = aSelIter.Value();
+    const Handle(AIS_InteractiveObject) anInteractive = Handle(AIS_InteractiveObject)::DownCast (anOwner->Selectable());
+    Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (anInteractive);
+    if (!aStatusPtr)
+    {
+      continue;
+    }
+
+    if (anOwner->IsAutoHilight())
+    {
+      anOwner->Unhilight (myMainPM);
+      if (theIsToHilightSubIntensity)
+      {
+        if ((*aStatusPtr)->IsSubIntensityOn())
+        {
+          const Standard_Integer aHiMode = getHilightMode (anInteractive, (*aStatusPtr)->HilightStyle(), (*aStatusPtr)->DisplayMode());
+          highlightWithSubintensity (anOwner, aHiMode);
+        }
+      }
+    }
+    else
+    {
+      anObjToClear.Add (anInteractive);
+    }
+    if (anOwner == anInteractive->GlobalSelOwner())
+    {
+      (*aStatusPtr)->SetHilightStatus (Standard_False);
+    }
+  }
+  for (NCollection_IndexedMap<Handle(AIS_InteractiveObject)>::Iterator anIter (anObjToClear); anIter.More(); anIter.Next())
+  {
+    const Handle(AIS_InteractiveObject)& anObj = anIter.Value();
+    myMainPM->Unhighlight (anObj);
+    anObj->ClearSelected();
+  }
+}
+
+//=======================================================================
+//function : unhighlightGlobal
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::unhighlightGlobal (const Handle(AIS_InteractiveObject)& theObj)
+{
+  if (theObj.IsNull())
+  {
+    return;
+  }
+
+  const Handle(SelectMgr_EntityOwner)& aGlobOwner = theObj->GlobalSelOwner();
+  if (aGlobOwner.IsNull())
+  {
+    myMainPM->Unhighlight (theObj);
+    return;
+  }
+
+  AIS_NListOfEntityOwner anOwners;
+  anOwners.Append (aGlobOwner);
+  unhighlightOwners (anOwners);
+}
+
+//=======================================================================
+//function : turnOnSubintensity
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::turnOnSubintensity (const Handle(AIS_InteractiveObject)& theObject,
+                                                 const Standard_Integer theDispMode,
+                                                 const Standard_Boolean theIsDisplayedOnly) const
+{
+  // the only differ with selection highlight is color, so sync transparency values
+  const Handle(Prs3d_Drawer)& aSubStyle = myStyles[Prs3d_TypeOfHighlight_SubIntensity];
+  aSubStyle->SetTransparency (myStyles[Prs3d_TypeOfHighlight_Selected]->Transparency());
+
+  if (theObject.IsNull())
+  {
+    for (AIS_DataMapIteratorOfDataMapOfIOStatus anObjsIter (myObjects); anObjsIter.More(); anObjsIter.Next())
+    {
+      const Handle(AIS_GlobalStatus)& aStatus = anObjsIter.Value();
+      if (aStatus->GraphicStatus() != AIS_DS_Displayed && theIsDisplayedOnly)
+        continue;
+
+      aStatus->SubIntensityOn();
+      myMainPM->Color (anObjsIter.Key(), aSubStyle, theDispMode != -1 ? theDispMode : aStatus->DisplayMode());
+    }
+  }
+  else
+  {
+    Handle(AIS_GlobalStatus) aStatus;
+    if (!myObjects.Find (theObject, aStatus))
+      return;
+
+    if (aStatus->GraphicStatus() != AIS_DS_Displayed && theIsDisplayedOnly)
+      return;
+
+    aStatus->SubIntensityOn();
+    myMainPM->Color (theObject, aSubStyle, theDispMode != -1 ? theDispMode : aStatus->DisplayMode());
+  }
+}
+
+//=======================================================================
+//function : highlightWithSubintensity
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::highlightWithSubintensity (const Handle(AIS_InteractiveObject)& theObject,
+                                                        const Standard_Integer theMode) const
+{
+  // the only differ with selection highlight is color, so
+  // sync transparency values
+  myStyles[Prs3d_TypeOfHighlight_SubIntensity]->SetTransparency (myStyles[Prs3d_TypeOfHighlight_Selected]->Transparency());
+
+  myMainPM->Color (theObject, myStyles[Prs3d_TypeOfHighlight_SubIntensity], theMode);
+}
+
+//=======================================================================
+//function : highlightWithSubintensity
+//purpose  :
+//=======================================================================
+void AIS_InteractiveContext::highlightWithSubintensity (const Handle(SelectMgr_EntityOwner)& theOwner,
+                                                        const Standard_Integer theMode) const
+{
+  // the only differ with selection highlight is color, so
+  // sync transparency values
+  myStyles[Prs3d_TypeOfHighlight_SubIntensity]->SetTransparency (myStyles[Prs3d_TypeOfHighlight_Selected]->Transparency());
+
+  theOwner->HilightWithColor (myMainPM, myStyles[Prs3d_TypeOfHighlight_SubIntensity], theMode);
+}
+
+//=======================================================================
+//function : isSlowHiStyle
+//purpose  :
+//=======================================================================
+Standard_Boolean AIS_InteractiveContext::isSlowHiStyle (const Handle(SelectMgr_EntityOwner)& theOwner,
+                                                        const Handle(V3d_Viewer)& theViewer) const
+{
+  if (const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable()))
+  {
+    const Handle(Prs3d_Drawer)& aHiStyle = getHiStyle (anObj, myLastPicked);
+    return aHiStyle->ZLayer() == Graphic3d_ZLayerId_UNKNOWN
+       || !theViewer->ZLayerSettings (aHiStyle->ZLayer()).IsImmediate();
+  }
+  return Standard_False;
+}
 
 //=======================================================================
 //function : MoveTo
@@ -64,60 +321,64 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
                                                       const Handle(V3d_View)& theView,
                                                       const Standard_Boolean  theToRedrawOnUpdate)
 {
-  if (HasOpenedContext())
-  {
-    myWasLastMain = Standard_True;
-    return myLocalContexts (myCurLocalIndex)->MoveTo (theXPix, theYPix, theView, theToRedrawOnUpdate);
-  }
-
-  myAISCurDetected = 0;
-  myAISDetectedSeq.Clear();
-
   if (theView->Viewer() != myMainVwr)
   {
-    return AIS_SOD_Error;
+    throw Standard_ProgramError ("AIS_InteractiveContext::MoveTo() - invalid argument");
   }
 
+  myCurDetected = 0;
+  myCurHighlighted = 0;
+  myDetectedSeq.Clear();
+  myLastActiveView = theView.get();
+
   // preliminaires
-  myLastPicked  = myLastinMain;
-  myWasLastMain = Standard_True;
   AIS_StatusOfDetection aStatus        = AIS_SOD_Nothing;
   Standard_Boolean      toUpdateViewer = Standard_False;
 
-  // allonzy
+  myFilters->SetDisabledObjects (theView->View()->HiddenObjects());
   myMainSel->Pick (theXPix, theYPix, theView);
 
   // filling of myAISDetectedSeq sequence storing information about detected AIS objects
   // (the objects must be AIS_Shapes)
   const Standard_Integer aDetectedNb = myMainSel->NbPicked();
   Standard_Integer aNewDetected = 0;
+  Standard_Boolean toIgnoreDetTop = Standard_False;
   for (Standard_Integer aDetIter = 1; aDetIter <= aDetectedNb; ++aDetIter)
   {
     Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aDetIter);
     if (anOwner.IsNull()
      || !myFilters->IsOk (anOwner))
     {
+      if (myPickingStrategy == SelectMgr_PickingStrategy_OnlyTopmost)
+      {
+        toIgnoreDetTop = Standard_True;
+      }
       continue;
     }
 
-    if (aNewDetected < 1)
+    if (aNewDetected < 1
+    && !toIgnoreDetTop)
     {
       aNewDetected = aDetIter;
     }
-    Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (anOwner->Selectable());
-    if (!anObj.IsNull())
-    {
-      myAISDetectedSeq.Append (anObj);
-    }
+
+    myDetectedSeq.Append (aDetIter);
   }
 
   if (aNewDetected >= 1)
   {
-    // does nothing if previously detected object is equal to the current one
+    myCurHighlighted = myDetectedSeq.Lower();
+
+    // Does nothing if previously detected object is equal to the current one.
+    // However in advanced selection modes the owners comparison
+    // is not effective because in that case only one owner manage the
+    // selection in current selection mode. It is necessary to check the current detected
+    // entity and hilight it only if the detected entity is not the same as
+    // previous detected (IsForcedHilight call)
     Handle(SelectMgr_EntityOwner) aNewPickedOwner = myMainSel->Picked (aNewDetected);
-    if (aNewPickedOwner->Selectable() == myLastPicked)
+    if (aNewPickedOwner == myLastPicked && !aNewPickedOwner->IsForcedHilight())
     {
-      return myLastPicked->State() == 1
+      return myLastPicked->IsSelected()
            ? AIS_SOD_Selected
            : AIS_SOD_OnlyOneDetected;
     }
@@ -127,80 +388,99 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
     // is needed only if myToHilightSelected flag is true. In this case previously detected
     // object has been already highlighted with myHilightColor during previous MoveTo() 
     // method call. As result it is necessary to rehighligt it with mySelectionColor.
-    if (!myLastPicked.IsNull())
+    if (!myLastPicked.IsNull() && myLastPicked->HasSelectable())
     {
-      const Standard_Integer aHiMod = myLastPicked->HasHilightMode() ? myLastPicked->HilightMode() : 0;
-      if (myLastPicked->State() != 1)
-      {
-        myMainPM->Unhighlight (myLastPicked, aHiMod);
-        toUpdateViewer = Standard_True;
-      }
-      else if (myToHilightSelected)
+      if (isSlowHiStyle (myLastPicked, theView->Viewer()))
       {
-        myMainPM->Color (myLastPicked, mySelectionColor, aHiMod);
-        toUpdateViewer = Standard_True;
+        theView->Viewer()->Invalidate();
       }
+
+      clearDynamicHighlight();
+      toUpdateViewer = Standard_True;
     }
 
     // initialize myLastPicked field with currently detected object
-    myLastPicked = Handle(AIS_InteractiveObject)::DownCast (aNewPickedOwner->Selectable());
-    myLastinMain = myLastPicked;
+    myLastPicked = aNewPickedOwner;
 
     // highlight detected object if it is not selected or myToHilightSelected flag is true
-    if (!myLastPicked.IsNull())
+    if (myLastPicked->HasSelectable())
     {
-      if (myLastPicked->State() != 1 || myToHilightSelected)
+      if (myAutoHilight
+       && (!myLastPicked->IsSelected()
+         || myToHilightSelected))
       {
-        const Standard_Integer aHiMod = myLastPicked->HasHilightMode() ? myLastPicked->HilightMode() : 0;
-        myMainPM->Color (myLastPicked, myHilightColor, aHiMod);
+        if (isSlowHiStyle (myLastPicked, theView->Viewer()))
+        {
+          theView->Viewer()->Invalidate();
+        }
+
+        highlightWithColor (myLastPicked, theView->Viewer());
         toUpdateViewer = Standard_True;
       }
 
-      aStatus = myLastPicked->State() == 1
+      aStatus = myLastPicked->IsSelected()
               ? AIS_SOD_Selected
               : AIS_SOD_OnlyOneDetected;
     }
   }
-  else 
+  else
   {
     // previously detected object is unhilighted if it is not selected or hilighted
     // with selection color if it is selected
     aStatus = AIS_SOD_Nothing;
-    if (!myLastPicked.IsNull())
+    if (myAutoHilight
+    && !myLastPicked.IsNull()
+     && myLastPicked->HasSelectable())
     {
-      Standard_Integer aHiMod = myLastPicked->HasHilightMode() ? myLastPicked->HilightMode() : 0;
-      if (myLastPicked->State() != 1)
-      {
-        myMainPM->Unhighlight (myLastPicked, aHiMod);
-        toUpdateViewer = Standard_True;
-      }
-      else if (myToHilightSelected)
+      if (isSlowHiStyle (myLastPicked, theView->Viewer()))
       {
-        myMainPM->Color (myLastPicked, mySelectionColor, aHiMod);
-        toUpdateViewer = Standard_True;
+        theView->Viewer()->Invalidate();
       }
+
+      clearDynamicHighlight();
+      toUpdateViewer = Standard_True;
     }
 
-    myLastinMain.Nullify();
     myLastPicked.Nullify();
   }
 
-  if (toUpdateViewer)
+  if (toUpdateViewer
+   && theToRedrawOnUpdate)
   {
-    if (theToRedrawOnUpdate)
+    if (theView->ComputedMode())
     {
       theView->Viewer()->Update();
     }
     else
     {
-      theView->Viewer()->Invalidate();
+      if (theView->IsInvalidated())
+      {
+        theView->Viewer()->Redraw();
+      }
+      else
+      {
+        theView->Viewer()->RedrawImmediate();
+      }
     }
   }
 
-  mylastmoveview = theView;
   return aStatus;
 }
 
+//=======================================================================
+//function : AddSelect
+//purpose  : 
+//=======================================================================
+AIS_StatusOfPick AIS_InteractiveContext::AddSelect (const Handle(SelectMgr_EntityOwner)& theObject)
+{
+  mySelection->AddSelect (theObject);
+
+  Standard_Integer aSelNum = NbSelected();
+  return (aSelNum == 0) ? AIS_SOP_NothingSelected
+                        : (aSelNum == 1) ? AIS_SOP_OneSelected
+                                         : AIS_SOP_SeveralSelected;
+}
+
 //=======================================================================
 //function : Select
 //purpose  : 
@@ -212,50 +492,31 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const Standard_Integer  theXPMi
                                                  const Handle(V3d_View)& theView,
                                                  const Standard_Boolean  toUpdateViewer)
 {
-  // all objects detected by the selector are taken, previous current objects are emptied,
-  // new objects are put...
-
-  if (HasOpenedContext())
+  if (theView->Viewer() != myMainVwr)
   {
-    return myLocalContexts(myCurLocalIndex)->Select (theXPMin, theYPMin,
-                                                     theXPMax, theYPMax,
-                                                     theView, toUpdateViewer);
+    throw Standard_ProgramError ("AIS_InteractiveContext::Select() - invalid argument");
   }
 
-  ClearCurrents (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-
-  if (theView->Viewer() == myMainVwr)
+  // all objects detected by the selector are taken, previous current objects are emptied,
+  // new objects are put...
+  ClearSelected (Standard_False);
+  myLastActiveView = theView.get();
+  myMainSel->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    aSelector = myMainSel;
-    myWasLastMain = Standard_True;
-  }
-
-  aSelector->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
-  AIS_Selection::SetCurrentSelection (myCurrentName.ToCString());
+    const Handle(SelectMgr_EntityOwner)& aCurOwner = myMainSel->Picked (aPickIter);
+    if (aCurOwner.IsNull() || !aCurOwner->HasSelectable() || !myFilters->IsOk (aCurOwner))
+      continue;
 
-  AIS_MapOfInteractive anObjectsToSelect;
-  for (aSelector->Init(); aSelector->More(); aSelector->Next())
-  {
-    Handle(AIS_InteractiveObject) anObj = 
-      Handle(AIS_InteractiveObject)::DownCast (aSelector->Picked()->Selectable());
-    if (!anObj.IsNull())
-    {
-      anObjectsToSelect.Add (anObj);
-    }
+    mySelection->Select (aCurOwner);
   }
 
-  AIS_MapIteratorOfMapOfInteractive anIt (anObjectsToSelect);
-  for ( ; anIt.More(); anIt.Next())
+  if (myAutoHilight)
   {
-    AIS_Selection::Select (anIt.Key());
-    anIt.Key()->State (1);
+    HilightSelected (toUpdateViewer);
   }
 
-  HilightCurrents (toUpdateViewer);
-
-  Standard_Integer aSelNum = NbCurrents();
+  Standard_Integer aSelNum = NbSelected();
 
   return (aSelNum == 0) ? AIS_SOP_NothingSelected
                         : (aSelNum == 1) ? AIS_SOP_OneSelected
@@ -271,48 +532,31 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const TColgp_Array1OfPnt2d& the
                                                  const Handle(V3d_View)&     theView,
                                                  const Standard_Boolean      toUpdateViewer)
 {
-  // all objects detected by the selector are taken, previous current objects are emptied,
-  // new objects are put...
-
-  if (HasOpenedContext())
+  if (theView->Viewer() != myMainVwr)
   {
-    return myLocalContexts(myCurLocalIndex)->Select (thePolyline, theView, toUpdateViewer);
+    throw Standard_ProgramError ("AIS_InteractiveContext::Select() - invalid argument");
   }
 
-  ClearCurrents (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-
-  if (theView->Viewer() == myMainVwr)
+  // all objects detected by the selector are taken, previous current objects are emptied,
+  // new objects are put...
+  ClearSelected (Standard_False);
+  myLastActiveView = theView.get();
+  myMainSel->Pick (thePolyline, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    aSelector = myMainSel;
-    myWasLastMain = Standard_True;
-  }
-
-  aSelector->Pick (thePolyline, theView);
-  AIS_Selection::SetCurrentSelection (myCurrentName.ToCString());
+    const Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aPickIter);
+    if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
+      continue;
 
-  AIS_MapOfInteractive anObjectsToSelect;
-  for (aSelector->Init(); aSelector->More(); aSelector->Next())
-  {
-    Handle(AIS_InteractiveObject) anObj = 
-      Handle( AIS_InteractiveObject )::DownCast (aSelector->Picked()->Selectable());
-    if (!anObj.IsNull())
-    {
-      anObjectsToSelect.Add (anObj);
-    }
+    mySelection->Select (anOwner);
   }
 
-  AIS_MapIteratorOfMapOfInteractive anIt (anObjectsToSelect);
-  for ( ; anIt.More(); anIt.Next())
+  if (myAutoHilight)
   {
-    AIS_Selection::Select (anIt.Key());
-    anIt.Key()->State (1);
+    HilightSelected (toUpdateViewer);
   }
 
-  HilightCurrents (toUpdateViewer);
-
-  Standard_Integer aSelNum = NbCurrents();
+  Standard_Integer aSelNum = NbSelected();
 
   return (aSelNum == 0) ? AIS_SOP_NothingSelected
                         : (aSelNum == 1) ? AIS_SOP_OneSelected
@@ -326,24 +570,28 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const TColgp_Array1OfPnt2d& the
 //=======================================================================
 AIS_StatusOfPick AIS_InteractiveContext::Select (const Standard_Boolean toUpdateViewer)
 {
-  if (HasOpenedContext())
+  if (!myLastPicked.IsNull())
   {
-    if(myWasLastMain)
+    Graphic3d_Vec2i aMousePos (-1, -1);
+    if (myMainSel->GetManager().GetActiveSelectionType() == SelectBasics_SelectingVolumeManager::Point)
     {
-      return myLocalContexts(myCurLocalIndex)->Select (toUpdateViewer);
+      aMousePos.SetValues ((Standard_Integer )myMainSel->GetManager().GetMousePosition().X(),
+                           (Standard_Integer )myMainSel->GetManager().GetMousePosition().Y());
     }
-    else
+    if (myLastPicked->HandleMouseClick (aMousePos, Aspect_VKeyMouse_LeftButton, Aspect_VKeyFlags_NONE, false))
     {
-      myLocalContexts(myCurLocalIndex)->SetSelected (myLastPicked, toUpdateViewer);
-      return AIS_SOP_OneSelected;
+      return AIS_SOP_NothingSelected;
     }
-  }
 
-  if (myWasLastMain && !myLastinMain.IsNull())
-  {
-    if(myLastinMain->State() != 1)
+    if (myAutoHilight)
+    {
+      clearDynamicHighlight();
+    }
+    if (!myLastPicked->IsSelected()
+      || myLastPicked->IsForcedHilight()
+      || NbSelected() > 1)
     {
-      SetCurrentObject (myLastinMain,Standard_False);
+      SetSelected (myLastPicked, Standard_False);
       if(toUpdateViewer)
       {
         UpdateCurrentViewer();
@@ -352,28 +600,10 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const Standard_Boolean toUpdate
   }
   else
   {
-    AIS_Selection::SetCurrentSelection (myCurrentName.ToCString());
-    Handle(AIS_Selection) aSelection = AIS_Selection::CurrentSelection();
-    Handle(AIS_InteractiveObject) anObj;
-    for (aSelection->Init(); aSelection->More(); aSelection->Next())
-    {
-      anObj = Handle(AIS_InteractiveObject)::DownCast (aSelection->Value());
-      anObj->State (0);
-      Unhilight (anObj,Standard_False);
-      if (myObjects.IsBound (anObj) && myObjects(anObj)->IsSubIntensityOn())
-      {
-        HilightWithColor (anObj, mySubIntensity, Standard_False);
-      }
-    }
-
-    AIS_Selection::Select();
-    if (toUpdateViewer && myWasLastMain)
-    {
-        UpdateCurrentViewer();
-    }
+    ClearSelected (toUpdateViewer);
   }
 
-  Standard_Integer aSelNum = NbCurrents();
+  Standard_Integer aSelNum = NbSelected();
 
   return (aSelNum == 0) ? AIS_SOP_NothingSelected
                         : (aSelNum == 1) ? AIS_SOP_OneSelected
@@ -386,34 +616,21 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const Standard_Boolean toUpdate
 //=======================================================================
 AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const Standard_Boolean toUpdateViewer)
 {
-  if (HasOpenedContext())
+  if (myAutoHilight)
   {
-    if(myWasLastMain)
-    {
-      return myLocalContexts (myCurLocalIndex)->ShiftSelect (toUpdateViewer);
-    }
-    else
-    {
-      myLocalContexts (myCurLocalIndex)->AddOrRemoveSelected (myLastPicked, toUpdateViewer);
-
-      Standard_Integer aSelNum = NbSelected();
-      return (aSelNum == 0) ? AIS_SOP_NothingSelected
-                            : (aSelNum == 1) ? AIS_SOP_OneSelected
-                                             : AIS_SOP_SeveralSelected;
-    }
+    clearDynamicHighlight();
   }
-
-  if (myWasLastMain && !myLastinMain.IsNull())
+  if (!myLastPicked.IsNull())
   {
-    AddOrRemoveCurrentObject (myLastinMain, toUpdateViewer);
+    AddOrRemoveSelected (myLastPicked, toUpdateViewer);
   }
 
-  Standard_Integer aCurrentSelNum = NbCurrents();
+  Standard_Integer aSelNum = NbSelected();
 
-  return (aCurrentSelNum == 0) ? AIS_SOP_NothingSelected
-                               : (aCurrentSelNum == 1) ? AIS_SOP_OneSelected
-                                                       : AIS_SOP_SeveralSelected;
-}
+  return (aSelNum == 0) ? AIS_SOP_NothingSelected
+                        : (aSelNum == 1) ? AIS_SOP_OneSelected
+                        : AIS_SOP_SeveralSelected;
+}
 
 //=======================================================================
 //function : ShiftSelect
@@ -426,41 +643,32 @@ AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const Standard_Integer the
                                                       const Handle(V3d_View)& theView,
                                                       const Standard_Boolean toUpdateViewer)
 {
-  if (HasOpenedContext())
+  if (theView->Viewer() != myMainVwr)
   {
-    return myLocalContexts(myCurLocalIndex)->ShiftSelect (theXPMin, theYPMin, theXPMax, theYPMax,
-                                                          theView, toUpdateViewer);
+    throw Standard_ProgramError ("AIS_InteractiveContext::ShiftSelect() - invalid argument");
   }
 
-  UnhilightCurrents (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-  if (theView->Viewer() == myMainVwr)
+  myLastActiveView = theView.get();
+  if (myAutoHilight)
   {
-    aSelector = myMainSel;
-    myWasLastMain = Standard_True;
+    UnhilightSelected (Standard_False);
   }
-  else
+  myMainSel->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    return AIS_SOP_NothingSelected;
+    const Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aPickIter);
+    if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
+      continue;
+
+    mySelection->Select (anOwner);
   }
 
-  aSelector->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
-  AIS_Selection::SetCurrentSelection (myCurrentName.ToCString());
-  for (aSelector->Init(); aSelector->More(); aSelector->Next())
+  if (myAutoHilight)
   {
-    Handle(AIS_InteractiveObject) anObjToSelect =  Handle(AIS_InteractiveObject)::DownCast (aSelector->Picked()->Selectable());
-    if (!anObjToSelect.IsNull())
-    {
-      AIS_SelectStatus aSelStatus = AIS_Selection::Select (anObjToSelect);
-      Standard_Integer aState = (aSelStatus == AIS_SS_Added) ? 1 : 0;
-      anObjToSelect->State (aState);
-    }
+    HilightSelected (toUpdateViewer);
   }
 
-  HilightCurrents (toUpdateViewer);
-
-  Standard_Integer aSelNum = NbCurrents();
+  Standard_Integer aSelNum = NbSelected();
 
   return (aSelNum == 0) ? AIS_SOP_NothingSelected
                         : (aSelNum == 1) ? AIS_SOP_OneSelected
@@ -476,42 +684,32 @@ AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const TColgp_Array1OfPnt2d
                                                       const Handle(V3d_View)& theView,
                                                       const Standard_Boolean toUpdateViewer)
 {
-  if (HasOpenedContext())
+  if (theView->Viewer() != myMainVwr)
   {
-    return myLocalContexts(myCurLocalIndex)->ShiftSelect (thePolyline, theView, toUpdateViewer);
+    throw Standard_ProgramError ("AIS_InteractiveContext::ShiftSelect() - invalid argument");
   }
 
-  UnhilightCurrents (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-
-  if (theView->Viewer() == myMainVwr)
+  myLastActiveView = theView.get();
+  if (myAutoHilight)
   {
-    aSelector= myMainSel;
-    myWasLastMain = Standard_True;
+    UnhilightSelected (Standard_False);
   }
-  else
+  myMainSel->Pick (thePolyline, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    return AIS_SOP_NothingSelected;
-  }
+    const Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aPickIter);
+    if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
+      continue;
 
-  aSelector->Pick (thePolyline, theView);
+    mySelection->Select (anOwner);
+  }
 
-  AIS_Selection::SetCurrentSelection (myCurrentName.ToCString());
-  for (aSelector->Init(); aSelector->More(); aSelector->Next())
+  if (myAutoHilight)
   {
-    Handle(AIS_InteractiveObject) anObjToSelect = Handle(AIS_InteractiveObject)::DownCast (aSelector->Picked()->Selectable());
-    if (!anObjToSelect.IsNull())
-    {
-      AIS_SelectStatus aSelStatus = AIS_Selection::Select (anObjToSelect);
-      Standard_Integer aState = (aSelStatus == AIS_SS_Added ) ? 1 : 0;
-      anObjToSelect->State (aState);
-    }
+    HilightSelected (toUpdateViewer);
   }
 
-  HilightCurrents (toUpdateViewer);
-
-  Standard_Integer aSelNum = NbCurrents();
+  Standard_Integer aSelNum = NbSelected();
 
   return (aSelNum == 0) ? AIS_SOP_NothingSelected
                         : (aSelNum == 1) ? AIS_SOP_OneSelected
@@ -519,739 +717,492 @@ AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const TColgp_Array1OfPnt2d
 }
 
 //=======================================================================
-//function : SetCurrentObject
-//purpose  : 
+//function : HilightSelected
+//purpose  :
 //=======================================================================
-void AIS_InteractiveContext::SetCurrentObject(const Handle(AIS_InteractiveObject)& anIObj,
-                                             const Standard_Boolean updateviewer)
+void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdateViewer)
 {
-  // single case processing...
-  if(NbCurrents()==1 && anIObj->State()==1){
-    Quantity_NameOfColor HiCol;
-    Standard_Boolean HasHiCol;
-    if(IsHilighted(anIObj,HasHiCol,HiCol)){
-      if(HasHiCol && HiCol!= mySelectionColor) {
-#ifdef UKI60826
-       HilightWithColor(anIObj,mySelectionColor,updateviewer);
-#else
-       Hilight(anIObj,updateviewer);
-#endif
-      }
-    }
-    return;
-  }
-
-
-  // 
-  if(!HasOpenedContext()) {
-    if(anIObj.IsNull()) return;
-    if(!myObjects.IsBound(anIObj)) 
-      Display(anIObj,Standard_False);
-    
-    AIS_Selection::SetCurrentSelection(myCurrentName.ToCString());
-    Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-    Handle(Standard_Transient) TR;
-    Handle(AIS_InteractiveObject) IO;
-    sel->Init();
-    while (sel->More()) {
-      TR = sel->Value();
-      IO = *((Handle(AIS_InteractiveObject)*)&TR);
-      Unhilight(IO,Standard_False);
-      IO->State(0);
-      sel->Next();
-    }
-    
-    // added to avoid untimely viewer update...
-    AIS_Selection::ClearAndSelect(anIObj);
-    anIObj->State(1);
-    Quantity_NameOfColor HiCol;
-    Standard_Boolean HasHiCol;
-    if(IsHilighted(anIObj,HasHiCol,HiCol)){
-      if(HasHiCol && HiCol!= mySelectionColor) {
-#ifdef UKI60826
-         HilightWithColor(anIObj,mySelectionColor,Standard_False);
-#else
-         Hilight(anIObj,Standard_False);
-#endif
-      }
-    }
-    else{
-#ifdef UKI60826
-       HilightWithColor(anIObj,mySelectionColor,Standard_False);
-#else
-      Hilight(anIObj,Standard_False);
-#endif
-    }
-    if (updateviewer) 
-      UpdateCurrentViewer();
-  }
-  else{
-#ifdef OCCT_DEBUG
-    cout<<"Nothing Done : Opened Local Context"<<endl;
-#endif
-  }
-}
+  // In case of selection without using local context
+  clearDynamicHighlight();
 
-//=======================================================================
-//function : AddOrRemoveCurrentObject
-//purpose  : 
-//=======================================================================
+  highlightOwners (mySelection->Objects());
 
-void AIS_InteractiveContext::
-AddOrRemoveCurrentObject(const Handle(AIS_InteractiveObject)& anIObj,
-                        const Standard_Boolean updateviewer)
-{
-  if(anIObj.IsNull()) return;
-//OCC5682 to remove an object from neutral point even if Local Context is opened (Remove method)
-  if(!HasOpenedContext() /*OCC5682*/|| myObjects.IsBound(anIObj)) {
-    
-    AIS_Selection::SetCurrentSelection(myCurrentName.ToCString());
-    Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-
-    AIS_SelectStatus SelStat = AIS_Selection::Select(anIObj);
-    
-    Standard_Integer mod = (SelStat==AIS_SS_Added) ? 1 : 0;
-    anIObj->State(mod);
-    if(mod==1)
-#ifdef BUC60814
-      HilightWithColor(anIObj,mySelectionColor,Standard_False);
-#else
-      Hilight(anIObj,Standard_False);
-#endif
-    else 
-      Unhilight(anIObj,Standard_False);
-    
-    
-    if(updateviewer) 
-      UpdateCurrentViewer();
-  }
-  else{
-#ifdef OCCT_DEBUG
-    cout<<"Nothing Done : Opened Local Context"<<endl;
-#endif
-  }
-}
-//=======================================================================
-//function : UpdateCurrent
-//purpose  : 
-//=======================================================================
-
-void AIS_InteractiveContext::UpdateCurrent()
-{
-  HilightCurrents();
+  if (theToUpdateViewer)
+    UpdateCurrentViewer();
 }
 
 //=======================================================================
-//function : IsCurrent
-//purpose  : 
+//function : highlightOwners
+//purpose  :
 //=======================================================================
-
-Standard_Boolean AIS_InteractiveContext::IsCurrent(const Handle(AIS_InteractiveObject)& anIObj) const 
+void AIS_InteractiveContext::highlightOwners (const AIS_NListOfEntityOwner& theOwners)
 {
+  AIS_MapOfObjSelectedOwners anObjOwnerMap;
+  for (AIS_NListOfEntityOwner::Iterator aSelIter (theOwners); aSelIter.More(); aSelIter.Next())
+  {
+    const Handle(SelectMgr_EntityOwner) anOwner = aSelIter.Value();
+    const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (anOwner->Selectable());
+    if (anObj.IsNull())
+      continue;
 
-  if (anIObj.IsNull()) return Standard_False;
-  return (anIObj->State()==1);
-  
-  //   Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-  //   sel->Init();
-  //   while (sel->More()) {
-  //     if (anIObj == sel->Value()) return Standard_True;
-  //     sel->Next();
-  //   }
-  //   return Standard_False;
-
-}
-
-//=======================================================================
-//function : InitCurrent
-//purpose  : 
-//=======================================================================
+    const Handle(Prs3d_Drawer)& anObjSelStyle = getSelStyle (anObj, anOwner);
+    Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (anObj);
+    if (!aStatusPtr)
+    {
+      continue;
+    }
+    if (anOwner == anObj->GlobalSelOwner())
+    {
+      (*aStatusPtr)->SetHilightStatus (Standard_True);
+      (*aStatusPtr)->SetHilightStyle (anObjSelStyle);
+    }
+    if (!anOwner->IsAutoHilight())
+    {
+      NCollection_Handle<SelectMgr_SequenceOfOwner> aSeq;
+      if (anObjOwnerMap.Find (anObj, aSeq))
+      {
+        aSeq->Append (anOwner);
+      }
+      else
+      {
+        aSeq = new SelectMgr_SequenceOfOwner();
+        aSeq->Append (anOwner);
+        anObjOwnerMap.Bind (anObj, aSeq);
+      }
+    }
+    else
+    {
+      const Standard_Integer aHiMode = getHilightMode (anObj, anObjSelStyle, (*aStatusPtr)->DisplayMode());
+      anOwner->HilightWithColor (myMainPM, anObjSelStyle, aHiMode);
+    }
+  }
 
-void AIS_InteractiveContext::InitCurrent()
-{
-  AIS_Selection::Selection(myCurrentName.ToCString())->Init();
+  if (!anObjOwnerMap.IsEmpty())
+  {
+    for (AIS_MapOfObjSelectedOwners::Iterator anIter (anObjOwnerMap); anIter.More(); anIter.Next())
+    {
+      anIter.Key()->HilightSelected (myMainPM, *anIter.Value());
+    }
+    anObjOwnerMap.Clear();
+  }
 }
 
 //=======================================================================
-//function : MoreCurrent
-//purpose  : 
+//function : UnhilightSelected
+//purpose  :
 //=======================================================================
-
-Standard_Boolean AIS_InteractiveContext::MoreCurrent() const 
+void AIS_InteractiveContext::UnhilightSelected (const Standard_Boolean theToUpdateViewer)
 {
-  return AIS_Selection::Selection(myCurrentName.ToCString())->More();
+  unhighlightSelected();
 
+  if (theToUpdateViewer)
+    UpdateCurrentViewer();
 }
 
-//=======================================================================
-//function : NextCurrent
-//purpose  : 
-//=======================================================================
-
-void AIS_InteractiveContext::NextCurrent()
-{
-  AIS_Selection::Selection(myCurrentName.ToCString())->Next();
-}
 
 //=======================================================================
-//function : Current
-//purpose  : 
+//function : ClearSelected
+//purpose  :
 //=======================================================================
-
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::Current() const 
+void AIS_InteractiveContext::ClearSelected (const Standard_Boolean theToUpdateViewer)
 {
-  Handle(Standard_Transient) TR = AIS_Selection::Selection(myCurrentName.ToCString())->Value();
-  Handle(AIS_InteractiveObject) IO = *((Handle(AIS_InteractiveObject)*)&TR);
-  return IO;
-}
+  if (NbSelected() == 0)
+    return;
 
-//=======================================================================
-//function : FirstCurrentObject
-//purpose  : 
-//=======================================================================
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::FirstCurrentObject()  
-{
-  Handle(AIS_InteractiveObject) IO ;
-  InitCurrent();
-  if(MoreCurrent()){
-    return Current();
+  if (myAutoHilight)
+  {
+    unhighlightSelected();
   }
-  return IO;
-}
 
-//=======================================================================
-//function : NbCurrents
-//purpose  : 
-//=======================================================================
-Standard_Integer AIS_InteractiveContext::NbCurrents()
-{
-  Standard_Integer i(0);
-  for(InitCurrent();MoreCurrent();NextCurrent())
-    {i++;}
-  return i;
-}
+  mySelection->Clear();
+  if (myAutoHilight)
+  {
+    clearDynamicHighlight();
+  }
 
-//=======================================================================
-//function : HilightCurrents
-//purpose  : 
-//=======================================================================
-void AIS_InteractiveContext::HilightCurrents(const Standard_Boolean updateviewer)
-{
-  AIS_Selection::SetCurrentSelection(myCurrentName.ToCString());
-  Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-  Handle(Standard_Transient) TR;
-  Handle(AIS_InteractiveObject) IO;
-  sel->Init();
-  while (sel->More()) {
-    TR = sel->Value();
-    IO = *((Handle(AIS_InteractiveObject)*)&TR);
-#ifdef BUC60814
-    HilightWithColor(IO,mySelectionColor,Standard_False);
-#else
-    Hilight(IO,Standard_False);
-#endif
-    sel->Next();
-  }
-  if(updateviewer) 
+  if (theToUpdateViewer)
     UpdateCurrentViewer();
 }
 
 //=======================================================================
-//function : UnhilightCurrents
-//purpose  : 
+//function : SetSelected
+//purpose  : Sets the whole object as selected and highlights it with selection color
 //=======================================================================
-
-void AIS_InteractiveContext::UnhilightCurrents(const Standard_Boolean updateviewer)
+void AIS_InteractiveContext::SetSelected (const Handle(AIS_InteractiveObject)& theObject,
+                                          const Standard_Boolean theToUpdateViewer)
 {
-  AIS_Selection::SetCurrentSelection(myCurrentName.ToCString());
-  Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-  Handle(Standard_Transient) TR;
-  Handle(AIS_InteractiveObject) IO;
-  sel->Init();
-  while (sel->More()) {
-    TR = sel->Value();
-    IO = *((Handle(AIS_InteractiveObject)*)&TR);
-    Unhilight(IO,Standard_False);
-    sel->Next();
-  }
-  if(updateviewer) 
-    UpdateCurrentViewer();
-}
+  if (theObject.IsNull())
+  {
+    return;
+  }
 
-//=======================================================================
-//function : ClearCurrents
-//purpose  : 
-//=======================================================================
+  if (!myObjects.IsBound (theObject))
+  {
+    return;
+  }
 
-void AIS_InteractiveContext::ClearCurrents(const Standard_Boolean updateviewer)
-{
-  if(NbCurrents()==0) return;
-  AIS_Selection::SetCurrentSelection(myCurrentName.ToCString());
-  Handle(AIS_Selection) S = AIS_Selection::CurrentSelection();
-  Handle(Standard_Transient) Tr;
-  Handle(AIS_InteractiveObject) IO;
-  for(S->Init();S->More();S->Next()){
-    Tr = S->Value();
-    IO = (*((Handle(AIS_InteractiveObject)*)&Tr));
-    IO->State(0);
-    Unhilight(IO,Standard_False);
-  }
-  AIS_Selection::Select();
-  if(updateviewer)
-    UpdateCurrentViewer();
-}
+  Handle(SelectMgr_EntityOwner) anOwner = theObject->GlobalSelOwner();
+  if (anOwner.IsNull())
+  {
+    return;
+  }
 
+  const Handle(Prs3d_Drawer)& anObjSelStyle = getSelStyle (theObject, anOwner);
+  if (NbSelected() == 1 && myObjects (theObject)->IsHilighted() && myAutoHilight)
+  {
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (HighlightStyle (theObject, aCustomStyle))
+    {
+      if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
+      {
+        HilightWithColor (theObject, anObjSelStyle, theToUpdateViewer);
+      }
+    }
+    return;
+  }
 
-//=======================================================================
-//function : HilightSelected
-//purpose  : 
-//=======================================================================
+  for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
+  {
+    const Handle(SelectMgr_EntityOwner)& aSelOwner = aSelIter.Value();
+    if (!myFilters->IsOk (aSelOwner))
+    {
+      continue;
+    }
 
-void AIS_InteractiveContext::HilightSelected(const Standard_Boolean updateviewer)
-{
-  if(!HasOpenedContext()){
-    AIS_Selection::SetCurrentSelection(mySelectionName.ToCString());
-    Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-    Handle(Standard_Transient) TR;
-    Handle(AIS_InteractiveObject) IO;
-    sel->Init();
-    while (sel->More()) {
-      TR = sel->Value();
-      IO = *((Handle(AIS_InteractiveObject)*)&TR);
-#ifdef BUC60814
-      HilightWithColor(IO,mySelectionColor,Standard_False);
-#else
-      Hilight(IO,Standard_False);
-#endif
-      sel->Next();
+    Handle(AIS_InteractiveObject) aSelectable = Handle(AIS_InteractiveObject)::DownCast (aSelOwner->Selectable());
+    if (myAutoHilight)
+    {
+      Unhilight (aSelectable, Standard_False);
     }
-  }
-  else
+    if (aSelOwner == aSelectable->GlobalSelOwner())
     {
-      myLocalContexts(myCurLocalIndex)->HilightPicked(updateviewer);
+      if (Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (aSelectable))
+      {
+        (*aStatusPtr)->SetHilightStatus (Standard_False);
+      }
     }
-  if(updateviewer)
-    UpdateCurrentViewer();
-}
+  }
 
-//=======================================================================
-//function : UnhilightSelected
-//purpose  : 
-//=======================================================================
+  // added to avoid untimely viewer update...
+  mySelection->ClearAndSelect (anOwner);
 
-void AIS_InteractiveContext::UnhilightSelected(const Standard_Boolean updateviewer)
-{
-  if(!HasOpenedContext()){
-    AIS_Selection::SetCurrentSelection(mySelectionName.ToCString());
-    Handle(AIS_Selection) sel = AIS_Selection::Selection(myCurrentName.ToCString());
-    Handle(Standard_Transient) TR;
-    Handle(AIS_InteractiveObject) IO;
-    sel->Init();
-    while (sel->More()) {
-      TR = sel->Value();
-      IO = *((Handle(AIS_InteractiveObject)*)&TR);
-      Unhilight(IO,Standard_False);
-      sel->Next();
+  if (myAutoHilight)
+  {
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (HighlightStyle (theObject, aCustomStyle))
+    {
+      if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
+      {
+        HilightWithColor (theObject, anObjSelStyle, Standard_False);
+      }
     }
-    if(updateviewer)
-      UpdateCurrentViewer();
-  }
-  else
+    else
     {
-      myLocalContexts(myCurLocalIndex)->UnhilightPicked(updateviewer);
+      HilightWithColor (theObject, anObjSelStyle, Standard_False);
     }
-}
+  }
 
+  if (theToUpdateViewer)
+    UpdateCurrentViewer();
+}
 
 //=======================================================================
-//function : ClearSelected
-//purpose  : 
+//function : SetSelected
+//purpose  : Sets the whole object as selected and highlights it with selection color
 //=======================================================================
-
-void AIS_InteractiveContext::ClearSelected(const Standard_Boolean updateviewer)
+void AIS_InteractiveContext::SetSelected (const Handle(SelectMgr_EntityOwner)& theOwner,
+                                          const Standard_Boolean theToUpdateViewer)
 {
-  if(!HasOpenedContext())
-    ClearCurrents(updateviewer);
-  else 
-    myLocalContexts(myCurLocalIndex)->ClearSelected(updateviewer);
-  
-}
+  if (theOwner.IsNull() || !theOwner->HasSelectable() || !myFilters->IsOk (theOwner))
+    return;
 
+  const Handle(AIS_InteractiveObject) anObject = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
+  const Handle(Prs3d_Drawer)& anObjSelStyle = getSelStyle (anObject, theOwner);
+  if (NbSelected() == 1 && theOwner->IsSelected() && !theOwner->IsForcedHilight())
+  {
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (myAutoHilight && HighlightStyle (theOwner, aCustomStyle))
+    {
+      if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
+      {
+        const Standard_Integer aHiMode = anObject->HasHilightMode() ? anObject->HilightMode() : 0;
+        theOwner->HilightWithColor (myMainPM, anObjSelStyle, aHiMode);
+      }
+    }
+    return;
+  }
 
-//=======================================================================
-//function : SetSelectedCurrent
-//purpose  : 
-//=======================================================================
+  if (!myObjects.IsBound (anObject))
+    return;
 
-void AIS_InteractiveContext::SetSelectedCurrent()
-{
+  if (myAutoHilight)
+  {
+    unhighlightSelected();
+  }
 
+  mySelection->ClearAndSelect (theOwner);
+  if (myAutoHilight)
+  {
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (!HighlightStyle (theOwner, aCustomStyle) ||
+      (!aCustomStyle.IsNull() && aCustomStyle != anObjSelStyle))
+    {
+      highlightSelected (theOwner);
+    }
+  }
 
-#ifdef OCCT_DEBUG
-  cout<<"Not Yet Implemented"<<endl;
-#endif
+  if (theToUpdateViewer)
+    UpdateCurrentViewer();
 }
 
 //=======================================================================
-//function : UpdateSelection
-//purpose  : 
+//function : AddOrRemoveSelected
+//purpose  : Adds or removes current object from AIS selection and highlights/unhighlights it.
+//           Since this method makes sence only for neutral point selection of a whole object,
+//           if 0 selection of the object is empty this method simply does nothing.
 //=======================================================================
-
-void AIS_InteractiveContext::UpdateSelected(const Standard_Boolean updateviewer)
+void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(AIS_InteractiveObject)& theObject,
+                                                  const Standard_Boolean theToUpdateViewer)
 {
-  if(!HasOpenedContext()) {
-    HilightSelected();
-#ifndef BUG
+  if (theObject.IsNull()
+  || !myObjects.IsBound (theObject))
+  {
     return;
-#endif
   }
-  myLocalContexts(myCurLocalIndex)->UpdateSelected(updateviewer);
-}
 
-//=======================================================================
-//function : SetCurrentObject
-//purpose  : 
-//=======================================================================
-void AIS_InteractiveContext::SetSelected(const Handle(AIS_InteractiveObject)& anIObj,const Standard_Boolean updateviewer)
-{
-  if(!HasOpenedContext()) 
-    SetCurrentObject(anIObj,updateviewer);
-  else
-    myLocalContexts(myCurLocalIndex)->SetSelected(anIObj,updateviewer);
+  const Handle(SelectMgr_EntityOwner) anOwner = theObject->GlobalSelOwner();
+  if (!anOwner.IsNull()
+    && anOwner->HasSelectable())
+  {
+    AddOrRemoveSelected (anOwner, theToUpdateViewer);
+  }
 }
 
 //=======================================================================
 //function : AddOrRemoveSelected
-//purpose  : 
+//purpose  : Allows to highlight or unhighlight the owner given depending on
+//           its selection status
 //=======================================================================
-
-void AIS_InteractiveContext::AddOrRemoveSelected(const Handle(AIS_InteractiveObject)& anIObj,
-                                                const Standard_Boolean updateviewer)
+void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(SelectMgr_EntityOwner)& theOwner,
+                                                  const Standard_Boolean theToUpdateViewer)
 {
-  if(!anIObj->HasInteractiveContext()) anIObj->SetContext(this);
-  if(!HasOpenedContext())
-    AddOrRemoveCurrentObject(anIObj,updateviewer);
-  else
-    myLocalContexts(myCurLocalIndex)->AddOrRemoveSelected(anIObj,updateviewer);
-  
-}
-//=======================================================================
-//function : AddOrRemoveSelected
-//purpose  : 
-//=======================================================================
-
-void AIS_InteractiveContext::AddOrRemoveSelected(const TopoDS_Shape& aShap,
-                                           const Standard_Boolean updateviewer)
-{ 
-  if(!HasOpenedContext()) {
-#ifdef OCCT_DEBUG
-    cout<<" Attempt to remove a selected shape with no opened local context"<<endl;
-#endif
+  if (theOwner.IsNull() || !theOwner->HasSelectable())
     return;
-  }
-  
-  myLocalContexts(myCurLocalIndex)->AddOrRemoveSelected(aShap,updateviewer);
-  if(updateviewer) UpdateCurrentViewer();
-  
-}
-//=======================================================================
-//function : AddOrRemoveSelected
-//purpose  : 
-//=======================================================================
 
-void AIS_InteractiveContext::AddOrRemoveSelected(const Handle(SelectMgr_EntityOwner)& Own,
-                                                const Standard_Boolean updateviewer)
-{ 
-  if(!HasOpenedContext()) {
-#ifdef OCCT_DEBUG
-    cout<<" Attempt to remove a selected ownr with no opened local context"<<endl;
-#endif
+  if (!myFilters->IsOk(theOwner) && !theOwner->IsSelected())
     return;
-  }
-  
-  myLocalContexts(myCurLocalIndex)->AddOrRemoveSelected(Own,Standard_False);
-  if(updateviewer) UpdateCurrentViewer();
-  
-}
-
 
+  mySelection->Select (theOwner);
 
-//=======================================================================
-//function : IsSelected
-//purpose  : 
-//=======================================================================
-
-Standard_Boolean AIS_InteractiveContext::
-IsSelected(const Handle(AIS_InteractiveObject)& anIObj) const 
-{
-  if (anIObj.IsNull()) return Standard_False;
-  
-  if(!HasOpenedContext()) 
-    return (anIObj->State()==1);
-  else 
-    return myLocalContexts(myCurLocalIndex)->IsSelected(anIObj);
-}
+  if (myAutoHilight)
+  {
+    const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
+    Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (anObj);
+    if (!aStatusPtr)
+    {
+      return;
+    }
 
+    if (theOwner->IsSelected())
+    {
+      highlightSelected (theOwner);
+    }
+    else
+    {
+      AIS_NListOfEntityOwner anOwners;
+      anOwners.Append (theOwner);
+      unhighlightOwners (anOwners);
 
-//=======================================================================
-//function : InitSelected
-//purpose  : 
-//=======================================================================
+      (*aStatusPtr)->SetHilightStyle (Handle(Prs3d_Drawer)());
+    }
+  }
 
-void AIS_InteractiveContext::InitSelected()
-{
-  if(!HasOpenedContext())
-    AIS_Selection::Selection(myCurrentName.ToCString())->Init();
-  else
-    myLocalContexts(myCurLocalIndex)->InitSelected();
+  if (theToUpdateViewer)
+    UpdateCurrentViewer();
 }
 
-//=======================================================================
-//function : MoreSelected
-//purpose  : 
-//=======================================================================
-
-Standard_Boolean AIS_InteractiveContext::MoreSelected() const 
+// =======================================================================
+// function : SetSelectedState
+// purpose  :
+// =======================================================================
+Standard_Boolean AIS_InteractiveContext::SetSelectedState (const Handle(SelectMgr_EntityOwner)& theEntity,
+                                                           const Standard_Boolean theIsSelected)
 {
-  if(!HasOpenedContext())
-    return AIS_Selection::Selection(myCurrentName.ToCString())->More();
-  return myLocalContexts(myCurLocalIndex)->MoreSelected();
-}
+  if (theEntity.IsNull())
+  {
+    throw Standard_ProgramError ("Internal error: AIS_InteractiveContext::SetSelectedState() called with NO object");
+  }
 
-//=======================================================================
-//function : NextSelected
-//purpose  : 
-//=======================================================================
+  if (!theEntity->HasSelectable()
+    || mySelection->IsSelected (theEntity) == theIsSelected)
+  {
+    return false;
+  }
 
-void AIS_InteractiveContext::NextSelected()
-{
-  if(!HasOpenedContext())
-    AIS_Selection::Selection(myCurrentName.ToCString())->Next();
+  if (theEntity->IsAutoHilight())
+  {
+    AddOrRemoveSelected (theEntity, false);
+    return true;
+  }
+
+  if (theIsSelected)
+  {
+    const AIS_SelectStatus aSelStatus = mySelection->AddSelect (theEntity);
+    theEntity->SetSelected (true);
+    return aSelStatus == AIS_SS_Added;
+  }
   else
-    myLocalContexts(myCurLocalIndex)->NextSelected();
+  {
+    const AIS_SelectStatus aSelStatus = mySelection->Select (theEntity);
+    theEntity->SetSelected (false);
+    return aSelStatus == AIS_SS_Removed;
+  }
 }
 
 //=======================================================================
-//function : HasSelectedShape
-//purpose  : 
+//function : IsSelected
+//purpose  :
 //=======================================================================
-
-Standard_Boolean AIS_InteractiveContext::HasSelectedShape() const 
+Standard_Boolean AIS_InteractiveContext::IsSelected (const Handle(AIS_InteractiveObject)& theObj) const
 {
-  if(!HasOpenedContext()) {
-#ifdef IMP280200
-    Handle(AIS_Shape) shape = 
-       Handle(AIS_Shape)::DownCast(SelectedInteractive());
-    if( !shape.IsNull() ) return Standard_True;
-#endif
+  if (theObj.IsNull())
+  {
     return Standard_False;
   }
-  return myLocalContexts(myCurLocalIndex)->HasShape();
-  
-  
-}
 
-//=======================================================================
-//function : SelectedShape
-//purpose  : 
-//=======================================================================
+  const Handle(AIS_GlobalStatus)* aStatus = myObjects.Seek (theObj);
+  if (aStatus == NULL)
+  {
+    return Standard_False;
+  }
 
-TopoDS_Shape AIS_InteractiveContext::SelectedShape() const 
-{
-  if (!HasOpenedContext())
+  const Standard_Integer aGlobalSelMode = theObj->GlobalSelectionMode();
+  const TColStd_ListOfInteger& anActivatedModes = (*aStatus)->SelectionModes();
+  for (TColStd_ListIteratorOfListOfInteger aModeIter (anActivatedModes); aModeIter.More(); aModeIter.Next())
   {
-    TopoDS_Shape aResShape;
-    Handle(AIS_Shape) aShape = Handle(AIS_Shape)::DownCast (SelectedInteractive());
-    if (!aShape.IsNull())
+    if (aModeIter.Value() == aGlobalSelMode)
     {
-      aResShape = aShape->Shape().Located (TopLoc_Location (SelectedInteractive()->Transformation()) * aShape->Shape().Location());
+      if (Handle(SelectMgr_EntityOwner) aGlobOwner = theObj->GlobalSelOwner())
+      {
+        return aGlobOwner->IsSelected();
+      }
+      return Standard_False;
     }
-
-    return aResShape;
-  } 
-  else
-  {
-    return myLocalContexts (myCurLocalIndex)->SelectedShape();
   }
+  return Standard_False;
 }
 
 //=======================================================================
-//function : Interactive
-//purpose  : 
+//function : FirstSelectedObject
+//purpose  :
 //=======================================================================
-
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::Interactive() const 
+Handle(AIS_InteractiveObject) AIS_InteractiveContext::FirstSelectedObject() const
 {
-  return SelectedInteractive();
+  return !mySelection->Objects().IsEmpty()
+        ? Handle(AIS_InteractiveObject)::DownCast (mySelection->Objects().First()->Selectable())
+        : Handle(AIS_InteractiveObject)();
 }
 
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::SelectedInteractive() const 
+//=======================================================================
+//function : HasSelectedShape
+//purpose  :
+//=======================================================================
+Standard_Boolean AIS_InteractiveContext::HasSelectedShape() const
 {
-  if(!HasOpenedContext()){
-    Handle(Standard_Transient) TR  =AIS_Selection::Selection(myCurrentName.ToCString())->Value();
-    Handle(AIS_InteractiveObject) IO = *((Handle(AIS_InteractiveObject)*)&TR);
-    return IO;}
-  
-  return  myLocalContexts(myCurLocalIndex)->SelectedInteractive();
-  
+  if (!mySelection->More())
+    return Standard_False;
+
+  const Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast (mySelection->Value());
+  return !anOwner.IsNull() && anOwner->HasShape();
 }
+
 //=======================================================================
-//function : Interactive
-//purpose  : 
+//function : SelectedShape
+//purpose  :
 //=======================================================================
-
-Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::SelectedOwner() const 
+TopoDS_Shape AIS_InteractiveContext::SelectedShape() const
 {
-  if(!HasOpenedContext()){
-    Handle(SelectMgr_EntityOwner) Ownr;
-    return Ownr;
-  }
-  return  myLocalContexts(myCurLocalIndex)->SelectedOwner();
-  
+  if (!mySelection->More())
+    return TopoDS_Shape();
+
+  const Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast (mySelection->Value());
+  if (anOwner.IsNull() || !anOwner->HasSelectable())
+    return TopoDS_Shape();
+
+  return anOwner->Shape().Located (anOwner->Location() * anOwner->Shape().Location());
 }
 
 //=======================================================================
 //function : EntityOwners
 //purpose  : 
 //=======================================================================
-void AIS_InteractiveContext::EntityOwners(SelectMgr_IndexedMapOfOwner& theOwners,
+void AIS_InteractiveContext::EntityOwners(Handle(SelectMgr_IndexedMapOfOwner)& theOwners,
                                          const Handle(AIS_InteractiveObject)& theIObj,
                                          const Standard_Integer theMode) const 
 {
-  if ( theIObj.IsNull() )
-      return;
+  if (theIObj.IsNull())
+  {
+    return;
+  }
 
   TColStd_ListOfInteger aModes;
-  if ( theMode == -1 )
-    ActivatedModes( theIObj, aModes );
+  if (theMode == -1)
+  {
+    ActivatedModes (theIObj, aModes);
+  }
   else
-    aModes.Append( theMode );
+  {
+    aModes.Append (theMode);
+  }
 
-  TColStd_ListIteratorOfListOfInteger anItr( aModes );
-  for (; anItr.More(); anItr.Next() )
+  if (theOwners.IsNull())
   {
-    int aMode = anItr.Value();
-    if ( !theIObj->HasSelection( aMode ) )
-      continue;
+    theOwners = new SelectMgr_IndexedMapOfOwner();
+  }
 
-    Handle(SelectMgr_Selection) aSel = theIObj->Selection( aMode );
+  for (TColStd_ListIteratorOfListOfInteger anItr (aModes); anItr.More(); anItr.Next())
+  {
+    const int aMode = anItr.Value();
+    const Handle(SelectMgr_Selection)& aSel = theIObj->Selection (aMode);
+    if (aSel.IsNull())
+    {
+      continue;
+    }
 
-    for ( aSel->Init(); aSel->More(); aSel->Next() )
+    for (NCollection_Vector<Handle(SelectMgr_SensitiveEntity)>::Iterator aSelEntIter (aSel->Entities()); aSelEntIter.More(); aSelEntIter.Next())
     {
-      Handle(SelectBasics_SensitiveEntity) aEntity = aSel->Sensitive();
-      if ( aEntity.IsNull() )
-       continue;
-
-      Handle(SelectMgr_EntityOwner) aOwner =
-       Handle(SelectMgr_EntityOwner)::DownCast(aEntity->OwnerId());
-      if ( !aOwner.IsNull() )
-       theOwners.Add( aOwner );
+      if (Handle(Select3D_SensitiveEntity) aEntity = aSelEntIter.Value()->BaseSensitive())
+      {
+        if (const Handle(SelectMgr_EntityOwner)& aOwner = aEntity->OwnerId())
+        {
+          theOwners->Add (aOwner);
+        }
+      }
     }
   }
 }
 
-Standard_Integer AIS_InteractiveContext::NbSelected() 
-{
-  Standard_Integer i(0);
-  for(InitSelected();MoreSelected();NextSelected())
-    {i++;}
-  return i;
-}
-
-//=======================================================================
-//function : HasApplicative
-//purpose  : 
-//=======================================================================
-
-  Standard_Boolean AIS_InteractiveContext::HasApplicative() const 
-{
-  return Interactive()->HasOwner();
-}
-
-//=======================================================================
-//function : Applicative
-//purpose  : 
-//=======================================================================
-
-Handle(Standard_Transient) AIS_InteractiveContext::Applicative() const 
-{
-  return Interactive()->GetOwner();
-}
-
-
-
-//==================================================
-// Function: 
-// Purpose :
-//==================================================
-Standard_Boolean AIS_InteractiveContext::HasDetected() const 
-{
-  if(HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->HasDetected();
-  else
-    return !myLastPicked.IsNull();
-}
-
 //=======================================================================
 //function : HasDetectedShape
 //purpose  : 
 //=======================================================================
-
 Standard_Boolean AIS_InteractiveContext::HasDetectedShape() const 
 {
-  if(HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->HasDetectedShape();
-  return Standard_False;
+  Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast (myLastPicked);
+  return !anOwner.IsNull()
+       && anOwner->HasShape();
 }
 
 //=======================================================================
 //function : DetectedShape
 //purpose  : 
 //=======================================================================
-
-const TopoDS_Shape&
-AIS_InteractiveContext::DetectedShape() const
-{
-  return myLocalContexts(myCurLocalIndex)->DetectedShape();
-}                                          
-
-//=======================================================================
-//function : DetectedInteractive
-//purpose  : 
-//=======================================================================
-
-Handle(AIS_InteractiveObject) 
-AIS_InteractiveContext::DetectedInteractive() const 
-{
-  if(HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->DetectedInteractive();
-  return myLastPicked;
-}
-
-
-Standard_Boolean AIS_InteractiveContext::HasNextDetected() const 
-{
-  if(!HasOpenedContext())
-    return Standard_False; // temporaire
-  else
-    return myLocalContexts(myCurLocalIndex)->HasNextDetected();
-  
-}
-
-
-//=======================================================================
-//function : DetectedOwner
-//purpose  : 
-//=======================================================================
-Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::DetectedOwner() const
+const TopoDS_Shape& AIS_InteractiveContext::DetectedShape() const
 {
-  if(HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->DetectedOwner();
-  Handle(SelectMgr_EntityOwner) Ownr;
-  return Ownr;
+  Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast (myLastPicked);
+  return anOwner->Shape();
 }
 
-
 //=======================================================================
 //function : HilightNextDetected
 //purpose  :
@@ -1259,71 +1210,78 @@ Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::DetectedOwner() const
 Standard_Integer AIS_InteractiveContext::HilightNextDetected (const Handle(V3d_View)& theView,
                                                               const Standard_Boolean  theToRedrawImmediate)
 {
-  return HasOpenedContext()
-       ? myLocalContexts (myCurLocalIndex)->HilightNextDetected (theView, theToRedrawImmediate)
-       : 0;
-    
+  myMainPM->ClearImmediateDraw();
+  if (myDetectedSeq.IsEmpty())
+  {
+    return 0;
+  }
+
+  if (++myCurHighlighted > myDetectedSeq.Upper())
+  {
+    myCurHighlighted = myDetectedSeq.Lower();
+  }
+  const Handle(SelectMgr_EntityOwner)& anOwner = myMainSel->Picked (myDetectedSeq (myCurHighlighted));
+  if (anOwner.IsNull())
+  {
+    return 0;
+  }
+
+  highlightWithColor (anOwner, theView->Viewer());
+  myLastPicked = anOwner;
+
+  if (theToRedrawImmediate)
+  {
+    myMainPM->RedrawImmediate (theView->Viewer());
+    myMainVwr->RedrawImmediate();
+  }
+
+  return myCurHighlighted;
 }
 
 //=======================================================================
-//function : HilightNextDetected
+//function : HilightPreviousDetected
 //purpose  :
 //=======================================================================
 Standard_Integer AIS_InteractiveContext::HilightPreviousDetected (const Handle(V3d_View)& theView,
                                                                   const Standard_Boolean  theToRedrawImmediate)
 {
-  return HasOpenedContext()
-       ? myLocalContexts (myCurLocalIndex)->HilightPreviousDetected (theView, theToRedrawImmediate)
-       : 0;
-    
-}
-
-//=======================================================================
-//function : InitDetected
-//purpose  :
-//=======================================================================
-void AIS_InteractiveContext::InitDetected()
-{
-  if (HasOpenedContext())
+  myMainPM->ClearImmediateDraw();
+  if (myDetectedSeq.IsEmpty())
   {
-    myLocalContexts(myCurLocalIndex)->InitDetected();
-    return;
+    return 0;
   }
 
-  if(myAISDetectedSeq.Length() != 0)
+  if (--myCurHighlighted < myDetectedSeq.Lower())
   {
-    myAISCurDetected = 1;
+    myCurHighlighted = myDetectedSeq.Upper();
+  }
+  const Handle(SelectMgr_EntityOwner)& anOwner = myMainSel->Picked (myDetectedSeq (myCurHighlighted));
+  if (anOwner.IsNull())
+  {
+    return 0;
   }
-}
 
-//=======================================================================
-//function : MoreDetected
-//purpose  :
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::MoreDetected() const
-{
-  if (HasOpenedContext())
+  highlightWithColor (anOwner, theView->Viewer());
+  myLastPicked = anOwner;
+
+  if (theToRedrawImmediate)
   {
-    return myLocalContexts(myCurLocalIndex)->MoreDetected();
+    myMainPM->RedrawImmediate (theView->Viewer());
+    myMainVwr->RedrawImmediate();
   }
 
-  return (myAISCurDetected > 0 && myAISCurDetected <= myAISDetectedSeq.Length()) ?
-          Standard_True : Standard_False;
+  return myCurHighlighted;
 }
 
 //=======================================================================
-//function : NextDetected
+//function : DetectedCurrentOwner
 //purpose  :
 //=======================================================================
-void AIS_InteractiveContext::NextDetected()
+Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::DetectedCurrentOwner() const
 {
-  if(HasOpenedContext())
-  {
-    myLocalContexts(myCurLocalIndex)->NextDetected();
-    return;
-  }
-
-  myAISCurDetected++;
+  return MoreDetected()
+       ? myMainSel->Picked (myDetectedSeq (myCurDetected))
+       : Handle(SelectMgr_EntityOwner)();
 }
 
 //=======================================================================
@@ -1332,21 +1290,12 @@ void AIS_InteractiveContext::NextDetected()
 //=======================================================================
 const TopoDS_Shape& AIS_InteractiveContext::DetectedCurrentShape() const
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->DetectedCurrentShape();
-  }
-
-  static TopoDS_Shape aDummyShape;
-
+  Standard_DISABLE_DEPRECATION_WARNINGS
   Handle(AIS_Shape) aCurrentShape = Handle(AIS_Shape)::DownCast (DetectedCurrentObject());
-
-  if (aCurrentShape.IsNull())
-  {
-    return aDummyShape;
-  }
-
-  return aCurrentShape->Shape();
+  Standard_ENABLE_DEPRECATION_WARNINGS
+  return !aCurrentShape.IsNull()
+        ? aCurrentShape->Shape()
+        : AIS_InteractiveContext_myDummyShape;
 }
 
 //=======================================================================
@@ -1355,10 +1304,7 @@ const TopoDS_Shape& AIS_InteractiveContext::DetectedCurrentShape() const
 //=======================================================================
 Handle(AIS_InteractiveObject) AIS_InteractiveContext::DetectedCurrentObject() const
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->DetectedCurrentObject();
-  }
-
-  return MoreDetected() ? myAISDetectedSeq(myAISCurDetected) : NULL;
+  return MoreDetected()
+       ? Handle(AIS_InteractiveObject)::DownCast (myMainSel->Picked (myDetectedSeq (myCurDetected))->Selectable())
+       : Handle(AIS_InteractiveObject)();
 }