Salome HOME
An attempt of porting to current OCCT.
[modules/shaper.git] / src / XGUI / XGUI_Displayer.cpp
index aeafb2a43e506621a8acebd704e90191750cc3cf..eb2b6bbc7dd0c82ed90391fe41cce9ffff6d72da 100644 (file)
@@ -1,8 +1,22 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
-
-// File:        XGUI_Displayer.cpp
-// Created:     20 Apr 2014
-// Author:      Natalia ERMOLAEVA
+// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+//
 
 #include "XGUI_Displayer.h"
 #include "XGUI_Workshop.h"
 #include <AppElements_Viewer.h>
 #endif
 
-#ifdef VINSPECTOR
-#include <VInspectorAPI_PluginMgr.h>
-#include <VInspectorAPI_Communicator.h>
-#include <AppElements_MainWindow.h>
-static bool VInspector_FirstCall = true;
-#endif
-
 #include <ModelAPI_Document.h>
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Object.h>
@@ -48,9 +55,11 @@ static bool VInspector_FirstCall = true;
 #include <AIS_Shape.hxx>
 #include <AIS_Dimension.hxx>
 #include <AIS_Trihedron.hxx>
+#ifdef BEFORE_TRIHEDRON_PATCH
 #include <AIS_Axis.hxx>
 #include <AIS_Plane.hxx>
 #include <AIS_Point.hxx>
+#endif
 #include <AIS_Selection.hxx>
 #include <TColStd_ListIteratorOfListOfInteger.hxx>
 #include <SelectMgr_ListOfFilter.hxx>
@@ -64,8 +73,8 @@ static bool VInspector_FirstCall = true;
 #include <TColStd_MapOfTransient.hxx>
 #include <TColStd_MapIteratorOfMapOfTransient.hxx>
 
-#ifdef VINSPECTOR
-#include <VInspectorAPI_CallBack.h>
+#ifdef TINSPECTOR
+#include <VInspectorAPI_CallBack.hxx>
 #endif
 
 #include <Events_Loop.h>
@@ -89,7 +98,7 @@ const int MOUSE_SENSITIVITY_IN_PIXEL = 10;
 
 //#define DEBUG_OCCT_SHAPE_SELECTION
 
