X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetShapeSelector.cpp;h=f07c339caa60e82bd6a68645d904559758b1d4d3;hb=6fd3b8e870b7d3c2ff6f3e0557e253137d2cded3;hp=c4832dd8f70b7cb361e0a870d750b715004caaa6;hpb=9afb0f6c26ad69f028b5b230380d39c9374fd593;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp b/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp index c4832dd8f..9f9cd941d 100644 --- a/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp +++ b/src/ModuleBase/ModuleBase_WidgetShapeSelector.cpp @@ -1,22 +1,48 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModuleBase_WidgetShapeSelector.h // Created: 2 June 2014 // Author: Vitaly Smetannikov -#include "ModuleBase_WidgetShapeSelector.h" -#include "ModuleBase_IWorkshop.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include #include -#include -#include +#include +#include +#include +#include #include -#include +#include +#include +#include #include +#include #include +#include +#include +#include +#include +#include +#include +#include +#include +#include + #include +#include #include +#include #include #include @@ -28,8 +54,16 @@ #include #include #include +#include +#include -#include +#include +#include + +#include + +#include +#include typedef QMap ShapeTypes; static ShapeTypes MyShapeTypes; @@ -38,85 +72,137 @@ TopAbs_ShapeEnum ModuleBase_WidgetShapeSelector::shapeType(const QString& theTyp { if (MyShapeTypes.count() == 0) { MyShapeTypes["face"] = TopAbs_FACE; + MyShapeTypes["faces"] = TopAbs_FACE; MyShapeTypes["vertex"] = TopAbs_VERTEX; + MyShapeTypes["vertices"] = TopAbs_VERTEX; MyShapeTypes["wire"] = TopAbs_WIRE; MyShapeTypes["edge"] = TopAbs_EDGE; + MyShapeTypes["edges"] = TopAbs_EDGE; MyShapeTypes["shell"] = TopAbs_SHELL; MyShapeTypes["solid"] = TopAbs_SOLID; + MyShapeTypes["solids"] = TopAbs_SOLID; } - if (MyShapeTypes.contains(theType)) - return MyShapeTypes[theType]; - throw std::invalid_argument("Shape type defined in XML is not implemented!"); + QString aType = theType.toLower(); + if (MyShapeTypes.contains(aType)) + return MyShapeTypes[aType]; + Events_Error::send("Shape type defined in XML is not implemented!"); + return TopAbs_SHAPE; } ModuleBase_WidgetShapeSelector::ModuleBase_WidgetShapeSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop, const Config_WidgetAPI* theData, const std::string& theParentId) - : ModuleBase_ModelWidget(theParent, theData, theParentId), + : ModuleBase_WidgetValidated(theParent, theData, theParentId), myWorkshop(theWorkshop), myIsActive(false) { - myContainer = new QWidget(theParent); - QHBoxLayout* aLayout = new QHBoxLayout(myContainer); + QFormLayout* aLayout = new QFormLayout(this); + ModuleBase_Tools::adjustMargins(aLayout); - aLayout->setContentsMargins(0, 0, 0, 0); QString aLabelText = QString::fromStdString(theData->widgetLabel()); QString aLabelIcon = QString::fromStdString(theData->widgetIcon()); - myLabel = new QLabel(aLabelText, myContainer); + myLabel = new QLabel(aLabelText, this); if (!aLabelIcon.isEmpty()) myLabel->setPixmap(QPixmap(aLabelIcon)); - aLayout->addWidget(myLabel); QString aToolTip = QString::fromStdString(theData->widgetTooltip()); - myTextLine = new QLineEdit(myContainer); + myTextLine = new QLineEdit(this); myTextLine->setReadOnly(true); myTextLine->setToolTip(aToolTip); myTextLine->installEventFilter(this); - myBasePalet = myTextLine->palette(); - myInactivePalet = myBasePalet; - myInactivePalet.setBrush(QPalette::Base, QBrush(Qt::gray, Qt::Dense6Pattern)); - myTextLine->setPalette(myInactivePalet); - - aLayout->addWidget(myTextLine, 1); + aLayout->addRow(myLabel, myTextLine); std::string aTypes = theData->getProperty("shape_types"); - myShapeTypes = QString(aTypes.c_str()).split(' '); + myShapeTypes = QString(aTypes.c_str()).split(' ', QString::SkipEmptyParts); } //******************************************************************** ModuleBase_WidgetShapeSelector::~ModuleBase_WidgetShapeSelector() { + activateSelection(false); } //******************************************************************** -bool ModuleBase_WidgetShapeSelector::storeValue() const +bool ModuleBase_WidgetShapeSelector::storeValueCustom() const { FeaturePtr aSelectedFeature = ModelAPI_Feature::feature(mySelectedObject); if (aSelectedFeature == myFeature) // In order to avoid selection of the same object return false; DataPtr aData = myFeature->data(); - boost::shared_ptr aRef = boost::dynamic_pointer_cast< - ModelAPI_AttributeReference>(aData->attribute(attributeID())); + AttributeReferencePtr aRef = aData->reference(attributeID()); + if (aRef) { + ObjectPtr aObject = aRef->value(); + if (!(aObject && aObject->isSame(mySelectedObject))) { + aRef->setValue(mySelectedObject); + updateObject(myFeature); + return true; + } + } else { + AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID()); + if (aRefAttr) { + ObjectPtr aObject = aRefAttr->object(); + if (!(aObject && aObject->isSame(mySelectedObject))) { + aRefAttr->setObject(mySelectedObject); + updateObject(myFeature); + return true; + } + } else { + AttributeSelectionPtr aSelectAttr = aData->selection(attributeID()); + ResultPtr aBody = std::dynamic_pointer_cast(mySelectedObject); + if (aSelectAttr && aBody && (myShape.get() != NULL)) { + aSelectAttr->setValue(aBody, myShape); + updateObject(myFeature); + return true; + } + } + } + return false; +} - ObjectPtr aObject = aRef->value(); - if (!(aObject && aObject->isSame(mySelectedObject))) { - aRef->setValue(mySelectedObject); - updateObject(myFeature); +//******************************************************************** +void ModuleBase_WidgetShapeSelector::clearAttribute() +{ + DataPtr aData = myFeature->data(); + AttributeSelectionPtr aSelect = aData->selection(attributeID()); + if (aSelect) { + aSelect->setValue(ResultPtr(), std::shared_ptr(new GeomAPI_Shape())); + return; + } + AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID()); + if (aRefAttr) { + aRefAttr->setObject(ObjectPtr()); + return; + } + AttributeReferencePtr aRef = aData->reference(attributeID()); + if (aRef) { + aRef->setObject(ObjectPtr()); } - return true; } //******************************************************************** bool ModuleBase_WidgetShapeSelector::restoreValue() { DataPtr aData = myFeature->data(); - boost::shared_ptr aRef = aData->reference(attributeID()); - bool isBlocked = this->blockSignals(true); - mySelectedObject = aRef->value(); + + AttributeSelectionPtr aSelect = aData->selection(attributeID()); + if (aSelect) { + mySelectedObject = aSelect->context(); + myShape = aSelect->value(); + } else { + AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID()); + if (aRefAttr) { + mySelectedObject = aRefAttr->object(); + } else { + AttributeReferencePtr aRef = aData->reference(attributeID()); + if (aRef) { + mySelectedObject = aRef->value(); + } + } + } updateSelectionName(); this->blockSignals(isBlocked); @@ -127,7 +213,6 @@ bool ModuleBase_WidgetShapeSelector::restoreValue() QList ModuleBase_WidgetShapeSelector::getControls() const { QList aControls; - aControls.append(myLabel); aControls.append(myTextLine); return aControls; } @@ -135,89 +220,154 @@ QList ModuleBase_WidgetShapeSelector::getControls() const //******************************************************************** void ModuleBase_WidgetShapeSelector::onSelectionChanged() { - QList aObjects = myWorkshop->selectedObjects(); - if (aObjects.size() > 0) { - ObjectPtr aObject = aObjects.first(); - if ((!mySelectedObject) && (!aObject)) - return; - if (mySelectedObject && aObject && mySelectedObject->isSame(aObject)) - return; - - // Check that the selection corresponds to selection type - if (!isAccepted(aObject)) - return; - - mySelectedObject = aObject; - if (mySelectedObject) { - updateSelectionName(); - raisePanel(); - static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_TOHIDE); - ModelAPI_EventCreator::get()->sendUpdated(mySelectedObject, anEvent); - Events_Loop::loop()->flush(anEvent); - } else { - myTextLine->setText(""); - } - activateSelection(false); - emit valuesChanged(); - emit focusOutWidget(this); + // In order to make reselection possible + // TODO: check with MPV clearAttribute(); + + //QObjectPtrList aObjects = myWorkshop->selection()->selectedPresentations(); + QList aSelected = myWorkshop->selection()->getSelected(); + if (aSelected.size() > 0) { + if (setSelection(aSelected.first())) + emit focusOutWidget(this); } } //******************************************************************** -bool ModuleBase_WidgetShapeSelector::isAccepted(const ObjectPtr theResult) const +bool ModuleBase_WidgetShapeSelector::setSelection(ModuleBase_ViewerPrs theValue) { - ResultPtr aResult = boost::dynamic_pointer_cast(theResult); + ObjectPtr aObject = theValue.object(); + if ((!mySelectedObject) && (!aObject)) + return false; + + // Check that the selected object is result (others can not be accepted) + ResultPtr aRes = std::dynamic_pointer_cast(aObject); + if (!aRes) + return false; + if (myFeature) { // We can not select a result of our feature - const std::list>& aRes = myFeature->results(); - std::list >::const_iterator aIt; - for (aIt = aRes.cbegin(); aIt != aRes.cend(); ++aIt) { - if ((*aIt) == aResult) + const std::list>& aResList = myFeature->results(); + std::list >::const_iterator aIt; + for (aIt = aResList.cbegin(); aIt != aResList.cend(); ++aIt) { + if ((*aIt) == aRes) return false; } } - boost::shared_ptr aShapePtr = ModelAPI_Tools::shape(aResult); - if (!aShapePtr) + // Check that object belongs to active document or PartSet + DocumentPtr aDoc = aRes->document(); + SessionPtr aMgr = ModelAPI_Session::get(); + if (!(aDoc == aMgr->activeDocument()) && !(aDoc == aMgr->moduleDocument())) return false; - TopoDS_Shape aShape = aShapePtr->impl(); - if (aShape.IsNull()) + + // Check that the result has a shape + GeomShapePtr aShape = ModelAPI_Tools::shape(aRes); + if (!aShape) return false; - TopAbs_ShapeEnum aShapeType = aShape.ShapeType(); - if (aShapeType == TopAbs_COMPOUND) { - foreach (QString aType, myShapeTypes) { - TopExp_Explorer aEx(aShape, shapeType(aType)); - if (aEx.More()) - return true; - } - } else { - foreach (QString aType, myShapeTypes) { - if (shapeType(aType) == aShapeType) - return true; + // Get sub-shapes from local selection + if (!theValue.shape().IsNull()) { + aShape = std::shared_ptr(new GeomAPI_Shape()); + aShape->setImpl(new TopoDS_Shape(theValue.shape())); + } + + // Check that the selection corresponds to selection type + if (!acceptSubShape(aShape)) + return false; +// if (!acceptObjectShape(aObject)) +// return false; + + // Check whether the value is valid for the viewer selection filters + Handle(SelectMgr_EntityOwner) anOwner = theValue.owner(); + if (!anOwner.IsNull()) { + SelectMgr_ListOfFilter aFilters; + selectionFilters(myWorkshop, aFilters); + SelectMgr_ListIteratorOfListOfFilter aIt(aFilters); + for (; aIt.More(); aIt.Next()) { + const Handle(SelectMgr_Filter)& aFilter = aIt.Value(); + if (!aFilter->IsOk(anOwner)) + return false; } } + if (isValid(aObject, aShape)) { + setObject(aObject, aShape); + return true; + } return false; } //******************************************************************** -void ModuleBase_WidgetShapeSelector::updateSelectionName() +void ModuleBase_WidgetShapeSelector::setObject(ObjectPtr theObj, std::shared_ptr theShape) { + mySelectedObject = theObj; + myShape = theShape; if (mySelectedObject) { - std::string aName = mySelectedObject->data()->name(); - myTextLine->setText(QString::fromStdString(aName)); - } else { - if (myIsActive) { - QString aMsg = tr("Select a "); - int i = 0; - foreach (QString aType, myShapeTypes) { - if (i > 0) - aMsg += " or "; - aMsg += aType; - i++; + raisePanel(); + } + updateSelectionName(); + emit valuesChanged(); +} + +//******************************************************************** +//bool ModuleBase_WidgetShapeSelector::acceptObjectShape(const ObjectPtr theResult) const +//{ +// ResultPtr aResult = std::dynamic_pointer_cast(theResult); +// +// // Check that the shape of necessary type +// std::shared_ptr aShapePtr = ModelAPI_Tools::shape(aResult); +// if (!aShapePtr) +// return false; +// TopoDS_Shape aShape = aShapePtr->impl(); +// if (aShape.IsNull()) +// return false; +// +// TopAbs_ShapeEnum aShapeType = aShape.ShapeType(); +// if (aShapeType == TopAbs_COMPOUND) { +// foreach (QString aType, +// myShapeTypes) { +// TopExp_Explorer aEx(aShape, shapeType(aType)); +// if (aEx.More()) +// return true; +// } +// } else { +// foreach (QString aType, myShapeTypes) { +// if (shapeType(aType) == aShapeType) +// return true; +// } +// } +// return false; +//} + +//******************************************************************** +bool ModuleBase_WidgetShapeSelector::acceptSubShape(std::shared_ptr theShape) const +{ + TopoDS_Shape aShape = theShape->impl(); + foreach (QString aType, myShapeTypes) { + if (aShape.ShapeType() == shapeType(aType)) + return true; + } + return false; +} + +//******************************************************************** +void ModuleBase_WidgetShapeSelector::updateSelectionName() +{ + DataPtr aData = myFeature->data(); + bool isNameUpdated = false; + if (aData.get() != NULL) { + AttributeSelectionPtr aSelect = aData->selection(attributeID()); + if (aSelect) { + myTextLine->setText(QString::fromStdString(aSelect->namingName())); + isNameUpdated = true; + } + } + if (!isNameUpdated) { + if (mySelectedObject) { + std::string aName = mySelectedObject->data()->name(); + myTextLine->setText(QString::fromStdString(aName)); + } else { + if (myIsActive) { + myTextLine->setText(""); } - myTextLine->setText(aMsg); - } else - myTextLine->setText(tr("No object selected")); + } } } @@ -225,26 +375,28 @@ void ModuleBase_WidgetShapeSelector::updateSelectionName() //******************************************************************** void ModuleBase_WidgetShapeSelector::activateSelection(bool toActivate) { + if (myIsActive == toActivate) + return; myIsActive = toActivate; - if (myIsActive) - myTextLine->setPalette(myBasePalet); - else - myTextLine->setPalette(myInactivePalet); updateSelectionName(); - if (myIsActive) - connect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); - else - disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); + if (myIsActive) { + QIntList aList; + foreach (QString aType, myShapeTypes) { + aList.append(shapeType(aType)); + } + myWorkshop->activateSubShapesSelection(aList); + } else { + myWorkshop->deactivateSubShapesSelection(); + } - if (myWorkshop->selectedObjects().size() > 0) - onSelectionChanged(); + activateFilters(myWorkshop, myIsActive); } //******************************************************************** void ModuleBase_WidgetShapeSelector::raisePanel() const { - QWidget* aParent = myContainer->parentWidget(); + QWidget* aParent = this->parentWidget(); QWidget* aLastPanel = 0; while (!aParent->inherits("QDockWidget")) { aLastPanel = aParent; @@ -259,18 +411,100 @@ void ModuleBase_WidgetShapeSelector::raisePanel() const } //******************************************************************** -bool ModuleBase_WidgetShapeSelector::focusTo() +void ModuleBase_WidgetShapeSelector::activateCustom() { + connect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); activateSelection(true); - return true; } //******************************************************************** -bool ModuleBase_WidgetShapeSelector::eventFilter(QObject* theObj, QEvent* theEvent) +void ModuleBase_WidgetShapeSelector::deactivate() +{ + activateSelection(false); + disconnect(myWorkshop, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); +} + +//******************************************************************** +bool ModuleBase_WidgetShapeSelector::isValid(ObjectPtr theObj, std::shared_ptr theShape) { - if (theObj == myTextLine) { - if (theEvent->type() == QEvent::FocusIn) - activateSelection(true); + bool isValid = ModuleBase_WidgetValidated::isValid(theObj, theShape); + if (!isValid) + return false; + + SessionPtr aMgr = ModelAPI_Session::get(); + ModelAPI_ValidatorsFactory* aFactory = aMgr->validators(); + std::list aValidators; + std::list > anArguments; + aFactory->validators(parentID(), attributeID(), aValidators, anArguments); + + DataPtr aData = myFeature->data(); + //AttributePtr aAttr = aData->attribute(attributeID()); + AttributeRefAttrPtr aRefAttr = aData->refattr(attributeID()); + if (aRefAttr) { + // 1. saves the previous attribute values + bool isObject = aRefAttr->isObject(); + ObjectPtr aPrevObject = aRefAttr->object(); + AttributePtr aPrevAttr = aRefAttr->attr(); + + // 2. store the current values, disable the model's update + aData->blockSendAttributeUpdated(true); + ObjectPtr aPrevSelectedObject = mySelectedObject; + GeomShapePtr aPrevShape = myShape; + + mySelectedObject = theObj; + myShape = theShape; + storeValueCustom(); + + // 3. check the acceptability of the current values + std::list::iterator aValidator = aValidators.begin(); + std::list >::iterator aArgs = anArguments.begin(); + bool aValid = true; + for (; aValidator != aValidators.end() && aValid; aValidator++, aArgs++) { + const ModelAPI_RefAttrValidator* aAttrValidator = + dynamic_cast(*aValidator); + if (aAttrValidator) { + aValid = aAttrValidator->isValid(aRefAttr, *aArgs); + } + } + + // 4. if the values are not valid, restore the previous values to the attribute + //if (!aValid) { + mySelectedObject = aPrevSelectedObject; + myShape = aPrevShape; + if (isObject) + aRefAttr->setObject(aPrevObject); + else + aRefAttr->setAttr(aPrevAttr); + //} + // 5. enable the model's update + aData->blockSendAttributeUpdated(false); + //updateObject(myFeature); + + return aValid; } - return ModuleBase_ModelWidget::eventFilter(theObj, theEvent); -} \ No newline at end of file + + // Check the acceptability of the object as attribute + std::list::iterator aValidator = aValidators.begin(); + std::list >::iterator aArgs = anArguments.begin(); + for (; aValidator != aValidators.end(); aValidator++, aArgs++) { + const ModelAPI_RefAttrValidator* aAttrValidator = + dynamic_cast(*aValidator); + if (aAttrValidator) { + //if (!aAttrValidator->isValid(myFeature, *aArgs, theObj)) { + // return false; + //} + } + else { + const ModelAPI_ShapeValidator* aShapeValidator = + dynamic_cast(*aValidator); + if (aShapeValidator) { + DataPtr aData = myFeature->data(); + AttributeSelectionPtr aSelectAttr = aData->selection(attributeID()); + if (!aShapeValidator->isValid(myFeature, *aArgs, theObj, aSelectAttr, theShape)) { + return false; + } + } + } + } + return true; +}