Salome HOME
"2.11 Constraint with a point from the intersection between an outer edge and plane...
[modules/shaper.git] / src / PartSet / PartSet_Filters.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_Filters.cpp
4 // Created:     08 Nov 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #include "PartSet_Filters.h"
8
9 #include <ModuleBase_IWorkshop.h>
10 #include "ModuleBase_IModule.h"
11
12 #include <ModelAPI_Feature.h>
13 #include <ModelAPI_ResultPart.h>
14 #include <ModelAPI_Session.h>
15 #include <FeaturesPlugin_Group.h>
16
17 #include <AIS_InteractiveObject.hxx>
18 #include <AIS_Shape.hxx>
19
20
21 IMPLEMENT_STANDARD_HANDLE(PartSet_GlobalFilter, ModuleBase_ShapeDocumentFilter);
22 IMPLEMENT_STANDARD_RTTIEXT(PartSet_GlobalFilter, ModuleBase_ShapeDocumentFilter);
23
24 Standard_Boolean PartSet_GlobalFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
25 {
26   bool aValid = true;
27   ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
28   // the shapes from different documents should be provided if there is no started operation
29   // in order to show/hide results
30   if (anOperation) {
31     aValid = false;
32     if (ModuleBase_ShapeDocumentFilter::IsOk(theOwner)) {
33       std::shared_ptr<GeomAPI_AISObject> aAISObj = AISObjectPtr(new GeomAPI_AISObject());
34       if (theOwner->HasSelectable()) {
35         Handle(AIS_InteractiveObject) aAisObj = 
36           Handle(AIS_InteractiveObject)::DownCast(theOwner->Selectable());
37         if (!aAisObj.IsNull()) {
38           aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aAisObj));
39         }
40       }
41       ObjectPtr aObj = myWorkshop->findPresentedObject(aAISObj);
42       if (aObj) {
43         ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
44         // result of parts belongs to PartSet document and can be selected only when PartSet is active
45         // in order to do not select the result of the active part.
46         if (aResult.get() && aResult->groupName() == ModelAPI_ResultPart::group()) {
47           SessionPtr aMgr = ModelAPI_Session::get();
48           aValid = aMgr->activeDocument() == aMgr->moduleDocument();
49         }
50         else {
51           FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
52           if (aFeature) {
53             aValid = aFeature->getKind() != FeaturesPlugin_Group::ID();
54           } else 
55             aValid = Standard_True;
56         }
57       } else
58         // This is not object controlled by the filter
59         aValid = Standard_True;
60     }
61   }
62 #ifdef DEBUG_FILTERS
63   qDebug(QString("PartSet_GlobalFilter::IsOk = %1").arg(aValid).toStdString().c_str());
64 #endif
65   return aValid;
66 }