-//#define DEBUG_OCCT_26172
+#define CLEAR_OUTDATED_SELECTION_BEFORE_REDISPLAY
 
 void displayedObjects(const Handle(AIS_InteractiveContext)& theAIS, AIS_ListOfInteractive& theList)
 {
@@ -107,14 +116,32 @@ QString qIntListInfo(const QIntList& theValues, const QString& theSeparator = QS
   return anInfo.join(theSeparator);
 }
 
+void deselectPresentation(const Handle(AIS_InteractiveObject) theObject,
+                          const Handle(AIS_InteractiveContext)& theContext)
+{
+  NCollection_List<Handle(SelectBasics_EntityOwner)> aResultOwners;
+
+  for (theContext->InitSelected(); theContext->MoreSelected(); theContext->NextSelected()) {
+    Handle(SelectMgr_EntityOwner) anOwner = theContext->SelectedOwner();
+    if (anOwner.IsNull()) // TODO: check why it is possible
+      continue;
+    if (anOwner->Selectable() == theObject && anOwner->IsSelected())
+      aResultOwners.Append(anOwner);
+  }
+  NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt (aResultOwners);
+  Handle(SelectMgr_EntityOwner) anOwner;
+  for (; anOwnersIt.More(); anOwnersIt.Next()) {
+    anOwner = Handle(SelectMgr_EntityOwner)::DownCast(anOwnersIt.Value());
+    if (!anOwner.IsNull())
+      theContext->AddOrRemoveSelected(anOwner, false);
+  }
+}
+
 XGUI_Displayer::XGUI_Displayer(XGUI_Workshop* theWorkshop)
   : myWorkshop(theWorkshop), myNeedUpdate(false),
   myIsTrihedronActive(true), myViewerBlockedRecursiveCount(0),
   myIsFirstAISContextUse(true)
 {
-  #ifdef VINSPECTOR
-  myCommunicator = 0;
-  #endif
   myCustomPrs = std::shared_ptr<GeomAPI_ICustomPrs>(new XGUI_CustomPrs(theWorkshop));
 }
 
@@ -246,7 +273,7 @@ bool XGUI_Displayer::display(ObjectPtr theObject, AISObjectPtr theAIS,
       anAISIO->Attributes()->SetFaceBoundaryDraw( Standard_True );
     anAISIO->SetDisplayMode(aDispMode);
     aContext->Display(anAISIO, aDispMode, 0, false, true, AIS_DS_Displayed);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Display(anAISIO);
     #endif
     aDisplayed = true;
@@ -276,7 +303,7 @@ bool XGUI_Displayer::erase(ObjectPtr theObject, const bool theUpdateViewer)
     if (!anAIS.IsNull()) {
       emit beforeObjectErase(theObject, anObject);
       aContext->Remove(anAIS, false/*update viewer*/);
-      #ifdef VINSPECTOR
+      #ifdef TINSPECTOR
       if (getCallBack()) getCallBack()->Remove(anAIS);
       #endif
       aErased = true;
@@ -354,9 +381,12 @@ bool XGUI_Displayer::redisplay(ObjectPtr theObject, bool theUpdateViewer)
       if (aNeedToRestoreSelection)
         myWorkshop->module()->storeSelection();
 
+#ifdef CLEAR_OUTDATED_SELECTION_BEFORE_REDISPLAY
+      deselectPresentation(aAISIO, aContext);
+#endif
       aContext->Redisplay(aAISIO, false);
 
-      #ifdef VINSPECTOR
+      #ifdef TINSPECTOR
       if (getCallBack()) getCallBack()->Redisplay(aAISIO);
       #endif
 
@@ -402,6 +432,10 @@ void XGUI_Displayer::deactivate(ObjectPtr theObject, const bool theUpdateViewer)
     Handle(AIS_InteractiveObject) anAIS = anObj->impl<Handle(AIS_InteractiveObject)>();
 
     deactivateAIS(anAIS);
+    // the selection from the previous activation modes should be cleared manually (#26172)
+#ifndef CLEAR_OUTDATED_SELECTION_BEFORE_REDISPLAY
+    deselectPresentation(anAIS, aContext);
+#endif
     if (theUpdateViewer)
       updateViewer();
   }
@@ -599,7 +633,7 @@ bool XGUI_Displayer::isActive(ObjectPtr theObject) const
 
   TColStd_ListOfInteger aModes;
   aContext->ActivatedModes(anAIS, aModes);
-  #ifdef VINSPECTOR
+  #ifdef TINSPECTOR
   if (getCallBack()) getCallBack()->ActivatedModes(anAIS, aModes);
   #endif
 
@@ -615,7 +649,7 @@ void XGUI_Displayer::setSelected(const  QList<ModuleBase_ViewerPrsPtr>& theValue
     return;
   aContext->UnhilightSelected(false);
   aContext->ClearSelected(false);
-  #ifdef VINSPECTOR
+  #ifdef TINSPECTOR
   if (getCallBack()) getCallBack()->ClearSelected();
   #endif
   NCollection_DataMap<TopoDS_Shape, NCollection_Map<Handle(AIS_InteractiveObject)>>
@@ -630,7 +664,7 @@ void XGUI_Displayer::setSelected(const  QList<ModuleBase_ViewerPrsPtr>& theValue
       // problem 2: IO is not specified, so the first found owner is selected, as a result
       // it might belong to another result
       aContext->AddOrRemoveSelected(aShape, false);
-      #ifdef VINSPECTOR
+      #ifdef TINSPECTOR
       if (getCallBack()) getCallBack()->AddOrRemoveSelected(aShape);
       #endif
 #else
@@ -655,7 +689,7 @@ void XGUI_Displayer::setSelected(const  QList<ModuleBase_ViewerPrsPtr>& theValue
           //aContext->SetSelected(anAIS, false);
           // The selection in the context was cleared, so the method sets the objects are selected
           aContext->AddOrRemoveSelected(anAIS, false);
-          #ifdef VINSPECTOR
+          #ifdef TINSPECTOR
           if (getCallBack()) getCallBack()->AddOrRemoveSelected(anAIS);
           #endif
         }
@@ -673,9 +707,9 @@ void XGUI_Displayer::clearSelected(const bool theUpdateViewer)
 {
   Handle(AIS_InteractiveContext) aContext = AISContext();
   if (!aContext.IsNull()) {
-    aContext->UnhilightCurrents(false);
+    aContext->UnhilightSelected(false);//UnhilightCurrents(false);
     aContext->ClearSelected(theUpdateViewer);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->ClearSelected();
     #endif
   }
@@ -693,7 +727,7 @@ bool XGUI_Displayer::eraseAll(const bool theUpdateViewer)
       if (!anIO.IsNull()) {
         emit beforeObjectErase(aObj, aAISObj);
         aContext->Remove(anIO, false/*update viewer*/);
-        #ifdef VINSPECTOR
+        #ifdef TINSPECTOR
         if (getCallBack()) getCallBack()->Remove(anIO);
         #endif
         aErased = true;
@@ -712,14 +746,14 @@ bool XGUI_Displayer::eraseAll(const bool theUpdateViewer)
 
 void deactivateObject(Handle(AIS_InteractiveContext) theContext,
                       Handle(AIS_InteractiveObject) theObject
-#ifdef VINSPECTOR
-                      , VInspectorAPI_CallBack* theCallBack
+#ifdef TINSPECTOR
+                      , Handle(VInspectorAPI_CallBack) theCallBack
 #endif
                       )
 {
   if (!theObject.IsNull()) {
     theContext->Deactivate(theObject);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (theCallBack) theCallBack->Deactivate(theObject);
     #endif
   }
@@ -732,49 +766,50 @@ void XGUI_Displayer::deactivateTrihedron(const bool theUpdateViewer) const
   if (!aTrihedron.IsNull() && aContext->IsDisplayed(aTrihedron)) {
     Handle(AIS_Trihedron) aTrie = Handle(AIS_Trihedron)::DownCast(aTrihedron);
     deactivateObject(aContext, aTrie
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
       );
 
     /// #1136 hidden axis are selected in sketch
+#ifdef BEFORE_TRIHEDRON_PATCH
     deactivateObject(aContext, aTrie->XAxis()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
     deactivateObject(aContext, aTrie->YAxis()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
     deactivateObject(aContext, aTrie->Axis()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
     deactivateObject(aContext, aTrie->Position()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
 
     deactivateObject(aContext, aTrie->XYPlane()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
     deactivateObject(aContext, aTrie->XZPlane()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
     deactivateObject(aContext, aTrie->YZPlane()
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
       , getCallBack()
     #endif
     );
-
+#endif
     if (theUpdateViewer)
       updateViewer();
   }
@@ -931,7 +966,7 @@ void XGUI_Displayer::updateViewer() const
 {
   Handle(AIS_InteractiveContext) aContext = AISContext();
   if (!aContext.IsNull() && isUpdateEnabled()) {
-    myWorkshop->viewer()->Zfitall();
+    //myWorkshop->viewer()->Zfitall();
     aContext->UpdateCurrentViewer();
   } else {
     myNeedUpdate = true;
@@ -953,7 +988,7 @@ void XGUI_Displayer::activateAIS(const Handle(AIS_InteractiveObject)& theIO,
       aContext->Activate(theIO, theMode, false);
     } else
       aContext->Activate(theIO, theMode, false);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Activate(theIO, theMode);
     #endif
 
@@ -990,13 +1025,13 @@ void XGUI_Displayer::deactivateAIS(const Handle(AIS_InteractiveObject)& theIO,
   if (!aContext.IsNull()) {
     if (theMode == -1) {
       aContext->Deactivate(theIO);
-      #ifdef VINSPECTOR
+      #ifdef TINSPECTOR
       if (getCallBack()) getCallBack()->Deactivate(theIO);
       #endif
     }
     else {
       aContext->Deactivate(theIO, theMode);
-      #ifdef VINSPECTOR
+      #ifdef TINSPECTOR
       if (getCallBack()) getCallBack()->Deactivate(theIO, theMode);
       #endif
     }
@@ -1014,20 +1049,6 @@ Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const
 {
   Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext();
   if (!aContext.IsNull() && myIsFirstAISContextUse/*&& !aContext->HasOpenedContext()*/) {
-#ifdef VINSPECTOR
-    if (VInspector_FirstCall) {
-      XGUI_Displayer* aDisplayer = (XGUI_Displayer*)this;
-      VInspectorAPI_Communicator* aCommunicator = VInspectorAPI_PluginMgr::activateVInspector(
-                                        "VInspector.dll", aContext);
-      aDisplayer->setCommunicator(aCommunicator);
-      #ifndef HAVE_SALOME
-      AppElements_Viewer* aViewer = myWorkshop->mainWindow()->viewer();
-      if (aViewer)
-        aViewer->setCallBack(aCommunicator->getCallBack());
-      #endif
-      VInspector_FirstCall = false;
-    }
-#endif
     XGUI_Displayer* aDisplayer = (XGUI_Displayer*)this;
     aDisplayer->myIsFirstAISContextUse = false;
     //aContext->OpenLocalContext();
@@ -1050,23 +1071,23 @@ Handle(SelectMgr_AndFilter) XGUI_Displayer::GetFilter()
 }
 
 bool XGUI_Displayer::displayAIS(AISObjectPtr theAIS, const bool toActivateInSelectionModes,
-                                bool theUpdateViewer)
+                                const Standard_Integer theDisplayMode, bool theUpdateViewer)
 {
   bool aDisplayed = false;
   Handle(AIS_InteractiveContext) aContext = AISContext();
   Handle(AIS_InteractiveObject) anAISIO = theAIS->impl<Handle(AIS_InteractiveObject)>();
   if (!aContext.IsNull() && !anAISIO.IsNull()) {
-    aContext->Display(anAISIO, 0/*wireframe*/, 0, false/*update viewer*/, true, AIS_DS_Displayed);
-    #ifdef VINSPECTOR
+    aContext->Display(anAISIO, theDisplayMode, 0, false/*update viewer*/, true, AIS_DS_Displayed);
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Display(anAISIO);
     #endif
     aDisplayed = true;
     aContext->Deactivate(anAISIO);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Deactivate(anAISIO);
     #endif
     aContext->Load(anAISIO);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Load(anAISIO);
     #endif
     if (toActivateInSelectionModes) {
@@ -1092,7 +1113,7 @@ bool XGUI_Displayer::eraseAIS(AISObjectPtr theAIS, const bool theUpdateViewer)
     Handle(AIS_InteractiveObject) anAISIO = theAIS->impl<Handle(AIS_InteractiveObject)>();
     if (!anAISIO.IsNull() && aContext->IsDisplayed(anAISIO)) {
       aContext->Remove(anAISIO, false/*update viewer*/);
-      #ifdef VINSPECTOR
+      #ifdef TINSPECTOR
       if (getCallBack()) getCallBack()->Remove(anAISIO);
       #endif
       aErased = true;
@@ -1273,7 +1294,7 @@ bool XGUI_Displayer::activate(const Handle(AIS_InteractiveObject)& theIO,
   // The result is the selection of the first IO is lost.
   TColStd_ListOfInteger aTColModes;
   aContext->ActivatedModes(theIO, aTColModes);
-  #ifdef VINSPECTOR
+  #ifdef TINSPECTOR
   if (getCallBack()) getCallBack()->ActivatedModes(theIO, aTColModes);
   #endif
   TColStd_ListIteratorOfListOfInteger itr( aTColModes );
@@ -1293,12 +1314,13 @@ bool XGUI_Displayer::activate(const Handle(AIS_InteractiveObject)& theIO,
     }
   }
   if (isDeactivated) {
-#ifdef DEBUG_OCCT_26172
     // the selection from the previous activation modes should be cleared manually (#26172)
-    theIO->ClearSelected();
-    #ifdef VINSPECTOR
-    if (getCallBack()) getCallBack()->ClearSelected(theIO);
-    #endif
+    //theIO->ClearSelected();
+    //#ifdef TINSPECTOR
+    //if (getCallBack()) getCallBack()->ClearSelected(theIO);
+    //#endif
+#ifndef CLEAR_OUTDATED_SELECTION_BEFORE_REDISPLAY
+    deselectPresentation(theIO, aContext);
 #endif
     // For performance issues
     //if (theUpdateViewer)
@@ -1317,7 +1339,7 @@ bool XGUI_Displayer::activate(const Handle(AIS_InteractiveObject)& theIO,
       aContext->SelectionManager()->Load(theIO);
     }
 
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Load(theIO);
     #endif
   }
@@ -1365,6 +1387,8 @@ bool XGUI_Displayer::customizeObject(ObjectPtr theObject)
   }
   bool isCustomized = aCustomPrs.get() &&
                       aCustomPrs->customisePresentation(aResult, anAISObj, myCustomPrs);
+  isCustomized = myWorkshop->module()->afterCustomisePresentation(aResult, anAISObj, myCustomPrs)
+                 || isCustomized;
   return isCustomized;
 }
 
@@ -1421,6 +1445,14 @@ void XGUI_Displayer::getPresentations(const ObjectPtr& theObject,
   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
   if (aResult.get()) {
     AISObjectPtr aAISObj = getAISObject(aResult);
+    if (aAISObj.get() == NULL) {
+      // if result is a result of a composite feature, it is visualized by visualization of
+      // composite children, so we should get one of this presentations
+      ResultCompSolidPtr aCompSolid = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
+      if (aCompSolid.get() && aCompSolid->numberOfSubs() > 0) {
+        aAISObj = getAISObject(aCompSolid->subResult(0));
+      }
+    }
     if (aAISObj.get() != NULL) {
       Handle(AIS_InteractiveObject) anAIS = aAISObj->impl<Handle(AIS_InteractiveObject)>();
       if (!anAIS.IsNull() && !thePresentations.Contains(anAIS))
@@ -1475,7 +1507,7 @@ void XGUI_Displayer::displayTrihedron(bool theToDisplay) const
                         Standard_True /* update viewer*/,
                         Standard_False /* allow decomposition */,
                         AIS_DS_Displayed /* xdisplay status */);
-    #ifdef VINSPECTOR
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Display(aTrihedron);
     #endif
 
@@ -1486,8 +1518,8 @@ void XGUI_Displayer::displayTrihedron(bool theToDisplay) const
   } else {
     deactivateTrihedron(false);
 
-    aContext->Erase(aTrihedron);
-    #ifdef VINSPECTOR
+    aContext->Erase(aTrihedron, Standard_True);
+    #ifdef TINSPECTOR
     if (getCallBack()) getCallBack()->Remove(aTrihedron);
     #endif
   }
@@ -1505,28 +1537,13 @@ QIntList XGUI_Displayer::activeSelectionModes() const
   return aModes;
 }
 
-#ifdef VINSPECTOR
-void XGUI_Displayer::setCommunicator(VInspectorAPI_Communicator* theCommunicator)
-{
-  myCommunicator = theCommunicator;
-}
-
-void XGUI_Displayer::setVInspectorVisible(const bool theVisible)
-{
-  if (myCommunicator)
-    myCommunicator->setVisible(true);
-}
-
-VInspectorAPI_CallBack* XGUI_Displayer::getCallBack() const
-{
-  return myCommunicator ? myCommunicator->getCallBack() : NULL;
-}
-#endif
-
 void XGUI_Displayer::AddOrRemoveSelectedShapes(Handle(AIS_InteractiveContext) theContext,
                            const NCollection_DataMap<TopoDS_Shape,
                            NCollection_Map<Handle(AIS_InteractiveObject)>>& theShapesToBeSelected)
 {
+  NCollection_Map<Handle(AIS_InteractiveObject)> aCompsolidPresentations;
+  NCollection_Map<Handle(AIS_InteractiveObject)> aSelectedPresentations;
+
   NCollection_List<Handle(SelectBasics_EntityOwner)> anActiveOwners;
   theContext->MainSelector()->ActiveOwners(anActiveOwners);
   NCollection_List<Handle(SelectBasics_EntityOwner)>::Iterator anOwnersIt (anActiveOwners);
@@ -1547,16 +1564,49 @@ void XGUI_Displayer::AddOrRemoveSelectedShapes(Handle(AIS_InteractiveContext) th
     Handle(StdSelect_BRepOwner) BROwnr = Handle(StdSelect_BRepOwner)::DownCast(anOwner);
     if (!BROwnr.IsNull() && BROwnr->HasShape()) {
       const TopoDS_Shape& aShape = BROwnr->Shape();
-      if (!aShape.IsNull() && theShapesToBeSelected.IsBound(aShape)) {
-        Handle(AIS_InteractiveObject) anOwnerPresentation =
-                                    Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
-        NCollection_Map<Handle(AIS_InteractiveObject)> aPresentations =
-                                    theShapesToBeSelected.Find(aShape);
-        if (aPresentations.Contains(anOwnerPresentation)) {
-          theContext->AddOrRemoveSelected(anOwner);
-          anOwner->SetSelected (Standard_True);
+      if (aShape.IsNull())
+        continue;
+
+      Handle(ModuleBase_BRepOwner) aCustomOwner = Handle(ModuleBase_BRepOwner)::DownCast(anOwner);
+
+      NCollection_DataMap<TopoDS_Shape, NCollection_Map<Handle(AIS_InteractiveObject)> >
+                                             ::Iterator aShapeIt(theShapesToBeSelected);
+      for (; aShapeIt.More(); aShapeIt.Next()) {
+        const TopoDS_Shape& aParameterShape = aShapeIt.Key();
+        // isSame should be used here as it does not check orientation of shapes
+        // despite on isEqual of shapes or IsBound for shape in QMap. Orientation is
+        // different for Edges shapes in model shape and owner even if this is the same shape
+        if (aParameterShape.IsSame(aShape)) {
+          Handle(AIS_InteractiveObject) anOwnerPresentation =
+                            Handle(AIS_InteractiveObject)::DownCast(anOwner->Selectable());
+          NCollection_Map<Handle(AIS_InteractiveObject)> aPresentations =
+                                      theShapesToBeSelected.Find(aParameterShape);
+          if (aPresentations.Contains(anOwnerPresentation)) {
+            theContext->AddOrRemoveSelected(anOwner, Standard_False);
+            anOwner->SetSelected (Standard_True);
+            // collect selected presentations to do not select them if compsolid is selected
+            if (!aSelectedPresentations.Contains(anOwnerPresentation))
+              aSelectedPresentations.Add(anOwnerPresentation);
+          }
+        }
+        else if (!aCustomOwner.IsNull()) { // CompSolid processing #2219
+          // shape of owner is compound, but shape to be selected is compsolid, so
+          // we need to compare shape to AIS presentation of owner(rule of the owner creation)
+          Handle(AIS_Shape) anOwnerPresentation =
+                            Handle(AIS_Shape)::DownCast(anOwner->Selectable());
+          const TopoDS_Shape& aPresentationShape = anOwnerPresentation->Shape();
+          if (aParameterShape.IsSame(anOwnerPresentation->Shape()) &&
+              !aCompsolidPresentations.Contains(anOwnerPresentation))
+            aCompsolidPresentations.Add(anOwnerPresentation);
         }
       }
     }
   }
+  // select CompSolid presentations if their owners was not selected yet
+  NCollection_Map<Handle(AIS_InteractiveObject)>::Iterator anIt (aCompsolidPresentations);
+  for (; anIt.More(); anIt.Next()) {
+    if (aSelectedPresentations.Contains(anIt.Value()))
+      continue;
+    theContext->AddOrRemoveSelected(anIt.Value(), Standard_False);
+  }
 }