0030784: Visualization - check if selectable of owner in internal container in AIS_In...
[occt.git] / src / AIS / AIS_InteractiveContext_1.cxx
index 0af8ae0..7c9b44c 100644 (file)
@@ -19,7 +19,6 @@
 #include <AIS_GlobalStatus.hxx>
 #include <AIS_InteractiveContext.hxx>
 #include <AIS_InteractiveObject.hxx>
-#include <AIS_LocalContext.hxx>
 #include <AIS_MapIteratorOfMapOfInteractive.hxx>
 #include <AIS_MapOfInteractive.hxx>
 #include <AIS_Selection.hxx>
@@ -31,7 +30,7 @@
 #include <Prs3d_LineAspect.hxx>
 #include <Prs3d_Presentation.hxx>
 #include <Quantity_Color.hxx>
-#include <SelectBasics_SensitiveEntity.hxx>
+#include <Select3D_SensitiveEntity.hxx>
 #include <SelectMgr_EntityOwner.hxx>
 #include <SelectMgr_Filter.hxx>
 #include <SelectMgr_OrFilter.hxx>
@@ -56,7 +55,7 @@ typedef NCollection_DataMap<Handle(AIS_InteractiveObject), NCollection_Handle<Se
 
 namespace
 {
-  TopoDS_Shape AIS_myDummyShape;
+  TopoDS_Shape AIS_InteractiveContext_myDummyShape;
 }
 
 //=======================================================================
@@ -66,14 +65,17 @@ namespace
 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());
+  const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
   if (anObj.IsNull())
+  {
     return;
-  const Standard_Integer aHiMode = anObj->HasHilightMode() ? anObj->HilightMode() : 0;
+  }
+
+  const Handle(Prs3d_Drawer)& aStyle = getHiStyle (anObj, theOwner);
+  const Standard_Integer aHiMode = getHilightMode (anObj, aStyle, -1);
 
   myMainPM->BeginImmediateDraw();
-  theOwner->HilightWithColor (myMainPM, getHiStyle (anObj), aHiMode);
+  theOwner->HilightWithColor (myMainPM, aStyle, aHiMode);
   myMainPM->EndImmediateDraw (theViewer.IsNull() ? myMainVwr : theViewer);
 }
 
