Standard_Boolean ModuleBase_FilterValidated::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
{
+ bool aValid = true;
ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
- if (!anOperation)
- return true;
-
- ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
- ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
- if (!anActiveWidget)
- anActiveWidget = aPanel->preselectionWidget();
- ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
- (anActiveWidget);
- ModuleBase_ViewerPrs aPrs;
- myWorkshop->selection()->fillPresentation(aPrs, theOwner);
-
- return !aWidgetValidated || aWidgetValidated->isValidSelection(aPrs);
+ if (anOperation) {
+ ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
+ ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
+ if (!anActiveWidget)
+ anActiveWidget = aPanel->preselectionWidget();
+ ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
+ (anActiveWidget);
+ ModuleBase_ViewerPrs aPrs;
+ myWorkshop->selection()->fillPresentation(aPrs, theOwner);
+
+ aValid = !aWidgetValidated || aWidgetValidated->isValidSelection(aPrs);
+ }
+
+#ifdef DEBUG_FILTERS
+ qDebug(QString("ModuleBase_FilterValidated::IsOk = %1").arg(aValid).toStdString().c_str());
+#endif
+ return aValid;
}
//TODO (VSV): Check bug in OCCT: Filter result is ignored (bug25340)
Standard_Boolean ModuleBase_ShapeDocumentFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
{
+ bool aValid = true;
+
ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
// the shapes from different documents should be provided if there is no started operation
// in order to show/hide results
- if (!anOperation)
- return true;
-
- std::shared_ptr<GeomAPI_AISObject> aAISObj = AISObjectPtr(new GeomAPI_AISObject());
- if (theOwner->HasSelectable()) {
- Handle(AIS_InteractiveObject) aAisObj =
- Handle(AIS_InteractiveObject)::DownCast(theOwner->Selectable());
- if (!aAisObj.IsNull()) {
- aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aAisObj));
+ if (anOperation) {
+ aValid = Standard_False;
+ std::shared_ptr<GeomAPI_AISObject> aAISObj = AISObjectPtr(new GeomAPI_AISObject());
+ if (theOwner->HasSelectable()) {
+ Handle(AIS_InteractiveObject) aAisObj =
+ Handle(AIS_InteractiveObject)::DownCast(theOwner->Selectable());
+ if (!aAisObj.IsNull()) {
+ aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aAisObj));
+ }
+ }
+ ObjectPtr aObj = myWorkshop->findPresentedObject(aAISObj);
+ if (aObj) {
+ DocumentPtr aDoc = aObj->document();
+ SessionPtr aMgr = ModelAPI_Session::get();
+ aValid = (aDoc == aMgr->activeDocument() || aDoc == aMgr->moduleDocument());
+ }
+ else {
+ // This object is not controlled by the filter
+ aValid = Standard_True;
}
}
- ObjectPtr aObj = myWorkshop->findPresentedObject(aAISObj);
- if (aObj) {
- DocumentPtr aDoc = aObj->document();
- SessionPtr aMgr = ModelAPI_Session::get();
- return (aDoc == aMgr->activeDocument() || aDoc == aMgr->moduleDocument());
- }
- else {
- // This object is not controlled by the filter
- return Standard_True;
- }
- return Standard_False;
+
+#ifdef DEBUG_FILTERS
+ qDebug(QString("ModuleBase_ShapeDocumentFilter::IsOk = %1").arg(aValid).toStdString().c_str());
+#endif
+ return aValid;
}
IMPLEMENT_STANDARD_HANDLE(ModuleBase_ShapeInPlaneFilter, SelectMgr_Filter);
Standard_Boolean ModuleBase_ShapeInPlaneFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
{
- if (!myPlane.get())
- return Standard_True;
+ bool aValid = true;
- if (theOwner->HasSelectable()) {
- Handle(StdSelect_BRepOwner) aShapeOwner = Handle(StdSelect_BRepOwner)::DownCast(theOwner);
- if (!aShapeOwner.IsNull()) {
- TopoDS_Shape aShape = aShapeOwner->Shape();
- TopAbs_ShapeEnum aType = aShape.ShapeType();
- gp_Pln aPlane = myPlane->impl<gp_Pln>();
- switch (aType) {
- case TopAbs_VERTEX:
- {
- gp_Pnt aPnt = BRep_Tool::Pnt(TopoDS::Vertex(aShape));
- return aPlane.Distance(aPnt) < Precision::Confusion();
- }
- case TopAbs_EDGE:
- {
- TopoDS_Edge aEdge = TopoDS::Edge(aShape);
- Standard_Real aFirst, aLast;
- Handle(Geom_Curve) aCurve = BRep_Tool::Curve(aEdge, aFirst, aLast);
- gp_Pnt aFirstPnt = aCurve->Value(aFirst);
- gp_Pnt aMidPnt = aCurve->Value((aFirst + aLast) / 2.);
- gp_Pnt aLastPnt = aCurve->Value(aLast);
- bool aD1 = aPlane.Distance(aFirstPnt) < Precision::Confusion();
- bool aD2 = aPlane.Distance(aMidPnt) < Precision::Confusion();
- bool aD3 = aPlane.Distance(aLastPnt) < Precision::Confusion();
- return aD1 && aD2 && aD3;
+ if (myPlane.get()) {
+ aValid = Standard_False;
+ if (theOwner->HasSelectable()) {
+ Handle(StdSelect_BRepOwner) aShapeOwner = Handle(StdSelect_BRepOwner)::DownCast(theOwner);
+ if (!aShapeOwner.IsNull()) {
+ TopoDS_Shape aShape = aShapeOwner->Shape();
+ TopAbs_ShapeEnum aType = aShape.ShapeType();
+ gp_Pln aPlane = myPlane->impl<gp_Pln>();
+ switch (aType) {
+ case TopAbs_VERTEX:
+ {
+ gp_Pnt aPnt = BRep_Tool::Pnt(TopoDS::Vertex(aShape));
+ return aPlane.Distance(aPnt) < Precision::Confusion();
+ }
+ case TopAbs_EDGE:
+ {
+ TopoDS_Edge aEdge = TopoDS::Edge(aShape);
+ Standard_Real aFirst, aLast;
+ Handle(Geom_Curve) aCurve = BRep_Tool::Curve(aEdge, aFirst, aLast);
+ gp_Pnt aFirstPnt = aCurve->Value(aFirst);
+ gp_Pnt aMidPnt = aCurve->Value((aFirst + aLast) / 2.);
+ gp_Pnt aLastPnt = aCurve->Value(aLast);
+ bool aD1 = aPlane.Distance(aFirstPnt) < Precision::Confusion();
+ bool aD2 = aPlane.Distance(aMidPnt) < Precision::Confusion();
+ bool aD3 = aPlane.Distance(aLastPnt) < Precision::Confusion();
+ return aD1 && aD2 && aD3;
+ }
+ default:
+ // The object can be selected in Object browser and contain, for example, compound.
+ // The compound could not belong to any plane, so the result is false
+ aValid = Standard_False;
+ break;
}
- default:
- // The object can be selected in Object browser and contain, for example, compound.
- // The compound could not belong to any plane, so the result is false
- return Standard_False;
- break;
+ } else {
+ // This is not object controlled by the filter
+ aValid = Standard_True;
}
- } else {
- // This is not object controlled by the filter
- return Standard_True;
}
}
- return Standard_False;
+#ifdef DEBUG_FILTERS
+ qDebug(QString("ModuleBase_ShapeDocumentFilter::IsOk = %1").arg(aValid).toStdString().c_str());
+#endif
+ return aValid;
}
Standard_Boolean PartSet_GlobalFilter::IsOk(const Handle(SelectMgr_EntityOwner)& theOwner) const
{
+ bool aValid = true;
ModuleBase_Operation* anOperation = myWorkshop->module()->currentOperation();
// the shapes from different documents should be provided if there is no started operation
// in order to show/hide results
- if (!anOperation)
- return true;
-
- if (ModuleBase_ShapeDocumentFilter::IsOk(theOwner)) {
- std::shared_ptr<GeomAPI_AISObject> aAISObj = AISObjectPtr(new GeomAPI_AISObject());
- if (theOwner->HasSelectable()) {
- Handle(AIS_InteractiveObject) aAisObj =
- Handle(AIS_InteractiveObject)::DownCast(theOwner->Selectable());
- if (!aAisObj.IsNull()) {
- aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aAisObj));
+ if (!anOperation) {
+ aValid = false;
+ if (ModuleBase_ShapeDocumentFilter::IsOk(theOwner)) {
+ std::shared_ptr<GeomAPI_AISObject> aAISObj = AISObjectPtr(new GeomAPI_AISObject());
+ if (theOwner->HasSelectable()) {
+ Handle(AIS_InteractiveObject) aAisObj =
+ Handle(AIS_InteractiveObject)::DownCast(theOwner->Selectable());
+ if (!aAisObj.IsNull()) {
+ aAISObj->setImpl(new Handle(AIS_InteractiveObject)(aAisObj));
+ }
}
+ ObjectPtr aObj = myWorkshop->findPresentedObject(aAISObj);
+ if (aObj) {
+ FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
+ if (aFeature) {
+ aValid = aFeature->getKind() != FeaturesPlugin_Group::ID();
+ } else
+ aValid = Standard_True;
+ } else
+ // This is not object controlled by the filter
+ aValid = Standard_True;
}
- ObjectPtr aObj = myWorkshop->findPresentedObject(aAISObj);
- if (aObj) {
- FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
- if (aFeature) {
- return aFeature->getKind() != FeaturesPlugin_Group::ID();
- } else
- return Standard_True;
- } else
- // This is not object controlled by the filter
- return Standard_True;
}
- return Standard_False;
+#ifdef DEBUG_FILTERS
+ qDebug(QString("PartSet_GlobalFilter::IsOk = %1").arg(aValid).toStdString().c_str());
+#endif
+ return aValid;
}