X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_OperationSketch.cpp;h=e5290aa77eb9bc3cbd86ec285cb4b6afdf623019;hb=1d7a043abfadf964bf38802e8adb5a4773fec900;hp=a12c38b0a4cdc8e7264b20a06e4ee9a1259dc038;hpb=37bf139347283d16d59b08079d52be5f6f29a38c;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_OperationSketch.cpp b/src/PartSet/PartSet_OperationSketch.cpp index a12c38b0a..e5290aa77 100644 --- a/src/PartSet/PartSet_OperationSketch.cpp +++ b/src/PartSet/PartSet_OperationSketch.cpp @@ -4,17 +4,34 @@ #include -#include +#include +#include + +#include + +#include +#include +#include +#include +#include + +#include + +#include +#include +#include #ifdef _DEBUG #include #endif +#include + using namespace std; PartSet_OperationSketch::PartSet_OperationSketch(const QString& theId, QObject* theParent) -: PartSet_OperationSketchBase(theId, theParent) +: PartSet_OperationSketchBase(theId, theParent), myIsEditMode(false) { } @@ -22,7 +39,83 @@ PartSet_OperationSketch::~PartSet_OperationSketch() { } -bool PartSet_OperationSketch::isPerformedImmediately() const +std::list PartSet_OperationSketch::getSelectionModes(boost::shared_ptr theFeature) const +{ + std::list aModes; + if (!myIsEditMode) + aModes.push_back(TopAbs_FACE); + else { + aModes.push_back(TopAbs_VERTEX); + aModes.push_back(TopAbs_EDGE); + } + return aModes; +} + +void PartSet_OperationSketch::mouseReleased(QMouseEvent* theEvent, Handle_V3d_View theView, + const std::list& theSelected) +{ + if (theSelected.empty()) + return; + + if (!myIsEditMode) { + XGUI_ViewerPrs aPrs = theSelected.front(); + const TopoDS_Shape& aShape = aPrs.shape(); + if (!aShape.IsNull()) { + setSketchPlane(aShape); + myIsEditMode = true; + } + } +} + +void PartSet_OperationSketch::mouseMoved(QMouseEvent* theEvent, Handle(V3d_View) theView, + const std::list& theSelected) +{ + if (!myIsEditMode || !(theEvent->buttons() & Qt::LeftButton) || theSelected.empty()) + return; + + boost::shared_ptr aFeature = PartSet_Tools::NearestFeature(theEvent->pos(), + theView, feature(), theSelected); + if (aFeature) + emit launchOperation(PartSet_OperationEditLine::Type(), aFeature); +} + +void PartSet_OperationSketch::setSketchPlane(const TopoDS_Shape& theShape) { - return false; + if (theShape.IsNull()) + return; + + // get selected shape + boost::shared_ptr aGShape(new GeomAPI_Shape); + aGShape->setImpl(new TopoDS_Shape(theShape)); + + // get plane parameters + boost::shared_ptr aPlane = GeomAlgoAPI_FaceBuilder::plane(aGShape); + + // set plane parameters to feature + boost::shared_ptr aData = feature()->data(); + double anA, aB, aC, aD; + aPlane->coefficients(anA, aB, aC, aD); + + boost::shared_ptr anAttr; + /* + aData->real(SKETCH_ATTR_PLANE_A)->setValue(anA); + aData->real(SKETCH_ATTR_PLANE_B)->setValue(aB); + aData->real(SKETCH_ATTR_PLANE_C)->setValue(aC); + aData->real(SKETCH_ATTR_PLANE_D)->setValue(aD); + */ + // temporary solution for main planes only + boost::shared_ptr anOrigin = + boost::dynamic_pointer_cast(aData->attribute(SKETCH_ATTR_ORIGIN)); + anOrigin->setValue(0, 0, 0); + boost::shared_ptr aNormal = + boost::dynamic_pointer_cast(aData->attribute(SKETCH_ATTR_NORM)); + aNormal->setValue(anA, aB, aC); + boost::shared_ptr aDirX = + boost::dynamic_pointer_cast(aData->attribute(SKETCH_ATTR_DIRX)); + aDirX->setValue(aB, aC, anA); + boost::shared_ptr aDirY = + boost::dynamic_pointer_cast(aData->attribute(SKETCH_ATTR_DIRY)); + aDirY->setValue(aC, anA, aB); + boost::shared_ptr aDir = aPlane->direction(); + emit planeSelected(aDir->x(), aDir->y(), aDir->z()); }