@@ -83,11 +85,12 @@ void AIS_InteractiveContext::highlightWithColor (const Handle(SelectMgr_EntityOw
 //=======================================================================
 void AIS_InteractiveContext::highlightSelected (const Handle(SelectMgr_EntityOwner)& theOwner)
 {
-  const Handle(AIS_InteractiveObject) anObj =
-    Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
+  AIS_NListOfEntityOwner anOwners;
+  const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
   if (anObj.IsNull())
+  {
     return;
-  const Standard_Integer aHiMode = anObj->HasHilightMode() ? anObj->HilightMode() : 0;
+  }
 
   if (!theOwner->IsAutoHilight())
   {
@@ -96,15 +99,15 @@ void AIS_InteractiveContext::highlightSelected (const Handle(SelectMgr_EntityOwn
     {
       if (aSelIter.Value()->IsSameSelectable (anObj))
       {
-        aSeq.Append (aSelIter.Value());
+        anOwners.Append (aSelIter.Value());
       }
     }
-    anObj->HilightSelected (myMainPM, aSeq);
   }
   else
   {
-    theOwner->HilightWithColor (myMainPM, getSelStyle (anObj), aHiMode);
+    anOwners.Append (theOwner);
   }
+  highlightOwners (anOwners);
 }
 
 //=======================================================================
@@ -112,19 +115,24 @@ void AIS_InteractiveContext::highlightSelected (const Handle(SelectMgr_EntityOwn
 //purpose  :
 //=======================================================================
 void AIS_InteractiveContext::highlightGlobal (const Handle(AIS_InteractiveObject)& theObj,
-                                              const Handle(Graphic3d_HighlightStyle)& theStyle,
-                                              const Standard_Integer theMode) const
+                                              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, theMode);
+    myMainPM->Color (theObj, theStyle, aHiMode);
     return;
   }
 
+  AIS_NListOfEntityOwner anOwners;
   if (!aGlobOwner->IsAutoHilight())
   {
     SelectMgr_SequenceOfOwner aSeq;
@@ -132,15 +140,15 @@ void AIS_InteractiveContext::highlightGlobal (const Handle(AIS_InteractiveObject
     {
       if (aSelIter.Value()->IsSameSelectable (theObj))
       {
-        aSeq.Append (aSelIter.Value());
+        anOwners.Append (aSelIter.Value());
       }
     }
-    theObj->HilightSelected (myMainPM, aSeq);
   }
   else
   {
-    aGlobOwner->HilightWithColor (myMainPM, theStyle, theMode);
+    anOwners.Append (aGlobOwner);
   }
+  highlightOwners (anOwners);
 }
 
 //=======================================================================
@@ -148,40 +156,53 @@ void AIS_InteractiveContext::highlightGlobal (const Handle(AIS_InteractiveObject
 //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 (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
+  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())
     {
-      const Standard_Integer aHiMode = anInteractive->HasHilightMode() ? anInteractive->HilightMode() : 0;
-      anOwner->Unhilight (myMainPM, aHiMode);
+      anOwner->Unhilight (myMainPM);
       if (theIsToHilightSubIntensity)
       {
-        if (myObjects.IsBound (anInteractive) && myObjects (anInteractive)->IsSubIntensityOn())
+        if ((*aStatusPtr)->IsSubIntensityOn())
         {
+          const Standard_Integer aHiMode = getHilightMode (anInteractive, (*aStatusPtr)->HilightStyle(), (*aStatusPtr)->DisplayMode());
           highlightWithSubintensity (anOwner, aHiMode);
         }
       }
     }
     else
     {
-      if (!anObjToClear.Contains (anInteractive))
-        anObjToClear.Add (anInteractive);
+      anObjToClear.Add (anInteractive);
     }
-    anOwner->State (0);
     if (anOwner == anInteractive->GlobalSelOwner())
     {
-      myObjects.ChangeFind (anInteractive)->SetHilightStatus (Standard_False);
+      (*aStatusPtr)->SetHilightStatus (Standard_False);
     }
   }
   for (NCollection_IndexedMap<Handle(AIS_InteractiveObject)>::Iterator anIter (anObjToClear); anIter.More(); anIter.Next())
   {
     const Handle(AIS_InteractiveObject)& anObj = anIter.Value();
-    const Standard_Integer aHiMode = anObj->HasHilightMode() ? anObj->HilightMode() : 0;
-    myMainPM->Unhighlight (anObj, aHiMode);
+    myMainPM->Unhighlight (anObj);
     anObj->ClearSelected();
   }
 }
@@ -190,28 +211,23 @@ void AIS_InteractiveContext::unhighlightSelected (const Standard_Boolean theIsTo
 //function : unhighlightGlobal
 //purpose  :
 //=======================================================================
-void AIS_InteractiveContext::unhighlightGlobal (const Handle(AIS_InteractiveObject)& theObj,
-                                                const Standard_Integer theMode) const
+void AIS_InteractiveContext::unhighlightGlobal (const Handle(AIS_InteractiveObject)& theObj)
 {
   if (theObj.IsNull())
+  {
     return;
-  const Handle(SelectMgr_EntityOwner)& aGlobOwner = theObj->GlobalSelOwner();
+  }
 
+  const Handle(SelectMgr_EntityOwner)& aGlobOwner = theObj->GlobalSelOwner();
   if (aGlobOwner.IsNull())
   {
-    myMainPM->Unhighlight (theObj, theMode);
+    myMainPM->Unhighlight (theObj);
     return;
   }
 
-  if (aGlobOwner->IsAutoHilight())
-  {
-    aGlobOwner->Unhilight (myMainPM, theMode);
-  }
-  else
-  {
-    myMainPM->Unhighlight (theObj, theMode);
-    theObj->ClearSelected();
-  }
+  AIS_NListOfEntityOwner anOwners;
+  anOwners.Append (aGlobOwner);
+  unhighlightOwners (anOwners);
 }
 
 //=======================================================================
@@ -222,9 +238,9 @@ void AIS_InteractiveContext::turnOnSubintensity (const Handle(AIS_InteractiveObj
                                                  const Standard_Integer theDispMode,
                                                  const Standard_Boolean theIsDisplayedOnly) const
 {
-  // the only differ with selection highlight is color, so
-  // sync transparency values
-  mySubintStyle->SetTransparency (mySelStyle->Transparency());
+  // 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())
   {
@@ -235,13 +251,7 @@ void AIS_InteractiveContext::turnOnSubintensity (const Handle(AIS_InteractiveObj
         continue;
 
       aStatus->SubIntensityOn();
-
-      if (theDispMode == -1)
-      {
-        myMainPM->Color (anObjsIter.Key(), mySubintStyle, aStatus->DisplayMode());
-      }
-      else
-        myMainPM->Color (anObjsIter.Key(), mySubintStyle, theDispMode);
+      myMainPM->Color (anObjsIter.Key(), aSubStyle, theDispMode != -1 ? theDispMode : aStatus->DisplayMode());
     }
   }
   else
@@ -251,16 +261,10 @@ void AIS_InteractiveContext::turnOnSubintensity (const Handle(AIS_InteractiveObj
       return;
 
     if (aStatus->GraphicStatus() != AIS_DS_Displayed && theIsDisplayedOnly)
-        return;
+      return;
 
     aStatus->SubIntensityOn();
-
-    if (theDispMode == -1)
-    {
-      myMainPM->Color (theObject, mySubintStyle, aStatus->DisplayMode());
-    }
-    else
-      myMainPM->Color (theObject, mySubintStyle, theDispMode);
+    myMainPM->Color (theObject, aSubStyle, theDispMode != -1 ? theDispMode : aStatus->DisplayMode());
   }
 }
 
@@ -273,9 +277,9 @@ void AIS_InteractiveContext::highlightWithSubintensity (const Handle(AIS_Interac
 {
   // the only differ with selection highlight is color, so
   // sync transparency values
-  mySubintStyle->SetTransparency (mySelStyle->Transparency());
+  myStyles[Prs3d_TypeOfHighlight_SubIntensity]->SetTransparency (myStyles[Prs3d_TypeOfHighlight_Selected]->Transparency());
 
-  myMainPM->Color (theObject, mySubintStyle, theMode);
+  myMainPM->Color (theObject, myStyles[Prs3d_TypeOfHighlight_SubIntensity], theMode);
 }
 
 //=======================================================================
@@ -287,9 +291,25 @@ void AIS_InteractiveContext::highlightWithSubintensity (const Handle(SelectMgr_E
 {
   // the only differ with selection highlight is color, so
   // sync transparency values
-  mySubintStyle->SetTransparency (mySelStyle->Transparency());
+  myStyles[Prs3d_TypeOfHighlight_SubIntensity]->SetTransparency (myStyles[Prs3d_TypeOfHighlight_Selected]->Transparency());
+
+  theOwner->HilightWithColor (myMainPM, myStyles[Prs3d_TypeOfHighlight_SubIntensity], theMode);
+}
 
-  theOwner->HilightWithColor (myMainPM, mySubintStyle, 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;
 }
 
 //=======================================================================
@@ -301,24 +321,17 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
                                                       const Handle(V3d_View)& theView,
                                                       const Standard_Boolean  theToRedrawOnUpdate)
 {
-  if (HasOpenedContext())
+  if (theView->Viewer() != myMainVwr)
   {
-    myWasLastMain = Standard_True;
-    return myLocalContexts (myCurLocalIndex)->MoveTo (theXPix, theYPix, theView, theToRedrawOnUpdate);
+    throw Standard_ProgramError ("AIS_InteractiveContext::MoveTo() - invalid argument");
   }
 
   myCurDetected = 0;
   myCurHighlighted = 0;
   myDetectedSeq.Clear();
-
-  if (theView->Viewer() != myMainVwr)
-  {
-    return AIS_SOD_Error;
-  }
+  myLastActiveView = theView.get();
 
   // preliminaires
-  myLastPicked  = myLastinMain;
-  myWasLastMain = Standard_True;
   AIS_StatusOfDetection aStatus        = AIS_SOD_Nothing;
   Standard_Boolean      toUpdateViewer = Standard_False;
 
@@ -329,16 +342,22 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
   // (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;
     }
@@ -371,30 +390,30 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
     // method call. As result it is necessary to rehighligt it with mySelectionColor.
     if (!myLastPicked.IsNull() && myLastPicked->HasSelectable())
     {
-      myMainPM->ClearImmediateDraw();
-      const Handle(AIS_InteractiveObject) aLastPickedAIS = Handle(AIS_InteractiveObject)::DownCast (myLastPicked->Selectable());
-      const Standard_Integer aHiMod = aLastPickedAIS->HasHilightMode() ? aLastPickedAIS->HilightMode() : 0;
-      if (!myLastPicked->IsSelected())
-      {
-        myLastPicked->Unhilight (myMainPM, aHiMod);
-        toUpdateViewer = Standard_True;
-      }
-      else if (myToHilightSelected)
+      if (isSlowHiStyle (myLastPicked, theView->Viewer()))
       {
-        highlightSelected (aNewPickedOwner);
-        toUpdateViewer = Standard_True;
+        theView->Viewer()->Invalidate();
       }
+
+      clearDynamicHighlight();
+      toUpdateViewer = Standard_True;
     }
 
     // initialize myLastPicked field with currently detected object
     myLastPicked = aNewPickedOwner;
-    myLastinMain = myLastPicked;
 
     // highlight detected object if it is not selected or myToHilightSelected flag is true
     if (myLastPicked->HasSelectable())
     {
-      if (!myLastPicked->IsSelected() || myToHilightSelected)
+      if (myAutoHilight
+       && (!myLastPicked->IsSelected()
+         || myToHilightSelected))
       {
+        if (isSlowHiStyle (myLastPicked, theView->Viewer()))
+        {
+          theView->Viewer()->Invalidate();
+        }
+
         highlightWithColor (myLastPicked, theView->Viewer());
         toUpdateViewer = Standard_True;
       }
@@ -409,37 +428,42 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
     // 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() && myLastPicked->HasSelectable())
+    if (myAutoHilight
+    && !myLastPicked.IsNull()
+     && myLastPicked->HasSelectable())
     {
-      myMainPM->ClearImmediateDraw();
-      const Handle(AIS_InteractiveObject) aLastPickedAIS = Handle(AIS_InteractiveObject)::DownCast (myLastPicked->Selectable());
-      Standard_Integer aHiMod = aLastPickedAIS->HasHilightMode() ? aLastPickedAIS->HilightMode() : 0;
-      if (!myLastPicked->IsSelected())
+      if (isSlowHiStyle (myLastPicked, theView->Viewer()))
       {
-        if (myLastPicked->IsAutoHilight())
-        {
-          myLastPicked->Unhilight (myMainPM, aHiMod);
-        }
-        toUpdateViewer = Standard_True;
-      }
-      else if (myToHilightSelected)
-      {
-        highlightSelected (myLastPicked);
-        toUpdateViewer = Standard_True;
+        theView->Viewer()->Invalidate();
       }
+
+      clearDynamicHighlight();
+      toUpdateViewer = Standard_True;
     }
 
-    myLastinMain.Nullify();
     myLastPicked.Nullify();
   }
 
   if (toUpdateViewer
    && theToRedrawOnUpdate)
   {
-    theView->Viewer()->Update();
+    if (theView->ComputedMode())
+    {
+      theView->Viewer()->Update();
+    }
+    else
+    {
+      if (theView->IsInvalidated())
+      {
+        theView->Viewer()->Redraw();
+      }
+      else
+      {
+        theView->Viewer()->RedrawImmediate();
+      }
+    }
   }
 
-  mylastmoveview = theView;
   return aStatus;
 }
 
@@ -449,10 +473,6 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer  th
 //=======================================================================
 AIS_StatusOfPick AIS_InteractiveContext::AddSelect (const Handle(SelectMgr_EntityOwner)& theObject)
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->AddSelect (theObject);
-  }
   mySelection->AddSelect (theObject);
 
   Standard_Integer aSelNum = NbSelected();
@@ -472,38 +492,29 @@ 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");
   }
 
+  // all objects detected by the selector are taken, previous current objects are emptied,
+  // new objects are put...
   ClearSelected (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-
-  if (theView->Viewer() == myMainVwr)
-  {
-    aSelector = myMainSel;
-    myWasLastMain = Standard_True;
-  }
-
-  aSelector->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
-  for (Standard_Integer aPickIter = 1; aPickIter <= aSelector->NbPicked(); ++aPickIter)
+  myLastActiveView = theView.get();
+  myMainSel->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    const Handle(SelectMgr_EntityOwner)& aCurOwner = aSelector->Picked (aPickIter);
+    const Handle(SelectMgr_EntityOwner)& aCurOwner = myMainSel->Picked (aPickIter);
     if (aCurOwner.IsNull() || !aCurOwner->HasSelectable() || !myFilters->IsOk (aCurOwner))
       continue;
 
     mySelection->Select (aCurOwner);
-    aCurOwner->State (1);
   }
 
-  HilightSelected (toUpdateViewer);
+  if (myAutoHilight)
+  {
+    HilightSelected (toUpdateViewer);
+  }
 
   Standard_Integer aSelNum = NbSelected();
 
@@ -521,36 +532,29 @@ 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");
   }
 
+  // all objects detected by the selector are taken, previous current objects are emptied,
+  // new objects are put...
   ClearSelected (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-
-  if (theView->Viewer() == myMainVwr)
+  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);
-  for (Standard_Integer aPickIter = 1; aPickIter <= aSelector->NbPicked(); ++aPickIter)
-  {
-    const Handle(SelectMgr_EntityOwner) anOwner = aSelector->Picked (aPickIter);
+    const Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aPickIter);
     if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
       continue;
 
     mySelection->Select (anOwner);
-    anOwner->State (1);
   }
 
-  HilightSelected (toUpdateViewer);
+  if (myAutoHilight)
+  {
+    HilightSelected (toUpdateViewer);
+  }
 
   Standard_Integer aSelNum = NbSelected();
 
@@ -566,25 +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 (Handle(AIS_InteractiveObject)::DownCast (myLastPicked->Selectable()), toUpdateViewer);
-      return AIS_SOP_OneSelected;
+      return AIS_SOP_NothingSelected;
     }
-  }
 
-  myMainPM->ClearImmediateDraw();
-  if (myWasLastMain && !myLastinMain.IsNull())
-  {
-    if(!myLastinMain->IsSelected())
+    if (myAutoHilight)
+    {
+      clearDynamicHighlight();
+    }
+    if (!myLastPicked->IsSelected()
+      || myLastPicked->IsForcedHilight()
+      || NbSelected() > 1)
     {
-      SetSelected (myLastinMain, Standard_False);
+      SetSelected (myLastPicked, Standard_False);
       if(toUpdateViewer)
       {
         UpdateCurrentViewer();
@@ -593,13 +600,7 @@ AIS_StatusOfPick AIS_InteractiveContext::Select (const Standard_Boolean toUpdate
   }
   else
   {
-    unhighlightSelected (Standard_True);
-
-    mySelection->Clear();
-    if (toUpdateViewer && myWasLastMain)
-    {
-        UpdateCurrentViewer();
-    }
+    ClearSelected (toUpdateViewer);
   }
 
   Standard_Integer aSelNum = NbSelected();
@@ -615,27 +616,13 @@ 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();
   }
-
-  myMainPM->ClearImmediateDraw();
-  if (myWasLastMain && !myLastinMain.IsNull())
+  if (!myLastPicked.IsNull())
   {
-    AddOrRemoveSelected (myLastinMain, toUpdateViewer);
+    AddOrRemoveSelected (myLastPicked, toUpdateViewer);
   }
 
   Standard_Integer aSelNum = NbSelected();
@@ -656,38 +643,30 @@ 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");
   }
 
-  UnhilightSelected (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-  if (theView->Viewer() == myMainVwr)
-  {
-    aSelector = myMainSel;
-    myWasLastMain = Standard_True;
-  }
-  else
+  myLastActiveView = theView.get();
+  if (myAutoHilight)
   {
-    return AIS_SOP_NothingSelected;
+    UnhilightSelected (Standard_False);
   }
-
-  aSelector->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
-  for (Standard_Integer aPickIter = 1; aPickIter <= aSelector->NbPicked(); ++aPickIter)
+  myMainSel->Pick (theXPMin, theYPMin, theXPMax, theYPMax, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    const Handle(SelectMgr_EntityOwner) anOwner = aSelector->Picked (aPickIter);
+    const Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aPickIter);
     if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
       continue;
 
-    AIS_SelectStatus aSelStatus = mySelection->Select (anOwner);
-    Standard_Integer aState = (aSelStatus == AIS_SS_Added) ? 1 : 0;
-    anOwner->State (aState);
+    mySelection->Select (anOwner);
   }
 
-  HilightSelected (toUpdateViewer);
+  if (myAutoHilight)
+  {
+    HilightSelected (toUpdateViewer);
+  }
 
   Standard_Integer aSelNum = NbSelected();
 
@@ -705,38 +684,30 @@ 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");
   }
 
-  UnhilightSelected (Standard_False);
-
-  Handle(StdSelect_ViewerSelector3d) aSelector;
-
-  if (theView->Viewer() == myMainVwr)
-  {
-    aSelector= myMainSel;
-    myWasLastMain = Standard_True;
-  }
-  else
+  myLastActiveView = theView.get();
+  if (myAutoHilight)
   {
-    return AIS_SOP_NothingSelected;
+    UnhilightSelected (Standard_False);
   }
-
-  aSelector->Pick (thePolyline, theView);
-  for (Standard_Integer aPickIter = 1; aPickIter <= aSelector->NbPicked(); ++aPickIter)
+  myMainSel->Pick (thePolyline, theView);
+  for (Standard_Integer aPickIter = 1; aPickIter <= myMainSel->NbPicked(); ++aPickIter)
   {
-    const Handle(SelectMgr_EntityOwner) anOwner = aSelector->Picked (aPickIter);
+    const Handle(SelectMgr_EntityOwner) anOwner = myMainSel->Picked (aPickIter);
     if (anOwner.IsNull() || !anOwner->HasSelectable() || !myFilters->IsOk (anOwner))
       continue;
 
-    AIS_SelectStatus aSelStatus = mySelection->Select (anOwner);
-    Standard_Integer aState = (aSelStatus == AIS_SS_Added) ? 1 : 0;
-    anOwner->State (aState);
+    mySelection->Select (anOwner);
   }
 
-  HilightSelected (toUpdateViewer);
+  if (myAutoHilight)
+  {
+    HilightSelected (toUpdateViewer);
+  }
 
   Standard_Integer aSelNum = NbSelected();
 
@@ -746,174 +717,45 @@ AIS_StatusOfPick AIS_InteractiveContext::ShiftSelect (const TColgp_Array1OfPnt2d
 }
 
 //=======================================================================
-//function : SetCurrentObject
-//purpose  : OBSOLETE, please use SetSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::SetCurrentObject (const Handle(AIS_InteractiveObject)& theObject,
-                                               const Standard_Boolean theToUpdateViewer)
-{
-  if (HasOpenedContext())
-    return;
-
-  SetSelected (theObject, theToUpdateViewer);
-}
-
-//=======================================================================
-//function : AddOrRemoveCurrentObject
-//purpose  : OBSOLETE, please use AddOrRemoveSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::AddOrRemoveCurrentObject (const Handle(AIS_InteractiveObject)& theObj,
-                                                       const Standard_Boolean theIsToUpdateViewer)
-{
-  if (HasOpenedContext())
-    return;
-
-  AddOrRemoveSelected (theObj, theIsToUpdateViewer);
-}
-//=======================================================================
-//function : UpdateCurrent
-//purpose  : OBSOLETE, please use UpdateSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::UpdateCurrent()
-{
-  UpdateSelected();
-}
-
-//=======================================================================
-//function : IsCurrent
-//purpose  : OBSOLETE, please use IsSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::IsCurrent (const Handle(AIS_InteractiveObject)& theObject) const
-{
-  return IsSelected (theObject);
-}
-
-//=======================================================================
-//function : InitCurrent
-//purpose  : OBSOLETE, please use InitSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::InitCurrent()
-{
-  if (HasOpenedContext())
-    return;
-
-  InitSelected();
-}
-
-//=======================================================================
-//function : MoreCurrent
-//purpose  : OBSOLETE, please use MoreSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::MoreCurrent() const 
-{
-  return !HasOpenedContext() && MoreSelected();
-}
-
-//=======================================================================
-//function : NextCurrent
-//purpose  : OBSOLETE, please use NextSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::NextCurrent()
-{
-  if (HasOpenedContext())
-    return;
-
-  NextSelected();
-}
-
-//=======================================================================
-//function : Current
-//purpose  : OBSOLETE, please use SelectedInteractive() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::Current() const 
-{
-  return HasOpenedContext() ? NULL : SelectedInteractive();
-}
-
-//=======================================================================
-//function : NbCurrents
-//purpose  : OBSOLETE, please use NbSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-Standard_Integer AIS_InteractiveContext::NbCurrents()
-{
-  return HasOpenedContext() ? -1 : NbSelected();
-}
-
-//=======================================================================
-//function : HilightCurrents
-//purpose  : OBSOLETE, please use HilightSelected() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::HilightCurrents (const Standard_Boolean theToUpdateViewer)
-{
-  if (HasOpenedContext())
-    return;
-
-  HilightSelected (theToUpdateViewer);
-}
-
-//=======================================================================
-//function : UnhilightCurrents
-//purpose  : OBSOLETE, please use UnhilightSelected() instead
-//TODO     : Remove in process of local context deletion
+//function : HilightSelected
+//purpose  :
 //=======================================================================
-void AIS_InteractiveContext::UnhilightCurrents (const Standard_Boolean theToUpdateViewer)
+void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdateViewer)
 {
-  if (HasOpenedContext())
-    return;
-
-  UnhilightSelected (theToUpdateViewer);
-}
+  // In case of selection without using local context
+  clearDynamicHighlight();
 
-//=======================================================================
-//function : ClearCurrents
-//purpose  : OBSOLETE, please use ClearCurrents() instead
-//TODO     : Remove in process of local context deletion
-//=======================================================================
-void AIS_InteractiveContext::ClearCurrents(const Standard_Boolean theToUpdateViewer)
-{
-  if (HasOpenedContext())
-    return;
+  highlightOwners (mySelection->Objects());
 
-  ClearSelected (theToUpdateViewer);
+  if (theToUpdateViewer)
+    UpdateCurrentViewer();
 }
 
-
 //=======================================================================
-//function : HilightSelected
+//function : highlightOwners
 //purpose  :
 //=======================================================================
-void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdateViewer)
+void AIS_InteractiveContext::highlightOwners (const AIS_NListOfEntityOwner& theOwners)
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->HilightPicked (theToUpdateViewer);
-  }
-
-  // In case of selection without using local context
-  myMainPM->ClearImmediateDraw();
   AIS_MapOfObjSelectedOwners anObjOwnerMap;
