X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetShapeSelector.cpp;h=86f7a3471d935804915ccdb23045586cee2abd45;hb=28c90c232ffe159b88edd156286a398bfa3bb73b;hp=4a53eb0438d730b3671190346966dee17abb413d;hpb=8ae3ed1cc05feccdc0a133421511ba7a0ec76609;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp b/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp index 4a53eb043..86f7a3471 100644 --- a/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp +++ b/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp @@ -6,8 +6,10 @@ #include #include #include +#include #include #include + #include #include #include @@ -19,6 +21,7 @@ #include #include #include +#include #include #include #include @@ -106,7 +109,10 @@ ModuleBase_WidgetShapeSelector::ModuleBase_WidgetShapeSelector(QWidget* theParen aLayout->addWidget(myTextLine, 1); std::string aTypes = theData->getProperty("shape_types"); - myShapeTypes = QString(aTypes.c_str()).split(' '); + myShapeTypes = QString(aTypes.c_str()).split(' ', QString::SkipEmptyParts); + + std::string aObjTypes = theData->getProperty("object_types"); + myObjectTypes = QString(aObjTypes.c_str()).split(' ', QString::SkipEmptyParts); myUseSubShapes = theData->getBooleanAttribute("use_subshapes", false); } @@ -213,6 +219,10 @@ void ModuleBase_WidgetShapeSelector::onSelectionChanged() if (!aShape) return; + /// Check that object has acceptable type + if (!acceptObjectType(aObject)) + return; + // Get sub-shapes from local selection if (myUseSubShapes) { NCollection_List aShapeList; @@ -226,10 +236,10 @@ void ModuleBase_WidgetShapeSelector::onSelectionChanged() // Check that the selection corresponds to selection type if (myUseSubShapes) { - if (!isAccepted(aShape)) + if (!acceptSubShape(aShape)) return; } else { - if (!isAccepted(aObject)) + if (!acceptObjectShape(aObject)) return; } setObject(aObject, aShape); @@ -256,7 +266,7 @@ void ModuleBase_WidgetShapeSelector::setObject(ObjectPtr theObj, boost::shared_p } //******************************************************************** -bool ModuleBase_WidgetShapeSelector::isAccepted(const ObjectPtr theResult) const +bool ModuleBase_WidgetShapeSelector::acceptObjectShape(const ObjectPtr theResult) const { ResultPtr aResult = boost::dynamic_pointer_cast(theResult); @@ -285,7 +295,7 @@ bool ModuleBase_WidgetShapeSelector::isAccepted(const ObjectPtr theResult) const } //******************************************************************** -bool ModuleBase_WidgetShapeSelector::isAccepted(boost::shared_ptr theShape) const +bool ModuleBase_WidgetShapeSelector::acceptSubShape(boost::shared_ptr theShape) const { TopoDS_Shape aShape = theShape->impl(); foreach (QString aType, myShapeTypes) { @@ -295,6 +305,26 @@ bool ModuleBase_WidgetShapeSelector::isAccepted(boost::shared_ptr return false; } +//******************************************************************** +bool ModuleBase_WidgetShapeSelector::acceptObjectType(const ObjectPtr theObject) const +{ + // Definition of types is not obligatory. If types are not defined then + // it means that accepted any type + if (myObjectTypes.isEmpty()) + return true; + + foreach (QString aType, myObjectTypes) { + if (aType.toLower() == "construction") { + ResultConstructionPtr aConstr = + boost::dynamic_pointer_cast(theObject); + return (aConstr != NULL); + } // ToDo: Process other types of objects + } + // Object type is defined but not found + return false; +} + + //******************************************************************** void ModuleBase_WidgetShapeSelector::updateSelectionName() { @@ -331,15 +361,26 @@ void ModuleBase_WidgetShapeSelector::activateSelection(bool toActivate) if (myIsActive) { connect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); if (myUseSubShapes) { + QIntList aList; foreach (QString aType, myShapeTypes) aList.append(shapeType(aType)); myWorkshop->activateSubShapesSelection(aList); + if (!myObjectTypes.isEmpty()) { + myObjTypeFilter = new ModuleBase_ObjectTypesFilter(myWorkshop, myObjectTypes); + myWorkshop->viewer()->clearSelectionFilters(); + myWorkshop->viewer()->addSelectionFilter(myObjTypeFilter); + } } } else { disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); - if (myUseSubShapes) + if (myUseSubShapes) { + if (!myObjTypeFilter.IsNull()) { + myWorkshop->viewer()->removeSelectionFilter(myObjTypeFilter); + myObjTypeFilter.Nullify(); + } myWorkshop->deactivateSubShapesSelection(); + } } } @@ -385,7 +426,7 @@ bool ModuleBase_WidgetShapeSelector::setValue(ModuleBase_WidgetValue* theValue) dynamic_cast(theValue); if (aFeatureValue && aFeatureValue->object()) { ObjectPtr aObject = aFeatureValue->object(); - if (isAccepted(aObject)) { + if (acceptObjectShape(aObject)) { setObject(aObject); return true; }