-  for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
+  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());
-    const Handle(Graphic3d_HighlightStyle)& anObjSelStyle = getSelStyle (anObj);
+    if (anObj.IsNull())
+      continue;
+
+    const Handle(Prs3d_Drawer)& anObjSelStyle = getSelStyle (anObj, anOwner);
+    Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (anObj);
+    if (!aStatusPtr)
+    {
+      continue;
+    }
     if (anOwner == anObj->GlobalSelOwner())
     {
-      Handle(AIS_GlobalStatus)& aState = myObjects.ChangeFind (anObj);
-      aState->SetHilightStatus (Standard_True);
-      aState->SetHilightStyle (anObjSelStyle);
+      (*aStatusPtr)->SetHilightStatus (Standard_True);
+      (*aStatusPtr)->SetHilightStyle (anObjSelStyle);
     }
-    anOwner->State (1);
     if (!anOwner->IsAutoHilight())
     {
       NCollection_Handle<SelectMgr_SequenceOfOwner> aSeq;
@@ -930,7 +772,7 @@ void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdate
     }
     else
     {
-      const Standard_Integer aHiMode = anObj->HasHilightMode() ? anObj->HilightMode() : 0;
+      const Standard_Integer aHiMode = getHilightMode (anObj, anObjSelStyle, (*aStatusPtr)->DisplayMode());
       anOwner->HilightWithColor (myMainPM, anObjSelStyle, aHiMode);
     }
   }
@@ -943,9 +785,6 @@ void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdate
     }
     anObjOwnerMap.Clear();
   }
-
-  if (theToUpdateViewer)
-    UpdateCurrentViewer();
 }
 
 //=======================================================================
@@ -954,24 +793,7 @@ void AIS_InteractiveContext::HilightSelected (const Standard_Boolean theToUpdate
 //=======================================================================
 void AIS_InteractiveContext::UnhilightSelected (const Standard_Boolean theToUpdateViewer)
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->UnhilightPicked (theToUpdateViewer);
-  }
-
-  for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
-  {
-    const Handle(SelectMgr_EntityOwner) anOwner = aSelIter.Value();
-    const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (anOwner->Selectable());
-    if (anOwner == anObj->GlobalSelOwner())
-    {
-      myObjects.ChangeFind (anObj)->SetHilightStatus (Standard_False);
-    }
-
-    anOwner->State (0);
-    const Standard_Integer aHiMode = anObj->HasHilightMode() ? anObj->HasHilightMode() : 0;
-    anOwner->Unhilight (myMainPM, aHiMode);
-  }
+  unhighlightSelected();
 
   if (theToUpdateViewer)
     UpdateCurrentViewer();
@@ -984,35 +806,24 @@ void AIS_InteractiveContext::UnhilightSelected (const Standard_Boolean theToUpda
 //=======================================================================
 void AIS_InteractiveContext::ClearSelected (const Standard_Boolean theToUpdateViewer)
 {
-  if (HasOpenedContext())
-    return myLocalContexts (myCurLocalIndex)->ClearSelected (theToUpdateViewer);
-
   if (NbSelected() == 0)
     return;
 
-  unhighlightSelected();
+  if (myAutoHilight)
+  {
+    unhighlightSelected();
+  }
 
   mySelection->Clear();
-  myMainPM->ClearImmediateDraw();
+  if (myAutoHilight)
+  {
+    clearDynamicHighlight();
+  }
 
   if (theToUpdateViewer)
     UpdateCurrentViewer();
 }
 
-//=======================================================================
-//function : UpdateSelected
-//purpose  :
-//=======================================================================
-void AIS_InteractiveContext::UpdateSelected (const Standard_Boolean theToUpdateViewer)
-{
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->UpdateSelected (theToUpdateViewer);
-  }
-
-  HilightSelected (theToUpdateViewer);
-}
-
 //=======================================================================
 //function : SetSelected
 //purpose  : Sets the whole object as selected and highlights it with selection color
@@ -1020,24 +831,26 @@ void AIS_InteractiveContext::UpdateSelected (const Standard_Boolean theToUpdateV
 void AIS_InteractiveContext::SetSelected (const Handle(AIS_InteractiveObject)& theObject,
                                           const Standard_Boolean theToUpdateViewer)
 {
-  if(HasOpenedContext())
+  if (theObject.IsNull())
   {
-    return myLocalContexts (myCurLocalIndex)->SetSelected (theObject, theToUpdateViewer);
+    return;
   }
 
-  if (theObject.IsNull())
-    return;
-  if(!myObjects.IsBound (theObject))
-    Display (theObject, Standard_False);
-  if (!theObject->HasSelection (theObject->GlobalSelectionMode()))
+  if (!myObjects.IsBound (theObject))
+  {
     return;
+  }
 
-  const Handle(Graphic3d_HighlightStyle)& anObjSelStyle =
-    getSelStyle (theObject);
+  Handle(SelectMgr_EntityOwner) anOwner = theObject->GlobalSelOwner();
+  if (anOwner.IsNull())
+  {
+    return;
+  }
 
-  if (NbSelected() == 1 && myObjects (theObject)->IsHilighted())
+  const Handle(Prs3d_Drawer)& anObjSelStyle = getSelStyle (theObject, anOwner);
+  if (NbSelected() == 1 && myObjects (theObject)->IsHilighted() && myAutoHilight)
   {
-    Handle(Graphic3d_HighlightStyle) aCustomStyle;
+    Handle(Prs3d_Drawer) aCustomStyle;
     if (HighlightStyle (theObject, aCustomStyle))
     {
       if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
@@ -1048,43 +861,46 @@ void AIS_InteractiveContext::SetSelected (const Handle(AIS_InteractiveObject)& t
     return;
   }
 
-  for (mySelection->Init(); mySelection->More(); mySelection->Next())
+  for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
   {
-    const Handle(SelectMgr_EntityOwner) anOwner = mySelection->Value();
-    if (!myFilters->IsOk (anOwner))
+    const Handle(SelectMgr_EntityOwner)& aSelOwner = aSelIter.Value();
+    if (!myFilters->IsOk (aSelOwner))
     {
       continue;
     }
 
-    Handle(AIS_InteractiveObject) aSelectable =
-      Handle(AIS_InteractiveObject)::DownCast (anOwner->Selectable());
-    Unhilight (aSelectable, Standard_False);
-    anOwner->State (0);
-    if (anOwner == aSelectable->GlobalSelOwner())
+    Handle(AIS_InteractiveObject) aSelectable = Handle(AIS_InteractiveObject)::DownCast (aSelOwner->Selectable());
+    if (myAutoHilight)
     {
-      myObjects.ChangeFind (aSelectable)->SetHilightStatus (Standard_False);
+      Unhilight (aSelectable, Standard_False);
+    }
+    if (aSelOwner == aSelectable->GlobalSelOwner())
+    {
+      if (Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (aSelectable))
+      {
+        (*aStatusPtr)->SetHilightStatus (Standard_False);
+      }
     }
   }
 
   // added to avoid untimely viewer update...
-  Handle(SelectMgr_EntityOwner) anOwner = theObject->GlobalSelOwner();
-  if (anOwner.IsNull())
-    return;
   mySelection->ClearAndSelect (anOwner);
 
-  Handle(Graphic3d_HighlightStyle) aCustomStyle;
-  if (HighlightStyle (theObject, aCustomStyle))
+  if (myAutoHilight)
   {
-    if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (HighlightStyle (theObject, aCustomStyle))
+    {
+      if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
+      {
+        HilightWithColor (theObject, anObjSelStyle, Standard_False);
+      }
+    }
+    else
     {
       HilightWithColor (theObject, anObjSelStyle, Standard_False);
     }
   }
-  else
-  {
-    HilightWithColor (theObject, anObjSelStyle, Standard_False);
-  }
-  anOwner->State (1);
 
   if (theToUpdateViewer)
     UpdateCurrentViewer();
@@ -1100,15 +916,12 @@ void AIS_InteractiveContext::SetSelected (const Handle(SelectMgr_EntityOwner)& t
   if (theOwner.IsNull() || !theOwner->HasSelectable() || !myFilters->IsOk (theOwner))
     return;
 
-  const Handle(AIS_InteractiveObject) anObject =
-    Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
-  const Handle(Graphic3d_HighlightStyle)& anObjSelStyle =
-    getSelStyle (anObject);
-
-  if (NbSelected() == 1 && theOwner->IsSelected())
+  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(Graphic3d_HighlightStyle) aCustomStyle;
-    if (HighlightStyle (theOwner, aCustomStyle))
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (myAutoHilight && HighlightStyle (theOwner, aCustomStyle))
     {
       if (!aCustomStyle.IsNull() && anObjSelStyle != aCustomStyle)
       {
@@ -1120,24 +933,22 @@ void AIS_InteractiveContext::SetSelected (const Handle(SelectMgr_EntityOwner)& t
   }
 
   if (!myObjects.IsBound (anObject))
-    Display (anObject, Standard_False);
-
-  unhighlightSelected();
+    return;
 
-  mySelection->ClearAndSelect (theOwner);
-  Handle(Graphic3d_HighlightStyle) aCustomStyle;
-  if (!HighlightStyle (theOwner, aCustomStyle) ||
-    (!aCustomStyle.IsNull() && aCustomStyle != anObjSelStyle))
+  if (myAutoHilight)
   {
-    highlightSelected (theOwner);
+    unhighlightSelected();
   }
 
-  theOwner->State (1);
-  if (theOwner == anObject->GlobalSelOwner())
+  mySelection->ClearAndSelect (theOwner);
+  if (myAutoHilight)
   {
-    Handle(AIS_GlobalStatus)& aState = myObjects.ChangeFind (anObject);
-    aState->SetHilightStatus (Standard_True);
-    aState->SetHilightStyle (anObjSelStyle);
+    Handle(Prs3d_Drawer) aCustomStyle;
+    if (!HighlightStyle (theOwner, aCustomStyle) ||
+      (!aCustomStyle.IsNull() && aCustomStyle != anObjSelStyle))
+    {
+      highlightSelected (theOwner);
+    }
   }
 
   if (theToUpdateViewer)
@@ -1153,42 +964,18 @@ void AIS_InteractiveContext::SetSelected (const Handle(SelectMgr_EntityOwner)& t
 void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(AIS_InteractiveObject)& theObject,
                                                   const Standard_Boolean theToUpdateViewer)
 {
-  if (theObject.IsNull())
-    return;
-
-  if (HasOpenedContext())
-    return myLocalContexts (myCurLocalIndex)->AddOrRemoveSelected (theObject, theToUpdateViewer);
-
-  const Standard_Integer aGlobalSelMode = theObject->GlobalSelectionMode();
-  if (!myObjects.IsBound (theObject) || !theObject->HasSelection (aGlobalSelMode))
+  if (theObject.IsNull()
+  || !myObjects.IsBound (theObject))
+  {
     return;
+  }
 
-  setContextToObject (theObject);
   const Handle(SelectMgr_EntityOwner) anOwner = theObject->GlobalSelOwner();
-
-  if (anOwner.IsNull() || !anOwner->HasSelectable())
-    return;
-
-  AddOrRemoveSelected (anOwner, theToUpdateViewer);
-}
-//=======================================================================
-//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
-    return;
+  if (!anOwner.IsNull()
+    && anOwner->HasSelectable())
+  {
+    AddOrRemoveSelected (anOwner, theToUpdateViewer);
   }
-  
-  myLocalContexts(myCurLocalIndex)->AddOrRemoveSelected(aShap,updateviewer);
-  if(updateviewer) UpdateCurrentViewer();
-  
 }
 
 //=======================================================================
@@ -1199,128 +986,121 @@ void AIS_InteractiveContext::AddOrRemoveSelected (const TopoDS_Shape& aShap,
 void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(SelectMgr_EntityOwner)& theOwner,
                                                   const Standard_Boolean theToUpdateViewer)
 {
-  if (HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->AddOrRemoveSelected (theOwner, theToUpdateViewer);
-
   if (theOwner.IsNull() || !theOwner->HasSelectable())
     return;
 
-  AIS_SelectStatus aSelStat = mySelection->Select (theOwner);
+  if (!myFilters->IsOk(theOwner) && !theOwner->IsSelected())
+    return;
+
+  mySelection->Select (theOwner);
 
-  Standard_Integer aState = aSelStat == AIS_SS_Added ?  1 : 0;
-  theOwner->State (aState);
-  const Handle(AIS_InteractiveObject) anObj =
-    Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
-  const Standard_Boolean isGlobal = anObj->GlobalSelOwner() == theOwner;
-  Handle(AIS_GlobalStatus)& aStatus = myObjects.ChangeFind (anObj);
-  const Standard_Integer aHiMode = anObj->HasHilightMode() ? anObj->HilightMode() : 0;
-  if (aState == 1)
+  if (myAutoHilight)
   {
-    highlightSelected (theOwner);
-    if (isGlobal)
+    const Handle(AIS_InteractiveObject) anObj = Handle(AIS_InteractiveObject)::DownCast (theOwner->Selectable());
+    Handle(AIS_GlobalStatus)* aStatusPtr = myObjects.ChangeSeek (anObj);
+    if (!aStatusPtr)
     {
-      aStatus->SetHilightStatus (Standard_True);
-      aStatus->SetHilightStyle (getSelStyle (anObj));
+      return;
+    }
+
+    if (theOwner->IsSelected())
+    {
+      highlightSelected (theOwner);
     }
-  }
-  else
-  {
-    if (theOwner->IsAutoHilight())
-      theOwner->Unhilight (myMainPM, aHiMode);
     else
-      anObj->ClearSelected();
-    aStatus->SetHilightStatus (Standard_False);
-    aStatus->SetHilightStyle (new Graphic3d_HighlightStyle());
+    {
+      AIS_NListOfEntityOwner anOwners;
+      anOwners.Append (theOwner);
+      unhighlightOwners (anOwners);
+
+      (*aStatusPtr)->SetHilightStyle (Handle(Prs3d_Drawer)());
+    }
   }
 
   if (theToUpdateViewer)
     UpdateCurrentViewer();
 }
 
-
-//=======================================================================
-//function : IsSelected
-//purpose  :
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::IsSelected (const Handle(AIS_InteractiveObject)& theObj) const
+// =======================================================================
+// function : SetSelectedState
+// purpose  :
+// =======================================================================
+Standard_Boolean AIS_InteractiveContext::SetSelectedState (const Handle(SelectMgr_EntityOwner)& theEntity,
+                                                           const Standard_Boolean theIsSelected)
 {
-  if(HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->IsSelected (theObj);
+  if (theEntity.IsNull())
+  {
+    throw Standard_ProgramError ("Internal error: AIS_InteractiveContext::SetSelectedState() called with NO object");
+  }
 
-  if (theObj.IsNull() || !myObjects.IsBound (theObj))
-    return Standard_False;
+  if (!theEntity->HasSelectable()
+    || mySelection->IsSelected (theEntity) == theIsSelected)
+  {
+    return false;
+  }
 
-  const Standard_Integer aGlobalSelMode = theObj->GlobalSelectionMode();
-  const TColStd_ListOfInteger& anActivatedModes = myObjects (theObj)->SelectionModes();
-  Standard_Boolean isGlobalModeActivated = Standard_False;
-  for (TColStd_ListIteratorOfListOfInteger aModeIter (anActivatedModes); aModeIter.More(); aModeIter.Next())
+  if (theEntity->IsAutoHilight())
   {
-    if (aModeIter.Value() == aGlobalSelMode)
-    {
-      isGlobalModeActivated = Standard_True;
-      break;
-    }
+    AddOrRemoveSelected (theEntity, false);
+    return true;
   }
-  if (!theObj->HasSelection (aGlobalSelMode) || !isGlobalModeActivated || theObj->GlobalSelOwner().IsNull())
-    return Standard_False;
 
-  return theObj->GlobalSelOwner()->State() == 1;
+  if (theIsSelected)
+  {
+    const AIS_SelectStatus aSelStatus = mySelection->AddSelect (theEntity);
+    theEntity->SetSelected (true);
+    return aSelStatus == AIS_SS_Added;
+  }
+  else
+  {
+    const AIS_SelectStatus aSelStatus = mySelection->Select (theEntity);
+    theEntity->SetSelected (false);
+    return aSelStatus == AIS_SS_Removed;
+  }
 }
 
 //=======================================================================
 //function : IsSelected
-//purpose  : Returns true is the owner given is selected
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::IsSelected (const Handle(SelectMgr_EntityOwner)& theOwner) const
-{
-  if (HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->IsSelected (theOwner);
-
-  if (theOwner.IsNull())
-    return Standard_False;
-
-  return theOwner->IsSelected();
-}
-
-//=======================================================================
-//function : InitSelected
 //purpose  :
 //=======================================================================
-void AIS_InteractiveContext::InitSelected()
+Standard_Boolean AIS_InteractiveContext::IsSelected (const Handle(AIS_InteractiveObject)& theObj) const
 {
-  if (HasOpenedContext())
+  if (theObj.IsNull())
   {
-    myLocalContexts (myCurLocalIndex)->InitSelected();
-    return;
+    return Standard_False;
   }
 
-  mySelection->Init();
-}
-
-//=======================================================================
-//function : MoreSelected
-//purpose  :
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::MoreSelected() const
-{
-  if (HasOpenedContext())
-    return myLocalContexts (myCurLocalIndex)->MoreSelected();
+  const Handle(AIS_GlobalStatus)* aStatus = myObjects.Seek (theObj);
+  if (aStatus == NULL)
+  {
+    return Standard_False;
+  }
 
-  return mySelection->More();
+  const Standard_Integer aGlobalSelMode = theObj->GlobalSelectionMode();
+  const TColStd_ListOfInteger& anActivatedModes = (*aStatus)->SelectionModes();
+  for (TColStd_ListIteratorOfListOfInteger aModeIter (anActivatedModes); aModeIter.More(); aModeIter.Next())
+  {
+    if (aModeIter.Value() == aGlobalSelMode)
+    {
+      if (Handle(SelectMgr_EntityOwner) aGlobOwner = theObj->GlobalSelOwner())
+      {
+        return aGlobOwner->IsSelected();
+      }
+      return Standard_False;
+    }
+  }
+  return Standard_False;
 }
 
 //=======================================================================
-//function : NextSelected
+//function : FirstSelectedObject
 //purpose  :
 //=======================================================================
-void AIS_InteractiveContext::NextSelected()
+Handle(AIS_InteractiveObject) AIS_InteractiveContext::FirstSelectedObject() const
 {
-  if(HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->NextSelected();
-  }
-
-  mySelection->Next();
+  return !mySelection->Objects().IsEmpty()
+        ? Handle(AIS_InteractiveObject)::DownCast (mySelection->Objects().First()->Selectable())
+        : Handle(AIS_InteractiveObject)();
 }
 
 //=======================================================================
@@ -1329,16 +1109,10 @@ void AIS_InteractiveContext::NextSelected()
 //=======================================================================
 Standard_Boolean AIS_InteractiveContext::HasSelectedShape() const
 {
-  if(HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->HasSelectedShape();
-  }
   if (!mySelection->More())
     return Standard_False;
 
-  const Handle(StdSelect_BRepOwner) anOwner =
-    Handle(StdSelect_BRepOwner)::DownCast (mySelection->Value());
-
+  const Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast (mySelection->Value());
   return !anOwner.IsNull() && anOwner->HasShape();
 }
 
@@ -1348,53 +1122,16 @@ Standard_Boolean AIS_InteractiveContext::HasSelectedShape() const
 //=======================================================================
 TopoDS_Shape AIS_InteractiveContext::SelectedShape() const
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->SelectedShape();
-  }
-
   if (!mySelection->More())
     return TopoDS_Shape();
 
-  const Handle(StdSelect_BRepOwner) anOwner =
-    Handle(StdSelect_BRepOwner)::DownCast (mySelection->Value());
+  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 : SelectedInteractive
-//purpose  :
-//=======================================================================
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::SelectedInteractive() const 
-{
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->SelectedInteractive();
-  }
-
-  return !mySelection->More()
-       ? Handle(AIS_InteractiveObject)()
-       : Handle(AIS_InteractiveObject)::DownCast (mySelection->Value()->Selectable());
-}
-//=======================================================================
-//function : SelectedOwner
-//purpose  :
-//=======================================================================
-Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::SelectedOwner() const
-{
-  if(HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->SelectedOwner();
-  }
-
-  return !mySelection->More()
-       ? Handle(SelectMgr_EntityOwner)()
-       : mySelection->Value();
-}
-
 //=======================================================================
 //function : EntityOwners
 //purpose  : 
@@ -1403,146 +1140,67 @@ void AIS_InteractiveContext::EntityOwners(Handle(SelectMgr_IndexedMapOfOwner)& t
                                          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);
+  }
 
   if (theOwners.IsNull())
+  {
     theOwners = new SelectMgr_IndexedMapOfOwner();
+  }
 
-  TColStd_ListIteratorOfListOfInteger anItr( aModes );
-  for (; anItr.More(); anItr.Next() )
+  for (TColStd_ListIteratorOfListOfInteger anItr (aModes); anItr.More(); anItr.Next())
   {
-    int aMode = anItr.Value();
-    if ( !theIObj->HasSelection( aMode ) )
+    const int aMode = anItr.Value();
+    const Handle(SelectMgr_Selection)& aSel = theIObj->Selection (aMode);
+    if (aSel.IsNull())
+    {
       continue;
+    }
 
-    Handle(SelectMgr_Selection) aSel = theIObj->Selection(aMode);
-
-    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()->BaseSensitive();
-      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);
+        }
+      }
     }
   }
 }
 
-//=======================================================================
-//function : NbSelected
-//purpose  :
-//=======================================================================
-Standard_Integer AIS_InteractiveContext::NbSelected()
-{
-  Standard_Integer aNbSelected = 0;
-  for (InitSelected(); MoreSelected(); NextSelected())
-  {
-    aNbSelected++;
-  }
-
-  return aNbSelected;
-}
-
-//=======================================================================
-//function : HasApplicative
-//purpose  :
-//=======================================================================
-  Standard_Boolean AIS_InteractiveContext::HasApplicative() const 
-{
-  return SelectedInteractive()->HasOwner();
-}
-
-//=======================================================================
-//function : Applicative
-//purpose  :
-//=======================================================================
-Handle(Standard_Transient) AIS_InteractiveContext::Applicative() const 
-{
-  return SelectedInteractive()->GetOwner();
-}
-
-//==================================================
-// Function: HasDetected
-// Purpose :
-//==================================================
-Standard_Boolean AIS_InteractiveContext::HasDetected() const
-{
-  if(HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->HasDetected();
-
-  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 Handle(AIS_InteractiveObject)::DownCast (myLastPicked->Selectable());
-}
-
-//=======================================================================
-//function : HasNextDetected
-//purpose  :
-//=======================================================================
-Standard_Boolean AIS_InteractiveContext::HasNextDetected() const 
-{
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->HasNextDetected();
-  }
-
-  return !myDetectedSeq.IsEmpty() && myCurHighlighted <= myDetectedSeq.Upper();
-}
-
-
-//=======================================================================
-//function : DetectedOwner
-//purpose  : 
-//=======================================================================
-Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::DetectedOwner() const
+const TopoDS_Shape& AIS_InteractiveContext::DetectedShape() const
 {
-  if (HasOpenedContext())
-    return myLocalContexts(myCurLocalIndex)->DetectedOwner();
-
-  return myLastPicked;
+  Handle(StdSelect_BRepOwner) anOwner = Handle(StdSelect_BRepOwner)::DownCast (myLastPicked);
+  return anOwner->Shape();
 }
 
 //=======================================================================
@@ -1552,11 +1210,6 @@ Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::DetectedOwner() const
 Standard_Integer AIS_InteractiveContext::HilightNextDetected (const Handle(V3d_View)& theView,
                                                               const Standard_Boolean  theToRedrawImmediate)
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->HilightNextDetected (theView, theToRedrawImmediate);
-  }
-
   myMainPM->ClearImmediateDraw();
   if (myDetectedSeq.IsEmpty())
   {
@@ -1575,7 +1228,6 @@ Standard_Integer AIS_InteractiveContext::HilightNextDetected (const Handle(V3d_V
 
   highlightWithColor (anOwner, theView->Viewer());
   myLastPicked = anOwner;
-  myLastinMain = myLastPicked;
 
   if (theToRedrawImmediate)
   {
@@ -1593,11 +1245,6 @@ Standard_Integer AIS_InteractiveContext::HilightNextDetected (const Handle(V3d_V
 Standard_Integer AIS_InteractiveContext::HilightPreviousDetected (const Handle(V3d_View)& theView,
                                                                   const Standard_Boolean  theToRedrawImmediate)
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->HilightPreviousDetected (theView, theToRedrawImmediate);
-  }
-
   myMainPM->ClearImmediateDraw();
   if (myDetectedSeq.IsEmpty())
   {
@@ -1616,7 +1263,6 @@ Standard_Integer AIS_InteractiveContext::HilightPreviousDetected (const Handle(V
 
   highlightWithColor (anOwner, theView->Viewer());
   myLastPicked = anOwner;
-  myLastinMain = myLastPicked;
 
   if (theToRedrawImmediate)
   {
@@ -1628,50 +1274,14 @@ Standard_Integer AIS_InteractiveContext::HilightPreviousDetected (const Handle(V
 }
 
 //=======================================================================
-//function : InitDetected
-//purpose  :
-//=======================================================================
-void AIS_InteractiveContext::InitDetected()
-{
-  if (HasOpenedContext())
-  {
-    myLocalContexts (myCurLocalIndex)->InitDetected();
-    return;
-  }
-
-  if (!myDetectedSeq.IsEmpty())
-  {
-    myCurDetected = myDetectedSeq.Lower();
-  }
-}
-
-//=======================================================================
-//function : MoreDetected
+//function : DetectedCurrentOwner
 //purpose  :
 //=======================================================================
-Standard_Boolean AIS_InteractiveContext::MoreDetected() const
+Handle(SelectMgr_EntityOwner) AIS_InteractiveContext::DetectedCurrentOwner() const
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts (myCurLocalIndex)->MoreDetected();
-  }
-
-  return myCurDetected >= myDetectedSeq.Lower() && myCurDetected <= myDetectedSeq.Upper();
-}
-
-//=======================================================================
-//function : NextDetected
-//purpose  :
-//=======================================================================
-void AIS_InteractiveContext::NextDetected()
-{
-  if (HasOpenedContext())
-  {
-    myLocalContexts (myCurLocalIndex)->NextDetected();
-    return;
-  }
-
-  myCurDetected++;
+  return MoreDetected()
+       ? myMainSel->Picked (myDetectedSeq (myCurDetected))
+       : Handle(SelectMgr_EntityOwner)();
 }
 
 //=======================================================================
@@ -1680,19 +1290,12 @@ void AIS_InteractiveContext::NextDetected()
 //=======================================================================
 const TopoDS_Shape& AIS_InteractiveContext::DetectedCurrentShape() const
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->DetectedCurrentShape();
-  }
-
+  Standard_DISABLE_DEPRECATION_WARNINGS
   Handle(AIS_Shape) aCurrentShape = Handle(AIS_Shape)::DownCast (DetectedCurrentObject());
-
-  if (aCurrentShape.IsNull())
-  {
-    return AIS_myDummyShape;
-  }
-
-  return aCurrentShape->Shape();
+  Standard_ENABLE_DEPRECATION_WARNINGS
+  return !aCurrentShape.IsNull()
+        ? aCurrentShape->Shape()
+        : AIS_InteractiveContext_myDummyShape;
 }
 
 //=======================================================================
@@ -1701,40 +1304,7 @@ const TopoDS_Shape& AIS_InteractiveContext::DetectedCurrentShape() const
 //=======================================================================
 Handle(AIS_InteractiveObject) AIS_InteractiveContext::DetectedCurrentObject() const
 {
-  if (HasOpenedContext())
-  {
-    return myLocalContexts(myCurLocalIndex)->DetectedCurrentObject();
-  }
-
   return MoreDetected()
-    ? Handle(AIS_InteractiveObject)::DownCast (myMainSel->Picked (myDetectedSeq (myCurDetected))->Selectable())
-    : NULL;
-}
-
-//=======================================================================
-//function : FirstSelectedObject
-//purpose  :
-//=======================================================================
-Handle(AIS_InteractiveObject) AIS_InteractiveContext::FirstSelectedObject()
-{
-  Handle(AIS_InteractiveObject) anObject;
-
-  if (HasOpenedContext())
-    return anObject;
-
-  InitSelected();
-  if (MoreSelected())
-  {
-    return SelectedInteractive();
-  }
-  return anObject;
-}
-
-//=======================================================================
-//function : RedrawImmediate
-//purpose  : Redisplays immediate strucures of the viewer given according to their visibility
-//=======================================================================
-void AIS_InteractiveContext::RedrawImmediate (const Handle(V3d_Viewer)& theViewer)
-{
-  myMainPM->RedrawImmediate (theViewer);
+       ? Handle(AIS_InteractiveObject)::DownCast (myMainSel->Picked (myDetectedSeq (myCurDetected))->Selectable())
+       : Handle(AIS_InteractiveObject)();
 }