- Added browser which show all constraints in the active sketch.
- This browser provide functionality for Delete, Edit and Suppress constraints
- Suppressed constraints can be reactivated
- for constraints will be added new attribute ConstraintState. If True - constraint active, otherwise - suppressed.
This parameter can be used as optional for python script. Example of using:
Sketch_1.setCoincident(SketchLine_4.endPoint(), SketchLine_1.startPoint(), is_active = False)
Documentationalso will be added
/// \param theMenu a popup menu to be shown in the object browser
virtual void addObjectBrowserMenu(QMenu* theMenu) const {};
+ /// Add menu items for constraints browser into the given menu
+ /// \param theMenu a popup menu to be shown in the constraints browser
+ virtual void addConstraintBrowserMenu(QMenu* theMenu) const {};
+
/// Creates custom widgets for property panel
/// \param theType a type of widget
/// \param theParent the parent object
{
public:
/// Types of the selection place, where the selection is obtained
- enum SelectionPlace { Browser, Viewer, AllControls };
+ enum SelectionPlace { Browser, Viewer, ConstraintsBorwser, AllControls };
virtual ~ModuleBase_ISelection() {}
#include <XGUI_OperationMgr.h>
#include <XGUI_PropertyPanel.h>
#include <XGUI_SelectionMgr.h>
+#include <XGUI_SketchConstraintsBrowser.h>
#include <XGUI_Tools.h>
#include <XGUI_Workshop.h>
// the abort leads to selection lost on constraint objects. It can be corrected after #386 issue
ModuleBase_ISelection* aSel = workshop()->selection();
QObjectPtrList aSelectedObj = aSel->selectedPresentations();
+
+ QObjectPtrList aConstrSelectedObj = getWorkshop()->constraintsBrowser()->selectedConstraints();
+ // if list not empty, delete only constraints from list
+ if (!aConstrSelectedObj.isEmpty())
+ {
+ QString aDescription = aWorkshop->contextMenuMgr()->action("DELETE_CMD")->text();
+ ModuleBase_Operation* anOpAction = new ModuleBase_Operation(aDescription, this);
+
+ bool isCommitted;
+ if (!anOpMgr->canStartOperation(anOpAction->id(), isCommitted))
+ return true;
+
+ anOpMgr->startOperation(anOpAction);
+ aWorkshop->deleteFeatures(aConstrSelectedObj);
+ anOpMgr->commitOperation();
+ return true;
+ }
+
// if there are no selected objects in the viewer, that means that the selection in another
// place cased this method. It is necessary to return the false value to understande in above
// method that delete is not processed
#include "PartSet_PreviewSketchPlane.h"
#include <XGUI_ModuleConnector.h>
+#include <XGUI_SketchConstraintsBrowser.h>
#include <XGUI_Displayer.h>
#include <XGUI_Workshop.h>
#include <XGUI_ContextMenuMgr.h>
#include <ModelAPI_Events.h>
#include <ModelAPI_Session.h>
#include <ModelAPI_AttributeString.h>
+#include <ModelAPI_AttributeRefAttr.h>
+#include <ModelAPI_AttributeDouble.h>
#include <ModelAPI_Validator.h>
#include <ModelAPI_Tools.h>
delete mySketchPlane;
}
+XGUI_SketchConstraintsBrowser* PartSet_SketcherMgr::constraintsBrowser()
+{
+ return workshop()->constraintsBrowser();
+}
+
void PartSet_SketcherMgr::onEnterViewPort()
{
// 1. if the mouse over window, update the next flag. Do not perform update visibility of
myIsPopupMenuActive = false;
}
+void PartSet_SketcherMgr::onEditValues()
+{
+ auto aConstrBrowser = constraintsBrowser();
+
+ auto anOperMgr = workshop()->operationMgr();
+
+ ModuleBase_Operation* anOpAction = new ModuleBase_Operation("Edit Constraints value");
+
+ anOperMgr->startOperation(anOpAction);
+ int aRow = 0;
+ QTreeWidgetItemIterator anIter(aConstrBrowser->getViewTree());
+ while (*anIter) {
+ // Change value
+ auto aData = (*anIter)->data(3, 0);
+ if (!aData.isNull())
+ {
+ double aNewValue = aData.toDouble();
+ auto aName = (*anIter)->data(1, 0).toString();
+ FeaturePtr aConstr;
+ for (int i = 0; i < myCurrentSketch->numberOfSubs(); ++i)
+ {
+ auto aFFeat = myCurrentSketch->subFeature(i);
+ if (aName == QString::fromStdWString(aFFeat->name()))
+ {
+ aConstr = aFFeat;
+ break;
+ }
+ }
+
+ aConstr->real("ConstraintValue")->setValue(aNewValue);
+
+ if (aConstr->real("AngleValue"))
+ aConstr->real("AngleValue")->setValue(aNewValue);
+ else if (aConstr->real("DistanceValue"))
+ aConstr->real("DistanceValue")->setValue(aNewValue);
+ else
+ aConstr->real("ConstraintValue")->setValue(aNewValue);
+ }
+
+ ++aRow;
+ ++anIter;
+ }
+ anOperMgr->commitOperation();
+ workshop()->viewer()->update();
+}
+
+// Rename
+void PartSet_SketcherMgr::onUpdateConstraintsList()
+{
+ auto aConstrBrowser = constraintsBrowser();
+
+ std::vector<std::pair<FeaturePtr, std::vector<AttributePtr>>> aConstraints;
+
+ CompositeFeaturePtr aComposite =
+ std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(activeSketch());
+ int aNumSubs = aComposite->numberOfSubs();
+ for (int i = 0; i < aNumSubs; ++i)
+ {
+ auto aFeat = aComposite->subFeature(i);
+ if (aFeat->refattr(SketchPlugin_Constraint::ENTITY_A()) &&
+ (!aFeat->attribute(SketchPlugin_Constraint::ENTITY_B()) || aFeat->refattr(SketchPlugin_Constraint::ENTITY_B())))
+ {
+ std::pair<FeaturePtr, std::vector<AttributePtr>> anElemContr;
+ anElemContr.first = aFeat;
+
+ anElemContr.second.push_back(aFeat->refattr(SketchPlugin_Constraint::ENTITY_A()));
+ if (aFeat->attribute(SketchPlugin_Constraint::ENTITY_B()))
+ anElemContr.second.push_back(aFeat->refattr(SketchPlugin_Constraint::ENTITY_B()));
+
+ aConstraints.push_back(anElemContr);
+ }
+ }
+ aConstrBrowser->UpdateTree(aConstraints);
+}
+
+// Bad way, but it works
+void PartSet_SketcherMgr::onDeactivate(bool isNeedDeactivate, std::vector<FeaturePtr> theFeatures)
+{
+ std::list<ObjectPtr> anUpd;
+ auto anOperMgr = workshop()->operationMgr();
+
+ ModuleBase_OperationFeature* anOpAction = new ModuleBase_OperationFeature("Deactivate/Activate");
+ anOpAction->setFeature(myCurrentSketch);
+ startNestedSketch(anOpAction);
+ anOperMgr->startOperation(anOpAction);
+
+ for (int i = 0; i < theFeatures.size(); ++i)
+ {
+ theFeatures[i]->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(isNeedDeactivate);
+
+ static const Events_ID anEvent = Events_Loop::eventByName(EVENT_VISUAL_ATTRIBUTES);
+ ModelAPI_EventCreator::get()->sendUpdated(theFeatures[i], anEvent, false);
+ }
+
+ stopNestedSketch(anOpAction);
+ anOperMgr->commitOperation();
+ workshop()->viewer()->update();
+}
+
void PartSet_SketcherMgr::get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent,
Point& thePoint)
{
PartSet_Fitter* aFitter = new PartSet_Fitter(this);
myModule->workshop()->viewer()->setFitter(aFitter);
+
+ auto aDesktop = workshop()->desktop();
+ myConstraintsBrowser = workshop()->createConstraintsBrowser(aDesktop);
+
+ // For process edit/delete and deactivate/activate constraints
+ connect(constraintsBrowser(), SIGNAL(editValues()), this, SLOT(onEditValues()));
+ connect(constraintsBrowser(), SIGNAL(deleteCosnstraints()), this, SLOT(onUpdateConstraintsList()));
+ connect(constraintsBrowser(), SIGNAL(deactivate(bool, std::vector<FeaturePtr>)), this, SLOT(onDeactivate(bool, std::vector<FeaturePtr>)));
+ aDesktop->addDockWidget(Qt::RightDockWidgetArea, myConstraintsBrowser);
+
+ onUpdateConstraintsList();
}
void PartSet_SketcherMgr::stopSketch(ModuleBase_Operation* theOperation)
workshop()->selectionActivate()->updateSelectionFilters();
workshop()->selectionActivate()->updateSelectionModes();
workshop()->viewer()->set2dMode(false);
+
+ disconnect(constraintsBrowser(), SIGNAL(editValues()), this, SLOT(onEditValues()));
+ disconnect(constraintsBrowser(), SIGNAL(deleteCosnstraints()), this, SLOT(onUpdateConstraintsList()));
+ disconnect(constraintsBrowser(), SIGNAL(deactivate(bool, std::vector<FeaturePtr>)), this, SLOT(onDeactivate(bool, std::vector<FeaturePtr>)));
+
+ workshop()->desktop()->removeDockWidget(myConstraintsBrowser);
+ std::vector<std::pair<FeaturePtr, std::vector<AttributePtr>>> anEmpty;
+ constraintsBrowser()->UpdateTree(anEmpty);
+ workshop()->removeConstrBrowser();
+
+ myConstraintsBrowser->deleteLater();
}
void PartSet_SketcherMgr::startNestedSketch(ModuleBase_Operation* theOperation)
//**************************************************************************************
std::vector<int> PartSet_SketcherMgr::colorOfObject(const ObjectPtr& theObject,
- const FeaturePtr& theFeature, bool isConstruction) const
+ const FeaturePtr& theFeature, bool isConstruction, bool isSuppressedConstraint) const
{
PartSet_OverconstraintListener* aOCListener = myModule->overconstraintListener();
std::string aKind = theFeature->getKind();
+ // may be Preference Config_PropManager::color("Visualization", "sketch_deactivated_color");
+ if (isSuppressedConstraint)
+ return { 128, 128, 128 };
+
if (aOCListener->isConflictingObject(theObject)) {
return Config_PropManager::color("Visualization", "sketch_overconstraint_color");
}
aFeature->data()->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID());
bool isConstruction = anAuxiliaryAttr.get() != NULL && anAuxiliaryAttr->value();
- std::vector<int> aColor = colorOfObject(theObject, aFeature, isConstruction);
+ bool isSupressed = false;
+ if (aFeature->data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()))
+ isSupressed = !aFeature->data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value();
+
+ std::vector<int> aColor = colorOfObject(theObject, aFeature, isConstruction, isSupressed);
if (!aColor.empty()) {
// The code below causes redisplay again
if (ModelAPI_Session::get()->isOperation()) {
class XGUI_OperationMgr;
class XGUI_Workshop;
class XGUI_Displayer;
+class XGUI_SketchConstraintsBrowser;
class PartSet_ExternalPointsMgr;
class AIS_InteractiveObject;
/// Returns true if current mode of objects creation is by drag mouse
bool isDragModeCreation() const;
+ // Get constraints browser
+ XGUI_SketchConstraintsBrowser* constraintsBrowser();
public slots:
/// Process sketch plane selected event
/// \param toShow a state of the check box
void onShowPoints(bool toShow);
+ void onEditValues();
+ void onUpdateConstraintsList();
+ void onDeactivate(bool isNeedDeactivate, std::vector<FeaturePtr> theFeatures);
+
private slots:
/// Toggle show constraints
void onShowConstraintsToggle(int theType, bool theState);
XGUI_OperationMgr* operationMgr() const;
std::vector<int> colorOfObject(const ObjectPtr& theObject,
- const FeaturePtr& aFeature, bool isConstruction) const;
+ const FeaturePtr& aFeature, bool isConstruction, bool isSuppressedConstraint) const;
private:
PartSet_Module* myModule;
bool myNoDragMoving;
QPoint myMousePoint;
+
+ QDockWidget* myConstraintsBrowser;
};
theDumper << ", " << isSigned->value();
}
+ bool isActive = aBase->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value();
+ theDumper << ", is_active = " << isActive;
+
theDumper << ")" << std::endl;
}
theDumper << ", " << aValueAttr;
std::string aType = angleTypeToString(aBase);
- theDumper << ", type = \"" << aType << "\")" << std::endl;
+ theDumper << ", type = \"" << aType << "\"";
+ bool isActive = aBase->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value();
+ theDumper << ", is_active = " << isActive << ")" << std::endl;
}
const ModelHighAPI_RefAttr & theLine1,
const ModelHighAPI_RefAttr & theLine2,
const ModelHighAPI_Double & theValue,
- const std::string& theType)
+ const std::string& theType,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintAngle::ID());
fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
if (aVersion == SketchPlugin_ConstraintAngle::THE_VERSION_1) {
std::string aTypeLC = theType;
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setAngleComplementary(
const ModelHighAPI_RefAttr & theLine1,
const ModelHighAPI_RefAttr & theLine2,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintAngle::ID());
fillAttribute(theValue, aFeature->real(SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID()));
fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setAngleBackward(
const ModelHighAPI_RefAttr & theLine1,
const ModelHighAPI_RefAttr & theLine2,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintAngle::ID());
fillAttribute(theValue, aFeature->real(SketchPlugin_ConstraintAngle::ANGLE_VALUE_ID()));
fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setCoincident(
const ModelHighAPI_RefAttr & thePoint1,
- const ModelHighAPI_RefAttr & thePoint2)
+ const ModelHighAPI_RefAttr & thePoint2,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintCoincidence::ID());
fillAttribute(thePoint1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(thePoint2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setCollinear(
const ModelHighAPI_RefAttr & theLine1,
- const ModelHighAPI_RefAttr & theLine2)
+ const ModelHighAPI_RefAttr & theLine2,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintCollinear::ID());
fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
const ModelHighAPI_RefAttr & thePoint,
const ModelHighAPI_RefAttr & thePointOrLine,
const ModelHighAPI_Double & theValue,
- bool isSigned)
+ bool isSigned,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintDistance::ID());
fillAttribute(thePointOrLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
fillAttribute(isSigned, aFeature->boolean(SketchPlugin_ConstraintDistance::SIGNED()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setSignedDistance(
const ModelHighAPI_RefAttr & thePoint,
const ModelHighAPI_RefAttr & thePointOrLine,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
- return setDistance(thePoint, thePointOrLine, theValue, true);
+ return setDistance(thePoint, thePointOrLine, theValue, true, theIsActive);
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setUnsignedDistance(
const ModelHighAPI_RefAttr & thePoint,
const ModelHighAPI_RefAttr & thePointOrLine,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
- return setDistance(thePoint, thePointOrLine, theValue, false);
+ return setDistance(thePoint, thePointOrLine, theValue, false, theIsActive);
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setHorizontalDistance(
const ModelHighAPI_RefAttr & thePoint1,
const ModelHighAPI_RefAttr & thePoint2,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintDistanceHorizontal::ID());
fillAttribute(thePoint2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
fillAttribute(theValue,
aFeature->real(SketchPlugin_ConstraintDistanceAlongDir::DISTANCE_VALUE_ID()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setVerticalDistance(
const ModelHighAPI_RefAttr & thePoint1,
const ModelHighAPI_RefAttr & thePoint2,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintDistanceVertical::ID());
fillAttribute(thePoint2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
fillAttribute(theValue,
aFeature->real(SketchPlugin_ConstraintDistanceAlongDir::DISTANCE_VALUE_ID()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setEqual(
const ModelHighAPI_RefAttr & theObject1,
- const ModelHighAPI_RefAttr & theObject2)
+ const ModelHighAPI_RefAttr & theObject2,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintEqual::ID());
fillAttribute(theObject1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theObject2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setFixed(
- const ModelHighAPI_RefAttr & theObject)
+ const ModelHighAPI_RefAttr & theObject,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintRigid::ID());
fillAttribute(theObject, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setHorizontal(
- const ModelHighAPI_RefAttr & theLine)
+ const ModelHighAPI_RefAttr & theLine,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintHorizontal::ID());
fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setLength(
const ModelHighAPI_RefAttr & theLine,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintLength::ID());
fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setMiddlePoint(
const ModelHighAPI_RefAttr & thePoint,
- const ModelHighAPI_RefAttr & theLine)
+ const ModelHighAPI_RefAttr & theLine,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintMiddle::ID());
fillAttribute(thePoint, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setParallel(
const ModelHighAPI_RefAttr & theLine1,
- const ModelHighAPI_RefAttr & theLine2)
+ const ModelHighAPI_RefAttr & theLine2,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintParallel::ID());
fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setPerpendicular(
const ModelHighAPI_RefAttr & theLine1,
- const ModelHighAPI_RefAttr & theLine2)
+ const ModelHighAPI_RefAttr & theLine2,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintPerpendicular::ID());
fillAttribute(theLine1, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theLine2, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setRadius(
const ModelHighAPI_RefAttr & theCircleOrArc,
- const ModelHighAPI_Double & theValue)
+ const ModelHighAPI_Double & theValue,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintRadius::ID());
fillAttribute(theCircleOrArc, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theValue, aFeature->real(SketchPlugin_Constraint::VALUE()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setTangent(
const ModelHighAPI_RefAttr & theLine,
- const ModelHighAPI_RefAttr & theCircle)
+ const ModelHighAPI_RefAttr & theCircle,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintTangent::ID());
fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
fillAttribute(theCircle, aFeature->refattr(SketchPlugin_Constraint::ENTITY_B()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
std::shared_ptr<ModelHighAPI_Interface> SketchAPI_Sketch::setVertical(
- const ModelHighAPI_RefAttr & theLine)
+ const ModelHighAPI_RefAttr & theLine,
+ bool theIsActive)
{
std::shared_ptr<ModelAPI_Feature> aFeature =
compositeFeature()->addFeature(SketchPlugin_ConstraintVertical::ID());
fillAttribute(theLine, aFeature->refattr(SketchPlugin_Constraint::ENTITY_A()));
+ fillAttribute(theIsActive, aFeature->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()));
aFeature->execute();
return InterfacePtr(new ModelHighAPI_Interface(aFeature));
}
const ModelHighAPI_RefAttr & theLine1,
const ModelHighAPI_RefAttr & theLine2,
const ModelHighAPI_Double & theValue,
- const std::string& type = std::string());
+ const std::string& type = std::string(),
+ bool is_active = true);
/// Set complementary angle
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setAngleComplementary(
const ModelHighAPI_RefAttr & theLine1,
const ModelHighAPI_RefAttr & theLine2,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set backward angle (= 360 - angle)
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setAngleBackward(
const ModelHighAPI_RefAttr & theLine1,
const ModelHighAPI_RefAttr & theLine2,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set coincident
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setCoincident(
const ModelHighAPI_RefAttr & thePoint1,
- const ModelHighAPI_RefAttr & thePoint2);
+ const ModelHighAPI_RefAttr & thePoint2,
+ bool is_active = true);
/// Set collinear
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setCollinear(
const ModelHighAPI_RefAttr & theLine1,
- const ModelHighAPI_RefAttr & theLine2);
+ const ModelHighAPI_RefAttr & theLine2,
+ bool is_active = true);
/// Set distance
SKETCHAPI_EXPORT
const ModelHighAPI_RefAttr & thePoint,
const ModelHighAPI_RefAttr & thePointOrLine,
const ModelHighAPI_Double & theValue,
- bool isSigned = false);
+ bool isSigned = false,
+ bool is_active = true);
/// Set signed distance
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setSignedDistance(
const ModelHighAPI_RefAttr & thePoint,
const ModelHighAPI_RefAttr & thePointOrLine,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set unsigned distance
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setUnsignedDistance(
const ModelHighAPI_RefAttr & thePoint,
const ModelHighAPI_RefAttr & thePointOrLine,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set horizontal distance
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setHorizontalDistance(
const ModelHighAPI_RefAttr & thePoint1,
const ModelHighAPI_RefAttr & thePoint2,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set vertical distance
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setVerticalDistance(
const ModelHighAPI_RefAttr & thePoint1,
const ModelHighAPI_RefAttr & thePoint2,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set equal
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setEqual(
const ModelHighAPI_RefAttr & theObject1,
- const ModelHighAPI_RefAttr & theObject2);
+ const ModelHighAPI_RefAttr & theObject2,
+ bool is_active = true);
/// Set fillet
SKETCHAPI_EXPORT
/// Set fixed
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setFixed(
- const ModelHighAPI_RefAttr & theObject);
+ const ModelHighAPI_RefAttr & theObject,
+ bool is_active = true);
/// Set horizontal
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setHorizontal(
- const ModelHighAPI_RefAttr & theLine);
+ const ModelHighAPI_RefAttr & theLine,
+ bool is_active = true);
/// Set length
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setLength(
const ModelHighAPI_RefAttr & theLine,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set middle
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setMiddlePoint(
const ModelHighAPI_RefAttr & thePoint,
- const ModelHighAPI_RefAttr & theLine);
+ const ModelHighAPI_RefAttr & theLine,
+ bool is_active = true);
/// Set parallel
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setParallel(
const ModelHighAPI_RefAttr & theLine1,
- const ModelHighAPI_RefAttr & theLine2);
+ const ModelHighAPI_RefAttr & theLine2,
+ bool is_active = true);
/// Set perpendicular
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setPerpendicular(
const ModelHighAPI_RefAttr & theLine1,
- const ModelHighAPI_RefAttr & theLine2);
+ const ModelHighAPI_RefAttr & theLine2,
+ bool is_active = true);
/// Set radius
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setRadius(
const ModelHighAPI_RefAttr & theCircleOrArc,
- const ModelHighAPI_Double & theValue);
+ const ModelHighAPI_Double & theValue,
+ bool is_active = true);
/// Set tangent
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setTangent(
const ModelHighAPI_RefAttr & theLine,
- const ModelHighAPI_RefAttr & theCircle);
+ const ModelHighAPI_RefAttr & theCircle,
+ bool is_active = true);
/// Set vertical
SKETCHAPI_EXPORT
std::shared_ptr<ModelHighAPI_Interface> setVertical(
- const ModelHighAPI_RefAttr & theLine);
+ const ModelHighAPI_RefAttr & theLine,
+ bool is_active = true);
/// Set constraint value
SKETCHAPI_EXPORT
static const std::string MY_FLYOUT_VALUE_PNT("ConstraintFlyoutValuePnt");
return MY_FLYOUT_VALUE_PNT;
}
+ /// State of constraint - Active - true, Suppressed - false
+ inline static const std::string& CONSTRAINT_ACTIVE()
+ {
+ static const std::string MY_STATE("ConstraintState");
+ return MY_STATE;
+ }
/// First entity for the constraint
inline static const std::string& ENTITY_A()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
data()->addAttribute(ANGLE_VALUE_ID(), ModelAPI_AttributeDouble::typeId());
data()->addAttribute(TYPE_ID(), ModelAPI_AttributeInteger::typeId());
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintCoincidence::execute()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintCollinear::execute()
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SIGNED(), ModelAPI_AttributeBoolean::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
data()->addAttribute(SketchPlugin_ConstraintDistance::LOCATION_TYPE_ID(),
ModelAPI_AttributeInteger::typeId());
ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), LOCATION_TYPE_ID());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
data()->addAttribute(LOCATION_TYPE_ID(), ModelAPI_AttributeInteger::typeId());
ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), LOCATION_TYPE_ID());
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintEqual::execute()
void SketchPlugin_ConstraintHorizontal::initAttributes()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintHorizontal::execute()
data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
data()->addAttribute(SketchPlugin_ConstraintLength::LOCATION_TYPE_ID(),
ModelAPI_AttributeInteger::typeId());
ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), LOCATION_TYPE_ID());
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintMiddle::execute()
registerNotObligatory(getKind(), SketchPlugin_Constraint::ENTITY_B());
ModelAPI_Session::get()->validators()->
registerNotObligatory(getKind(), SketchPlugin_Constraint::ENTITY_C());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintMirror::execute()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintParallel::execute()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintPerpendicular::execute()
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::FLYOUT_VALUE_PNT(), GeomDataAPI_Point2D::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
data()->addAttribute(SketchPlugin_ConstraintRadius::LOCATION_TYPE_ID(),
ModelAPI_AttributeInteger::typeId());
ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), LOCATION_TYPE_ID());
void SketchPlugin_ConstraintRigid::initAttributes()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintRigid::execute()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintTangent::execute()
void SketchPlugin_ConstraintVertical::initAttributes()
{
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefAttr::typeId());
+
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
}
void SketchPlugin_ConstraintVertical::execute()
data()->addAttribute(ROTATION_LIST_ID(), ModelAPI_AttributeRefList::typeId());
data()->addAttribute(REVERSED_ID(), ModelAPI_AttributeBoolean::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
ModelAPI_Session::get()->validators()->
registerNotObligatory(getKind(), SketchPlugin_Constraint::ENTITY_A());
ModelAPI_Session::get()->validators()->
data()->addAttribute(START_POINT_ID(), ModelAPI_AttributeRefAttr::typeId());
data()->addAttribute(END_POINT_ID(), ModelAPI_AttributeRefAttr::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
data()->addAttribute(NUMBER_OF_OBJECTS_ID(), ModelAPI_AttributeInteger::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_A(), ModelAPI_AttributeRefList::typeId());
data()->addAttribute(SketchPlugin_Constraint::ENTITY_B(), ModelAPI_AttributeRefList::typeId());
data()->addAttribute(VALUE_ID(), ModelAPI_AttributeDouble::typeId());
data()->addAttribute(REVERSED_ID(), ModelAPI_AttributeBoolean::typeId());
+ // By default set true;
+ data()->addAttribute(SketchPlugin_Constraint::CONSTRAINT_ACTIVE(), ModelAPI_AttributeBoolean::typeId());
+ data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->setValue(true);
+
// Always initialize approximation to false by default for backward compatibility
AttributeBooleanPtr approxAttr = std::dynamic_pointer_cast<ModelAPI_AttributeBoolean>(
data()->addAttribute(APPROX_ID(), ModelAPI_AttributeBoolean::typeId()));
- **Change sketch plane** button - allows to change working plane of the current sketch.
- **Show remaining DoFs** button - highlights all sketch edges which are not fully constrained.
+Also will be opened window with created constraints:
+
+.. figure:: images/ConstraintsBrowser.png
+ :align: center
+
+ Sketch constraints browser
+
+**See** :ref:`sketchConstraintsBrowsers`
+
Now it is possible to:
- create :ref:`sketch objects <sketch_objects>`
--- /dev/null
+
+.. _sketchConstraintsBrowsers:
+
+Sketch Constraints Browser
+================
+.. figure:: images/ConstraintsBrowser.png
+ :align: center
+
+ Sketch constraints browser
+
+- **Extended Information** check box - allows showing/hiding **Primitives** and **Parameter** columns
+
+Right click by any constraint provide following funtionality:
+
+- **Edit...** - allows edit dimensional value if it exist
+- **Delete** - allows delete constraints
+- **Deactivate/Activate** - allows deactivate/activate constraints
+
+Edit
+================
+
+For dimension constraints (Angle, Length, Radius e.t.c.) you can change value. Ways for change:
+1. Select all constraints, which you can modify. Right Click -> Edit... -> Input new values. After press Apply button;
+2. In empty place Right click -> Edit... - will be modified all constraints.
+3. Double click by constrints value - modify only selected constraint value
+
+Delete
+================
+
+Select constraints for delete -> Rightg Click -> Delete. All selected constraints will be deleted
+
+Deactivate
+================
+
+.. figure:: images/constraints_suppressed.png
+ :align: center
+
+ Suppresed constraints
+
+.. figure:: images/constraints_suppressed_moved.png
+ :align: center
+
+ Suppresed constraints moved
+
+This allows you to deactivate and activate already applied constraints. Suppressed constraint allows you keep constraint and check another arrangement of the existing geometry.
{
SketchSolver_Storage::addConstraint(theConstraint, theSolverConstraint);
- theSolverConstraint->setId(++myConstraintLastID);
+ if (theSolverConstraint->id() == 0)
+ theSolverConstraint->setId(++myConstraintLastID);
constraintsToSolver(theSolverConstraint, mySketchSolver);
}
return true;
}
+bool PlaneGCSSolver_Storage::changeActiveStatus(ConstraintPtr theConstraint, bool theNewState)
+{
+ if (theNewState)
+ {
+ // activate
+ auto aPair = myDeactivatedConstraintMap.find(theConstraint);
+ if (aPair == myDeactivatedConstraintMap.end())
+ return false;
+
+ addConstraint(theConstraint, aPair->second);
+ myDeactivatedConstraintMap.erase(theConstraint);
+ }
+ else
+ {
+ // suppress
+ auto aPair = myConstraintMap.find(theConstraint);
+ if (aPair == myConstraintMap.end())
+ return false;
+ myDeactivatedConstraintMap.insert((*aPair));
+
+ ConstraintWrapperPtr aCW = aPair->second;
+ ConstraintID anID = aCW->id();
+ mySketchSolver->removeConstraint(anID);
+ myConstraintMap.erase(theConstraint);
+ }
+ myNeedToResolve = true;
+ notify(theConstraint);
+
+ return true;
+}
+
+bool PlaneGCSSolver_Storage::UpdateDeactivateList()
+{
+ std::list<ConstraintPtr> toRemove;
+ for (auto& aDeactMap : myDeactivatedConstraintMap)
+ {
+ if (!aDeactMap.first->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()))
+ {
+ toRemove.push_back(aDeactMap.first);
+ }
+ }
+ for (auto& aRemove : toRemove)
+ {
+ myDeactivatedConstraintMap.erase(aRemove);
+ }
+
+ for (auto& aDeactMap : myDeactivatedConstraintMap)
+ {
+ if (aDeactMap.first->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value())
+ {
+ changeActiveStatus(aDeactMap.first, true);
+ }
+ }
+ return true;
+}
+
void PlaneGCSSolver_Storage::removeInvalidEntities()
{
PlaneGCSSolver_EntityDestroyer aDestroyer;
/// \return \c true if the constraint and all its parameters are removed successfully
virtual bool removeConstraint(ConstraintPtr theConstraint);
+ // Change status of constraints.
+ virtual bool changeActiveStatus(ConstraintPtr theConstraint, bool theNewState);
+
+ virtual bool UpdateDeactivateList();
+
/// \brief Verify, the sketch contains degenerated geometry
/// after resolving the set of constraints
/// \return STATUS_OK if the geometry is valid, STATUS_DEGENERATED otherwise.
void SketchSolver_ConstraintDistance::update()
{
ConstraintWrapperPtr aConstraint = myStorage->constraint(myBaseConstraint);
+
+ if (!aConstraint)
+ return;
+
myPrevValue = aConstraint->value();
bool isDistanceAlognDir =
// ============================================================================
bool SketchSolver_Group::resolveConstraints()
{
+ auto aNb = mySketch->numberOfSubs();
+ std::list<ConstraintPtr> aList;
+ for (int i = 0; i < aNb; ++i)
+ if (mySketch->subFeature(i)->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE()) && !mySketch->subFeature(i)->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value())
+ aList.push_back(std::dynamic_pointer_cast<SketchPlugin_Constraint>(mySketch->subFeature(i)));
+
+ while (aList.size() > 0)
+ {
+ auto aConstr = aList.front();
+ aList.pop_front();
+ myStorage->changeActiveStatus(aConstr, false);
+ }
+
+ myStorage->UpdateDeactivateList();
+
static const int MAX_STACK_SIZE = 5;
// check the "Multi" constraints do not drop sketch into infinite loop
if (myMultiConstraintUpdateStack > MAX_STACK_SIZE) {
/// \brief Removes constraint from the storage
/// \return \c true if the constraint and all its parameters are removed successfully
virtual bool removeConstraint(ConstraintPtr theConstraint) = 0;
+
+ virtual bool changeActiveStatus(ConstraintPtr theConstraint, bool theNewState) = 0;
+
+ virtual bool UpdateDeactivateList() = 0;
+
/// \brief Removes feature from the storage
void removeFeature(FeaturePtr theFeature);
/// \brief Removes attribute from the storage
std::map<AttributePtr, EntityWrapperPtr> myAttributeMap;
UpdaterPtr myUpdaters;
+ std::map<ConstraintPtr, ConstraintWrapperPtr> myDeactivatedConstraintMap;
};
typedef std::shared_ptr<SketchSolver_Storage> StoragePtr;
SET(PROJECT_PICTURES
icons/collinear.png
+ icons/collinear_deactivate.png
icons/parallel.png
+ icons/parallel_deactivate.png
icons/perpendicular.png
+ icons/perpendicular_deactivate.png
icons/anchor.png
+ icons/anchor_deactivate.png
icons/horisontal.png
+ icons/horisontal_deactivate.png
icons/vertical.png
+ icons/vertical_deactivate.png
icons/equal.png
+ icons/equal_deactivate.png
icons/tangent.png
+ icons/tangent_deactivate.png
icons/middlepoint.png
+ icons/middlepoint_deactivate.png
icons/mirror.png
icons/rotate.png
icons/translate.png
/// \param theDimAspect an aspect to be changed
/// \param theDimValue an arrow value
/// \param theTextSize an arrow value
+/// \param theIsActivated state of constraint
extern void updateArrows(Handle(Prs3d_DimensionAspect) theDimAspect,
double theDimValue, double theTextSize, SketcherPrs_Tools::LocationType theLocationType);
SetFlyout(aDist);
// Update text visualization: parameter value or parameter text
- myStyleListener->updateDimensions(this, myValue);
+ myStyleListener->updateDimensions(this, myValue, !aData->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value());
double aTextSize = 0.0;
GetValueString(aTextSize);
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "collinear.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "collinear.png" : "collinear_deactivate.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
}
void SketcherPrs_DimensionStyle::updateDimensions(PrsDim_Dimension* theDimension,
- const SketcherPrs_DimensionStyle::DimensionValue& theDimensionValue)
+ const SketcherPrs_DimensionStyle::DimensionValue& theDimensionValue, bool theIsSuppress)
{
if (!theDimension)
return;
updateDimensions(theDimension, theDimensionValue.myHasParameters,
- theDimensionValue.myTextValue, theDimensionValue.myDoubleValue);
+ theDimensionValue.myTextValue, theDimensionValue.myDoubleValue, theIsSuppress);
}
void SketcherPrs_DimensionStyle::updateDimensions(PrsDim_Dimension* theDimension,
const bool theHasParameters,
const std::string& theTextValue,
- const double theDoubleValue)
+ const double theDoubleValue, bool theIsSuppress)
{
if (!theDimension)
return;
#endif
TCollection_ExtendedString aCustomValue;
- if (theHasParameters) {
- //bool isParameterTextStyle = myStyle == SketcherPrs_ParameterStyleMessage::ParameterText;
- bool isParameterTextStyle =
- SketcherPrs_Tools::parameterStyle() == SketcherPrs_Tools::ParameterText;
-
- if (isParameterTextStyle)
- aCustomValue = theTextValue.c_str();
+ if (theIsSuppress)
+ {
+ // for suppressed constraints not need show value
+ aCustomValue = TCollection_ExtendedString(MyEmptySymbol);
+ }
+ else
+ {
+ if (theHasParameters) {
+ //bool isParameterTextStyle = myStyle == SketcherPrs_ParameterStyleMessage::ParameterText;
+ bool isParameterTextStyle =
+ SketcherPrs_Tools::parameterStyle() == SketcherPrs_Tools::ParameterText;
+
+ if (isParameterTextStyle)
+ aCustomValue = theTextValue.c_str();
+ else {
+ // format value string using "sprintf"
+ TCollection_AsciiString aFormatStr =
+ theDimension->Attributes()->DimensionAspect()->ValueStringFormat();
+ char aFmtBuffer[256];
+ sprintf(aFmtBuffer, aFormatStr.ToCString(), theDoubleValue);
+ aCustomValue = TCollection_ExtendedString(aFmtBuffer);
+
+ aCustomValue.Insert(1, MySigmaSymbol);
+ }
+ }
else {
// format value string using "sprintf"
TCollection_AsciiString aFormatStr =
char aFmtBuffer[256];
sprintf (aFmtBuffer, aFormatStr.ToCString(), theDoubleValue);
aCustomValue = TCollection_ExtendedString (aFmtBuffer);
-
- aCustomValue.Insert (1, MySigmaSymbol);
}
}
- else {
- // format value string using "sprintf"
- TCollection_AsciiString aFormatStr =
- theDimension->Attributes()->DimensionAspect()->ValueStringFormat();
- char aFmtBuffer[256];
- sprintf (aFmtBuffer, aFormatStr.ToCString(), theDoubleValue);
- aCustomValue = TCollection_ExtendedString (aFmtBuffer);
- }
#ifdef COMPILATION_CORRECTION
theDimension->SetCustomValue(theDoubleValue);
#else
/// \param theDimension a modified dimension
/// \param theDimensionValue container filled by the model double attribute
Standard_EXPORT void updateDimensions(PrsDim_Dimension* theDimension,
- const DimensionValue& theDimensionValue);
+ const DimensionValue& theDimensionValue, bool theIsSuppress/* = false*/);
private:
/// Visualizes the dimension text or dimension value depending on the has parameters state
/// \param theHasParameters if true, the text is shown, else digit
/// \param theTextValue a dimension text value
/// \param theDoubleValue a dimension digit value
+ /// \param theIsSuppress a state of constraint (active or not)
void updateDimensions(PrsDim_Dimension* theDimension,
const bool theHasParameters,
const std::string& theTextValue,
- const double theDoubleValue);
+ const double theDoubleValue, bool theIsSuppress/* = false*/);
};
#endif
\ No newline at end of file
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "equal.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "equal.png" : "equal_deactivate.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return myIsHorisontal? "horisontal.png" : "vertical.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const {
+ if (isActiveIcon)
+ return myIsHorisontal? "horisontal.png" : "vertical.png";
+ else
+ return myIsHorisontal ? "horisontal_deactivate.png" : "vertical_deactivate.png";
+ }
/// Redefine this function in order to add additiona lines of constraint base
/// \param thePrs a presentation
updateArrows(DimensionAspect(), GetValue(), aTextSize, aLocationType);
// Update text visualization: parameter value or parameter text
- myStyleListener->updateDimensions(this, myValue);
+ myStyleListener->updateDimensions(this, myValue, !myConstraint->data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value());
PrsDim_LengthDimension::Compute(thePresentationManager, thePresentation, theMode);
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "middlepoint.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "middlepoint.png" : "middlepoint_deactivate.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "mirror.png"; }
+ virtual const char* iconName(bool /*isActiveIcon*/) const { return "mirror.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "offset.png"; }
+ virtual const char* iconName(bool /*isActiveIcon*/) const { return "offset.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "parallel.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "parallel.png" : "parallel_deactivate.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "perpendicular.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "perpendicular.png" : "perpendicular_deactivate.png"; }
/// Redefine this function in order to add additiona lines of constraint base
/// \param thePrs a presentation
}
SetMeasuredGeometry(myCircle, myAnchorPoint);
- myStyleListener->updateDimensions(this, myValue);
+ myStyleListener->updateDimensions(this, myValue, !myConstraint->data()->boolean(SketchPlugin_Constraint::CONSTRAINT_ACTIVE())->value());
// Update variable aspect parameters (depending on viewer scale)
double aTextSize = 0.0;
static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "anchor.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "anchor.png" : "anchor_deactivate.png"; }
/// Redefine this function in order to add additiona lines of constraint base
/// \param thePrs a presentation
//*********************************************************************************
Handle(Image_AlienPixMap) SketcherPrs_SymbolPrs::icon()
{
- if (myIconsMap.count(iconName()) == 1) {
- return myIconsMap[iconName()];
+ auto isIconType = myConstraint->boolean("ConstraintState")->value();
+ if (myIconsMap.count(iconName(isIconType)) == 1) {
+ return myIconsMap[iconName(isIconType)];
}
// Load icon for the presentation
std::string aFile;
}
aFile += FSEP;
- aFile += iconName();
+ aFile += iconName(isIconType);
Handle(Image_AlienPixMap) aPixMap = new Image_AlienPixMap();
if (aPixMap->Load(aFile.c_str())) {
int aRatio = SketcherPrs_Tools::pixelRatio();
}
aPixMap = aSizedMap;
}
- myIconsMap[iconName()] = aPixMap;
+ myIconsMap[iconName(isIconType)] = aPixMap;
return aPixMap;
}
// The icon for constraint is not found
static const char aMsg[] = "Error! constraint images are not found";
std::cout<<aMsg<<std::endl;
Events_InfoMessage("SketcherPrs_SymbolPrs", aMsg).send();
- myIconsMap[iconName()] = Handle(Image_AlienPixMap)();
+ myIconsMap[iconName(isIconType)] = Handle(Image_AlienPixMap)();
return Handle(Image_AlienPixMap)();
}
void SketcherPrs_SymbolPrs::prepareAspect()
{
// Create an aspect with the icon
- if (myAspect.IsNull()) {
- Handle(Image_AlienPixMap) aIcon = icon();
- if (aIcon.IsNull())
- myAspect = new Graphic3d_AspectMarker3d();
- else
- myAspect = new Graphic3d_AspectMarker3d(aIcon);
-
- myAspect->SetColor(myCustomColor);
- }
+ Handle(Image_AlienPixMap) aIcon = icon();
+ if (aIcon.IsNull())
+ myAspect = new Graphic3d_AspectMarker3d();
+ else
+ myAspect = new Graphic3d_AspectMarker3d(aIcon);
}
//*********************************************************************************
const Standard_Integer aMode);
/// Returns an icon file name. Has to be redefined in successors
- virtual const char* iconName() const = 0;
+ virtual const char* iconName(bool isActiveIcon = true) const = 0;
/// Check and creates if it is necessary myAspect member.
/// It has to be called before the object computation
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return "tangent.png"; }
+ virtual const char* iconName(bool isActiveIcon = true) const { return isActiveIcon ? "tangent.png" : "tangent_deactivate.png"; }
virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
const std::shared_ptr<GeomAPI_Ax3>& thePlane);
protected:
- virtual const char* iconName() const { return myIsTranslation? "translate.png" : "rotate.png"; }
+ virtual const char* iconName(bool /*isActiveIcon*/ ) const { return myIsTranslation ? "translate.png" : "rotate.png"; }
/// Redefine this function in order to add additiona lines of constraint base
/// \param thePrs a presentation
XGUI_Selection.h
XGUI_SelectionActivate.h
XGUI_SelectionMgr.h
+ XGUI_SketchConstraintsBrowser.h
XGUI_Tools.h
XGUI_TransparencyWidget.h
XGUI_ViewerProxy.h
XGUI_Workshop.h
XGUI_WorkshopListener.h
- XGUI_InspectionPanel.h
- XGUI_CompressFiles.h
+ XGUI_InspectionPanel.h
+ XGUI_CompressFiles.h
)
SET(PROJECT_MOC_HEADERS
XGUI_PropertyPanel.h
XGUI_PropertyPanelSelector.h
XGUI_SelectionMgr.h
+ XGUI_SketchConstraintsBrowser.h
XGUI_TransparencyWidget.h
XGUI_ViewerProxy.h
XGUI_Workshop.h
XGUI_WorkshopListener.h
- XGUI_InspectionPanel.h
+ XGUI_InspectionPanel.h
)
# sources / moc wrappings
XGUI_Selection.cpp
XGUI_SelectionActivate.cpp
XGUI_SelectionMgr.cpp
+ XGUI_SketchConstraintsBrowser.cpp
XGUI_Tools.cpp
XGUI_TransparencyWidget.cpp
XGUI_ViewerProxy.cpp
XGUI_Workshop.cpp
XGUI_WorkshopListener.cpp
- XGUI_InspectionPanel.cpp
- XGUI_CompressFiles.cpp
+ XGUI_InspectionPanel.cpp
+ XGUI_CompressFiles.cpp
)
SET(PROJECT_RESOURCES
{
setAllEnabled();
XGUI_Selection* aSelection = myWorkshop->selector()->selection();
- if (aSelection->getSelected(ModuleBase_ISelection::AllControls).size() > 0)
+ // If ::ConstraintsBrowser and has Coincodence deleted - fail!!!
+ if (aSelection->getSelected(ModuleBase_ISelection::AllControls).size() > 0
+ && aSelection->getSelected(ModuleBase_ISelection::ConstraintsBorwser).size() == 0)
updateOnViewSelection();
FeaturePtr anActiveFeature = FeaturePtr();
#include "XGUI_ContextMenuMgr.h"
#include "XGUI_Workshop.h"
#include "XGUI_ObjectsBrowser.h"
+#include "XGUI_SketchConstraintsBrowser.h"
#include "XGUI_SelectionMgr.h"
#include "XGUI_Displayer.h"
#include "XGUI_ViewerProxy.h"
anAction->setShortcut(Qt::Key_F2);
addAction("RENAME_CMD", anAction);
+ anAction = ModuleBase_Tools::createAction(QIcon(":pictures/part_ico.png"), tr("Deactivate/Activate"),
+ aDesktop, this);
+ addAction("DEACTIVATE_CONSTRAINT_CMD", anAction);
+
#ifdef HAVE_SALOME
anAction = ModuleBase_Tools::createAction(QIcon(":pictures/move_to_end.png"),
XGUI_Workshop::MOVE_TO_END_COMMAND, this);
aDesktop);
addAction("ISOLINES_CMD", anAction);
+ anAction = ModuleBase_Tools::createAction(QIcon(":pictures/rename_edit.png"), tr("Edit..."),
+ aDesktop);
+ addAction("EDIT_CONSTR_CMD", anAction);
+
anAction = ModuleBase_Tools::createAction(QIcon(), tr("Show Isos"), aDesktop);
anAction->setCheckable(true);
addAction("SHOW_ISOLINES_CMD", anAction);
addAction("SET_VIEW_NORMAL_CMD", anAction);
buildObjBrowserMenu();
+ buildConstrBrowserMenu();
buildViewerMenu();
}
} else if (sender() == myWorkshop->viewer()) {
updateViewerMenu();
addViewerMenu(aMenu);
+ } else if (sender() == myWorkshop->constraintsBrowser()) {
+ addConstrBrowserMenu(aMenu);
}
if (aMenu && (aMenu->actions().size() > 0)) {
SLOT(onContextMenuRequest(QContextMenuEvent*)));
}
+void XGUI_ContextMenuMgr::connectConstraintsBrowser()
+{
+ connect(myWorkshop->constraintsBrowser(), SIGNAL(contextMenuRequested(QContextMenuEvent*)), this,
+ SLOT(onContextMenuRequest(QContextMenuEvent*)));
+}
void XGUI_ContextMenuMgr::buildObjBrowserMenu()
{
myObjBrowserMenus[ModelAPI_ResultField::ModelAPI_FieldStep::group()] = aList;
}
+void XGUI_ContextMenuMgr::buildConstrBrowserMenu()
+{
+ QAction* aSeparator = ModuleBase_Tools::createAction(QIcon(), "", myWorkshop->desktop());
+ aSeparator->setSeparator(true);
+
+ QActionsList aList;
+
+ aList.append(action("HIDE_CMD"));
+ aList.append(action("DELETE_CMD"));
+ aList.append(action("DEACTIVATE_CONSTRAINT_CMD"));
+}
+
void XGUI_ContextMenuMgr::buildViewerMenu()
{
QActionsList aList;
myViewerMenu[ModelAPI_ResultField::ModelAPI_FieldStep::group()] = aList;
}
+void XGUI_ContextMenuMgr::addConstrBrowserMenu(QMenu* theMenu) const
+{
+ QActionsList anActions;
+ QObjectPtrList aObjects = myWorkshop->constraintsBrowser()->selectedObjects();
+
+ // Check that state foreach constraint.
+ // If at least 1 is Activa - show Deactivate
+ // otherwise - show Activate
+ //
+ if (aObjects.size() > 0)
+ {
+ // It's update START
+
+ // Enable edit only if exist at least 1 dimensional constraint
+ bool isEditEnabled = false;
+ foreach(ObjectPtr anObject, aObjects)
+ {
+ if (auto aFeat = ModelAPI_Feature::feature(anObject))
+ {
+ if (aFeat->real("ConstraintValue"))
+ {
+ isEditEnabled = true;
+ break;
+ }
+ }
+ }
+
+ action("EDIT_CONSTR_CMD")->setEnabled(isEditEnabled);
+ action("DELETE_CMD")->setEnabled(true);
+ action("DEACTIVATE_CONSTRAINT_CMD")->setEnabled(true);
+ // It's update END
+
+ anActions.append(action("EDIT_CONSTR_CMD"));
+ anActions.append(action("DELETE_CMD"));
+ anActions.append(action("DEACTIVATE_CONSTRAINT_CMD"));
+ }
+ else
+ {
+ // It's update START
+ action("EDIT_CONSTR_CMD")->setEnabled(true);
+ // It's update END
+
+ anActions.append(action("EDIT_CONSTR_CMD"));
+ }
+
+
+ theMenu->addActions(anActions);
+ addFeatures(theMenu);
+
+}
void XGUI_ContextMenuMgr::addObjBrowserMenu(QMenu* theMenu) const
{
/// Connect to viewer from workshop. Has to called at creation of viewer.
void connectViewer();
+ /// Connect to viewer from workshop. Has to called at creation of viewer.
+ void connectConstraintsBrowser();
+
/// Add menu items for Object browser pop-up
void addObjBrowserMenu(QMenu*) const;
+ /// Add menu items for Object browser pop-up
+ void addConstrBrowserMenu(QMenu*) const;
+
/// Add menu items for Viewer pop-up
void addViewerMenu(QMenu*) const;
/// Creates menu for object browser
void buildObjBrowserMenu();
+ /// Creates menu for object browser
+ void buildConstrBrowserMenu();
+
/// Creates menu for viewer
void buildViewerMenu();
#endif
}
}
+ else
+ {
+ auto aConstrFeature = ModelAPI_Feature::feature(anObject);
+ if (!aConstrFeature)
+ continue;
+
+ AISObjectPtr aAisPtr = myWorkshop->displayer()->getAISObject(aConstrFeature);
+ if (!aAisPtr)
+ {
+ aAisPtr = myResult2AISObjectMap.value(aConstrFeature->lastResult());
+ if (!aAisPtr)
+ continue;
+ }
+ Handle(AIS_InteractiveObject) aAisObj = aAisPtr->impl<Handle(AIS_InteractiveObject)>();
+
+ aContext->AddOrRemoveSelected(aAisObj, false);
+ }
}
}
if (!aShapesToBeSelected.IsEmpty())
#include "XGUI_Displayer.h"
#include "XGUI_ViewerProxy.h"
#include "XGUI_ObjectsBrowser.h"
+#include "XGUI_SketchConstraintsBrowser.h"
#ifndef HAVE_SALOME
#include <AIS_ViewCube.hxx>
case Viewer:
getSelectedInViewer(aPresentations);
break;
+ case ConstraintsBorwser:
+ getSelectedInSketchConstraintsBrowser(aPresentations);
+ break;
+
case AllControls:
// Get selection from object browser
getSelectedInBrowser(aPresentations);
}
}
+void XGUI_Selection::getSelectedInSketchConstraintsBrowser(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& thePresentations) const
+{
+ QObjectPtrList anObjects;
+ if (myWorkshop->constraintsBrowser())
+ anObjects = myWorkshop->constraintsBrowser()->selectedObjects();
+
+ if (anObjects.isEmpty())
+ return;
+
+ QObjectPtrList::const_iterator anIt = anObjects.begin(), aLast = anObjects.end();
+ for (; anIt != aLast; anIt++) {
+ ObjectPtr anObject = *anIt;
+ if (anObject.get() != NULL) {
+ auto aConstrFeature = ModelAPI_Feature::feature(anObject);
+ thePresentations.append(std::shared_ptr<ModuleBase_ViewerPrs>(
+ new ModuleBase_ViewerPrs(anObject, GeomShapePtr(), NULL)));
+ /* AISObjectPtr aAisPtr = myWorkshop->displayer()->getAISObject(aConstrFeature);
+ if (!aAisPtr)
+ continue;
+ Handle(AIS_InteractiveObject) aAisObj = aAisPtr->impl<Handle(AIS_InteractiveObject)>();
+ auto aPrs = std::shared_ptr<ModuleBase_ViewerPrs>(
+ new ModuleBase_ViewerPrs(anObject, GeomShapePtr(), NULL));
+ aPrs->setInteractive(aAisObj);
+ thePresentations.append(aPrs);*/
+ }
+ }
+}
void XGUI_Selection::fillPresentation(ModuleBase_ViewerPrsPtr& thePrs,
const Handle(SelectMgr_EntityOwner)& theOwner) const
{
{
if (myWorkshop->objectBrowser())
return myWorkshop->objectBrowser()->selectedObjects();
+ if (myWorkshop->constraintsBrowser())
+ return myWorkshop->constraintsBrowser()->selectedObjects();
return QObjectPtrList();
}
/// \param thePresentations an output list of presentation
void getSelectedInBrowser(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& thePresentations) const;
+ /// Fills the list of presentations by objects selected in the object browser.
+ /// ViewerPrs contains only object parameter not empty.
+ /// If the given list of presentations already has a viewer presentation with the same object
+ /// as selected in the browser, a new item is not appended to the list of presentations.
+ /// \param thePresentations an output list of presentation
+ void getSelectedInSketchConstraintsBrowser(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& thePresentations) const;
+
/// Generates a vertex or edge by the give IO if it is an AIS created on trihedron
/// \param theIO a selected object
/// \return created shape or empty shape
#include "XGUI_Workshop.h"
#include "XGUI_ObjectsBrowser.h"
+#include "XGUI_SketchConstraintsBrowser.h"
#include "XGUI_SalomeConnector.h"
#include "XGUI_ViewerProxy.h"
#include "XGUI_Displayer.h"
//Connect to other viewers
connect(myWorkshop->viewer(), SIGNAL(selectionChanged()), this, SLOT(onViewerSelection()));
+ connect(myWorkshop->constraintsBrowser(), SIGNAL(selectionChanged()), this,
+ SLOT(onSketchConstraintsBrowserSelection()));
}
//**************************************************************
emit selectionChanged();
}
+//**************************************************************
+void XGUI_SelectionMgr::onSketchConstraintsBrowserSelection()
+{
+ myLastSelectionPlace = ModuleBase_ISelection::ConstraintsBorwser;
+ QList<ModuleBase_ViewerPrsPtr> aSelectedPrs =
+ myWorkshop->selector()->selection()->getSelected(ModuleBase_ISelection::ConstraintsBorwser);
+ XGUI_Displayer* aDisplayer = myWorkshop->displayer();
+ if (!myWorkshop->operationMgr()->hasOperation()) {
+
+ ObjectPtr aObject;
+ FeaturePtr aFeature;
+ // Select all results of a selected feature in viewer
+ foreach(ModuleBase_ViewerPrsPtr aPrs, aSelectedPrs) {
+ aObject = aPrs->object();
+ if (aObject.get()) {
+ aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
+ if (aFeature.get()) {
+ std::list<ResultPtr> allRes;
+ ModelAPI_Tools::allResults(aFeature, allRes);
+ std::list<ResultPtr>::iterator aRes;
+ for (aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
+ aSelectedPrs.append(std::shared_ptr<ModuleBase_ViewerPrs>(
+ new ModuleBase_ViewerPrs(*aRes, GeomShapePtr(), NULL)));
+ }
+ }
+ }
+ }
+ }
+ aDisplayer->setSelected(aSelectedPrs);
+ myWorkshop->updateColorScaleVisibility();
+ emit selectionChanged();
+}
+
//**************************************************************
void XGUI_SelectionMgr::onViewerSelection()
{
void selectionChanged();
public slots:
- /// Reaction on selectio0n in Object browser
+ /// Reaction on selection in Object browser
void onObjectBrowserSelection();
+ /// Reaction on selection in Constraints Browser
+ void onSketchConstraintsBrowserSelection();
+
/// Reaction on selectio0n in Viewer
void onViewerSelection();
--- /dev/null
+// Copyright (C) 2014-2022 CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#include "XGUI_SketchConstraintsBrowser.h"
+#include "XGUI_Tools.h"
+#include "XGUI_DataModel.h"
+
+#include <ModelAPI_Data.h>
+#include <ModelAPI_Session.h>
+#include <ModelAPI_Document.h>
+#include <ModelAPI_Tools.h>
+#include <ModelAPI_ResultField.h>
+
+#include <ModuleBase_Tools.h>
+#include <ModuleBase_ITreeNode.h>
+#include <ModuleBase_Operation.h>
+#include <ModuleBase_IModule.h>
+#include <XGUI_OperationMgr.h>
+#include <XGUI_Workshop.h>
+#include <ModuleBase_WidgetFactory.h>
+#include <XGUI_Displayer.h>
+
+#include <QLayout>
+#include <QLineEdit>
+#include <QHBoxLayout>
+#include <QPushButton>
+#include <QPixmap>
+#include <QEvent>
+#include <QMouseEvent>
+#include <QAction>
+#include <QStyledItemDelegate>
+#include <QMessageBox>
+#include <QApplication>
+#include <QGroupBox>
+#include <QPainter>
+
+#include <ModelAPI_CompositeFeature.h>
+#include <ModelAPI_AttributeRefAttr.h>
+#include <ModelAPI_AttributeDouble.h>
+#include <ModelAPI_AttributeBoolean.h>
+
+#ifdef DEBUG_INDXES
+#include <QToolTip>
+#endif
+
+
+#ifdef WIN32
+# define FSEP "\\"
+#else
+# define FSEP "/"
+#endif
+
+// Type of columns
+enum ColumnType {
+ Col_Icon,
+ Col_Constraint,
+ Col_Primitive,
+ Col_Value
+};
+
+namespace
+{
+ QModelIndex GetIndex(QModelIndex theChildIndex)
+ {
+ auto aParent = theChildIndex.parent();
+ if (aParent.isValid())
+ return aParent.model()->index(aParent.row(), 1);
+ else
+ return QModelIndex();
+ }
+
+ // Retrurn name for constraint attribute
+ QString GetName(const AttributePtr& theAttribute)
+ {
+ QString aName;
+
+ if (theAttribute->attributeType() != ModelAPI_AttributeRefAttr::typeId())
+ return aName;
+
+ AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(theAttribute);
+
+ auto anObj = aRefAttr->object();
+ auto anAttr = aRefAttr->attr();
+ if (anAttr)
+ {
+ FeaturePtr anAttrA = ModelAPI_Feature::feature(anAttr->owner());
+ aName += QString::fromStdWString(anAttrA->name());
+ aName += "/";
+ aName += QString::fromStdString(anAttr->id());
+ }
+ else if (anObj)
+ {
+ FeaturePtr anAttrA = ModelAPI_Feature::feature(anObj);
+ aName += QString::fromStdWString(anAttrA->name());
+ }
+
+ return aName;
+ }
+
+ std::pair<std::string, std::string> FromSketchKindToName(const std::string& theKind)
+ {
+ const std::string& aType = theKind;
+ if (aType == "SketchConstraintCoincidence" ||
+ aType == "SketchConstraintCoincidenceInternal")
+ return { "Coincidence", "coincedence.png" };
+ else if (aType == "SketchConstraintRigid")
+ return { "Fixed", "fixed.png" };
+ else if (aType == "SketchConstraintHorizontal")
+ return { "Horizontal", "horisontal.png" };
+ else if (aType == "SketchConstraintVertical")
+ return { "Vertical", "vertical.png" };
+ else if (aType == "SketchConstraintAngle")
+ return { "Angle", "angle_constr.png" };
+ else if (aType == "SketchConstraintDistance")
+ return { "Distance", "distance.png" };
+ else if (aType == "SketchConstraintDistanceHorizontal")
+ return { "Horizontal distance", "distance_h.png" };
+ else if (aType == "SketchConstraintDistanceVertical")
+ return { "Vertical distance", "distance_v.png" };
+ else if (aType == "SketchConstraintEqual")
+ return { "Equal", "equal.png" };
+ else if (aType == "SketchConstraintLength")
+ return { "Length", "length.png" };
+ else if (aType == "SketchConstraintMiddle")
+ return { "Middle point", "middlepoint.png" };
+ else if (aType == "SketchConstraintMirror")
+ return { "Mirror objects", "mirror.png" };
+ else if (aType == "SketchConstraintParallel")
+ return { "Parallel", "parallel.png" };
+ else if (aType == "SketchConstraintPerpendicular")
+ return { "Perpendicular", "perpendicular.png" };
+ else if (aType == "SketchConstraintRadius")
+ return { "Radius", "radius_constr.png" };
+ else if (aType == "SketchConstraintCollinear")
+ return { "Collinear", "collinear.png" };
+ else if (aType == "SketchConstraintTangent")
+ return { "Tangent", "tangent.png" };
+ return { "", "" };
+ }
+
+ std::string GetIconPath(const std::string& theKind)
+ {
+ std::string aFile;
+ char* anEnv = getenv("SHAPER_ROOT_DIR");
+ if (anEnv) {
+ aFile = std::string(anEnv) +
+ FSEP + "share" + FSEP + "salome" + FSEP + "resources" + FSEP + "shaper" + FSEP + "icons" + FSEP + "Sketch";
+ }
+ else {
+ anEnv = getenv("CADBUILDER_ROOT_DIR");
+ if (anEnv)
+ aFile = std::string(anEnv) + FSEP + "plugins" + FSEP + "icons" + FSEP + "Sketch";
+ }
+
+ aFile += FSEP;
+ aFile += FromSketchKindToName(theKind).second;
+ return aFile;
+ }
+}
+
+/*!
+ * \ingroup GUI
+ * ItemDelegate object in order to redefine items behavior
+ */
+class XGUI_ConstraintsItemDelegate : public QStyledItemDelegate
+{
+public:
+ /// Constructor
+ /// \param thaParent a parent
+ XGUI_ConstraintsItemDelegate(QObject* thaParent) :
+ QStyledItemDelegate(thaParent) {}
+
+ /// Redefinition of virtual method
+ /// \param parent a parent widget
+ /// \param option the item options
+ /// \param index the current index
+ virtual QWidget* createEditor(QWidget* parent,
+ const QStyleOptionViewItem& option,
+ const QModelIndex& index) const;
+
+ /// Returns True if the given index is editable item
+ /// \param theIndex an item index
+ bool isEditable(const QModelIndex& theIndex) const;
+
+ // Return current state for TreeItem
+ bool GetIsActive(const QModelIndex& index) const;
+
+ // Modify state item
+ void SetIsActive(QModelIndex& theIndex, bool theIsActive);
+
+ /// Returns currently editing index
+ QModelIndex editIndex() const { return myEditingIdx; }
+
+ /// Redefinition of virtual method
+ /// \param painter a painter object
+ /// \param option the item options
+ /// \param index the current index
+ virtual void paint(QPainter* painter,
+ const QStyleOptionViewItem& option,
+ const QModelIndex& index) const;
+
+protected:
+ /// Redefinition of virtual method
+ /// \param option the item options
+ /// \param index the current index
+ virtual void initStyleOption(QStyleOptionViewItem* option,
+ const QModelIndex& index) const;
+
+private:
+ mutable QModelIndex myEditingIdx;
+};
+
+// Implement
+
+bool XGUI_ConstraintsItemDelegate::GetIsActive(const QModelIndex& index) const
+{
+ if (!index.parent().isValid())
+ return true;
+
+ auto aModel = index.model();
+ auto anIndexForCheck = aModel->index(index.row(), 1);
+ bool myIsActive = index.parent().child(index.row(), 1).data(Qt::UserRole + 1).toBool();
+ return myIsActive;
+}
+
+void XGUI_ConstraintsItemDelegate::initStyleOption(QStyleOptionViewItem* option, const QModelIndex& index) const
+{
+ if (index.parent().isValid())
+ {
+ bool myIsActive = GetIsActive(index);
+ option->palette.setBrush(QPalette::ColorRole::Text, myIsActive ? Qt::black : Qt::darkGray);
+ }
+
+ QStyledItemDelegate::initStyleOption(option, index);
+}
+
+void XGUI_ConstraintsItemDelegate::paint(QPainter* painter,
+ const QStyleOptionViewItem& option,
+ const QModelIndex& index) const
+{
+ QBrush aBrush = painter->brush();
+ QPen aPen = painter->pen();
+
+ Qt::GlobalColor aColor = index.parent().isValid() ? Qt::white : Qt::lightGray;
+ painter->setBrush(aColor);
+ painter->setPen(aColor);
+
+ painter->drawRect(option.rect);
+ painter->setPen(aPen);
+
+ QStyledItemDelegate::paint(painter, option, index);
+ painter->setBrush(aBrush);
+}
+
+void XGUI_ConstraintsItemDelegate::SetIsActive(QModelIndex& theIndex, bool theIsActive)
+{
+ bool aBool = theIndex.model()->data(theIndex, Qt::UserRole + 1).toBool();
+ theIndex.model()->data(theIndex, Qt::UserRole + 1).setValue(!aBool);
+}
+
+QWidget* XGUI_ConstraintsItemDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const
+{
+ myEditingIdx = index;
+ return QStyledItemDelegate::createEditor(parent, option, index);
+}
+
+bool XGUI_ConstraintsItemDelegate::isEditable(const QModelIndex& theIndex) const
+{
+ QModelIndex aParent = theIndex.parent();
+ if (aParent.isValid() && !theIndex.data(0).isNull() && theIndex.column() == 3)
+ return true;
+
+ return false;
+}
+
+void XGUI_ConstraintsViewTree::closeEditor(QWidget* theEditor,
+ QAbstractItemDelegate::EndEditHint theHint)
+{
+ if (theHint == QAbstractItemDelegate::EditNextItem) {
+ QModelIndex aCurrent = currentIndex();
+ QModelIndex aParent = model()->index(0, 0);
+ int aNbRows = model()->rowCount(aParent);
+ QModelIndex aIdx;
+ if (aCurrent.column() == 3) {
+ QTreeWidget::closeEditor(theEditor, theHint);
+ return;
+ }
+ if (aIdx.isValid()) {
+ QTreeWidget::closeEditor(theEditor, QAbstractItemDelegate::NoHint);
+ setCurrentIndex(aIdx);
+ edit(aIdx);
+ return;
+ }
+ }
+ QTreeWidget::closeEditor(theEditor, theHint);
+}
+
+//********************************************************************
+XGUI_SketchConstraintsBrowser::XGUI_SketchConstraintsBrowser(QWidget* theParent, XGUI_Workshop* theWorkshop)
+ : QWidget(theParent), myWorkshop(theWorkshop)
+{
+ // Attempt create Tree View
+ myViewTree = new XGUI_ConstraintsViewTree(this);
+ myViewTree->setColumnCount(4);
+ QStringList aHeaders;
+ aHeaders << "" << tr("Constraint") << tr("Primitives")
+ << tr("Parameter");
+
+ myViewTree->setHeaderLabels(aHeaders);
+ myViewTree->setColumnWidth(Col_Icon, 40);
+ myViewTree->setColumnWidth(Col_Constraint, 160);
+ myViewTree->setColumnWidth(Col_Primitive, 140);
+ myViewTree->setColumnWidth(Col_Value, 40);
+
+ myViewTree->setEditTriggers(QAbstractItemView::NoEditTriggers);
+ myViewTree->setSelectionBehavior(QAbstractItemView::SelectRows);
+ myViewTree->setSelectionMode(QAbstractItemView::ExtendedSelection);
+
+ connect(myViewTree, SIGNAL(doubleClicked(const QModelIndex&)),
+ SLOT(onDoubleClick(const QModelIndex&)));
+ connect(myViewTree, SIGNAL(itemSelectionChanged()), SLOT(onSelectionChanged()));
+
+ myDelegate = new XGUI_ConstraintsItemDelegate(myViewTree);
+
+ myViewTree->setItemDelegate(myDelegate);
+
+ QPalette aTreePalet = myViewTree->palette();
+ QColor aTreeBack = aTreePalet.color(QPalette::Base);
+
+ QPalette aPalet;
+ aPalet.setColor(QPalette::Base, aTreeBack);
+ aPalet.setColor(QPalette::Window, aTreeBack);
+ myViewTree->setPalette(aTreePalet);
+
+ connect(myViewTree, SIGNAL(contextMenuRequested(QContextMenuEvent*)), this,
+ SLOT(onContextMenuRequested(QContextMenuEvent*)));
+
+ myExtInfo = new QCheckBox(tr("Extended Information"));
+ myExtInfo->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
+ myExtInfo->setChecked(true);
+
+ // Connect for show/hide extended information
+ connect(myExtInfo, SIGNAL(toggled(bool)), this, SLOT(SelectStateChanged(bool)));
+ ModuleBase_Tools::adjustMargins(myExtInfo);
+
+ myLayout = new QVBoxLayout(this);
+ ModuleBase_Tools::zeroMargins(myLayout);
+ myLayout->setSpacing(0);
+
+ myLayout->addWidget(myExtInfo);
+ myLayout->addWidget(myViewTree);
+
+ Events_Loop* aLoop = Events_Loop::loop();
+ aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED));
+ aLoop->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
+}
+
+XGUI_SketchConstraintsBrowser::~XGUI_SketchConstraintsBrowser()
+{
+ // For avoid crashes after reopen sketch
+ Events_Loop* aLoop = Events_Loop::loop();
+ aLoop->removeListener(this);
+}
+
+void XGUI_SketchConstraintsBrowser::SelectStateChanged(bool /*theState*/)
+{
+ // Add process for show columns in edit mode
+ bool isShowExtInfo = !myExtInfo->isChecked();
+ myViewTree->setColumnHidden(Col_Primitive, isShowExtInfo);
+ myViewTree->setColumnHidden(Col_Value, isShowExtInfo);
+}
+
+// bad first param! Make more easy
+bool XGUI_SketchConstraintsBrowser::UpdateTree(const std::vector<std::pair<FeaturePtr, std::vector<AttributePtr>>>& theList, bool isAddToExist)
+{
+ if (!isAddToExist)
+ {
+ myViewTree->clear();
+ myConstrs.clear();
+ }
+
+ // Prepare all groups of constraints
+ for (const auto& anElemConstr : theList)
+ {
+ myConstrs[FromSketchKindToName(anElemConstr.first->getKind()).first].push_back({ anElemConstr.first, anElemConstr.second });
+ }
+
+ int aRow = 0;
+ for (const auto& line : myConstrs)
+ {
+ //Get icon for group
+ std::string aFile = GetIconPath(line.second.front().Feature->getKind());
+
+ if (line.second[0].Attributes.size() == 0)
+ continue;
+
+ QTreeWidgetItem* anElem = new QTreeWidgetItem(myViewTree);
+ anElem->setFlags(Qt::ItemIsEnabled);
+ anElem->setText(Col_Constraint, QString::fromStdString(line.first));
+ anElem->setIcon(Col_Icon, QIcon(QString::fromStdString(aFile)));
+ anElem->setExpanded(true);
+ auto aStart = line.second.begin();
+ for (; aStart != line.second.end(); ++aStart)
+ {
+ FeatStruct aFeatStruct;
+ //
+ for (const auto& anElemConstr : theList)
+ {
+ if (anElemConstr.first == (*aStart).Feature)
+ {
+ aFeatStruct.Feature = anElemConstr.first;
+ aFeatStruct.Attributes = anElemConstr.second;
+ ++aRow;
+ break;
+ }
+ }
+ //
+ QTreeWidgetItem* aSubElem = new QTreeWidgetItem(anElem);
+ aSubElem->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsEnabled);
+ aSubElem->setText(Col_Constraint, QString::fromStdWString((*aStart).Feature->name()));
+ aSubElem->setData(Col_Constraint, Qt::UserRole + 1, (*aStart).Feature->boolean("ConstraintState")->value()); // Store state of constraints true - activated, false - supressed
+
+ QString aPrimitives;
+ aPrimitives = GetName(aFeatStruct.Attributes[0]);
+ if (aFeatStruct.Attributes.size() == 2)
+ {
+ aPrimitives += "\n";
+ aPrimitives += GetName(aFeatStruct.Attributes[1]);
+ }
+
+ aSubElem->setText(Col_Primitive, aPrimitives);
+ if ((*aStart).Feature->real("ConstraintValue"))
+ {
+ if ((*aStart).Feature->real("AngleValue"))
+ aSubElem->setData(Col_Value, Qt::EditRole, (*aStart).Feature->real("AngleValue")->value());
+ else if ((*aStart).Feature->real("DistanceValue"))
+ aSubElem->setData(Col_Value, Qt::EditRole, (*aStart).Feature->real("DistanceValue")->value());
+ else
+ aSubElem->setData(Col_Value, Qt::EditRole, (*aStart).Feature->real("ConstraintValue")->value());
+ }
+ anElem->addChild(aSubElem);
+ }
+
+ myViewTree->addTopLevelItem(anElem);
+ }
+ return true;
+}
+
+//******************************************************
+void XGUI_SketchConstraintsBrowser::processEvent(const std::shared_ptr<Events_Message>& theMessage)
+{
+ if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)
+ || theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED))
+ {
+ std::shared_ptr<ModelAPI_ObjectUpdatedMessage> aUpdMsg =
+ std::dynamic_pointer_cast<ModelAPI_ObjectUpdatedMessage>(theMessage);
+ std::set<ObjectPtr> aObjects = aUpdMsg->objects();
+
+ foreach(ObjectPtr anObjectC, aObjects)
+ {
+ auto aCreatedFeature = ModelAPI_Feature::feature(anObjectC);
+ if (aCreatedFeature && aCreatedFeature->getKind() == "Sketch")
+ {
+ // It's for update constraints after creating or updating
+ emit deleteCosnstraints();
+ break;
+ }
+ }
+ }
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::initialize(ModuleBase_ITreeNode* theRoot)
+{
+ QItemSelectionModel* aSelMod = myViewTree->selectionModel();
+ connect(aSelMod, SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),
+ this, SLOT(onSelectionChanged(const QItemSelection&, const QItemSelection&)));
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::onContextMenuRequested(QContextMenuEvent* theEvent)
+{
+ QModelIndexList aIndexes;
+ QObjectPtrList aSelectedData = selectedObjects(&aIndexes);
+ bool toEnable = true;
+
+ foreach(QAction* aCmd, actions()) {
+ aCmd->setEnabled(toEnable);
+ }
+ emit contextMenuRequested(theEvent);
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::onEditItem()
+{
+ // Create buttons for edit mode - Move to separat fucntion
+ myButtons = new QHBoxLayout(this);
+ QPushButton* anApplyBut =
+ new QPushButton(QIcon(":pictures/plane_view.png"), tr("Apply"));
+ connect(anApplyBut, SIGNAL(clicked(bool)), this, SLOT(onCloseEditor()));
+ QPushButton* aCloseBut =
+ new QPushButton(QIcon(":pictures/plane_view.png"), tr("Cancel"));
+ connect(aCloseBut, SIGNAL(clicked(bool)), this, SLOT(onCloseEditor()));
+ myButtons->addWidget(anApplyBut);
+ myButtons->addWidget(aCloseBut);
+ myLayout->addLayout(myButtons);
+
+ myLastState = myExtInfo->isChecked();
+ myExtInfo->setChecked(true);
+
+ QObjectPtrList aSelectedData = selectedObjects();
+ if (aSelectedData.size() > 0) {
+ ObjectPtr anObject = aSelectedData.first();
+ if (anObject.get()) { // Selection happens in TreeView
+ // check whether the object can be renamed. There should not be parts which are not loaded
+ std::set<FeaturePtr> aFeatures;
+ aFeatures.insert(ModelAPI_Feature::feature(anObject));
+ if (!XGUI_Tools::canRemoveOrRename((QWidget*)parent(), aFeatures))
+ return;
+
+ // Find index which corresponds the feature
+ QModelIndex aIndex;
+ foreach(QModelIndex aIdx, selectedIndexes()) {
+ if (aIdx.column() == Col_Value) {
+ aIndex = aIdx;
+ if (aIndex.isValid()) {
+ myViewTree->setCurrentIndex(aIndex);
+ auto aData = aIndex.data(0);
+ if (!aData.isNull())
+ myViewTree->openPersistentEditor(myViewTree->currentItem(), Col_Value);
+ }
+ }
+ }
+ }
+ }
+ else
+ {
+ QTreeWidgetItemIterator anIter(myViewTree);
+ while (*anIter) {
+ auto aData = (*anIter)->data(Col_Value, 0);
+ if (!aData.isNull())
+ myViewTree->openPersistentEditor((*anIter), Col_Value);
+ ++anIter;
+ }
+ }
+}
+
+void XGUI_SketchConstraintsBrowser::onDeactivateItems()
+{
+ bool isActivate = true;
+ std::vector<FeaturePtr> aFeaturesMod;
+ // This Check need on request COntext Menu step!
+ foreach(QModelIndex aIdx, selectedIndexes())
+ {
+ if (aIdx.isValid() && aIdx.column() == Col_Constraint) {
+ auto aBool = aIdx.data(Qt::UserRole + 1).toBool();
+ if (aBool)
+ {
+ isActivate = false;
+ break;
+ }
+ }
+ }
+
+ QObjectPtrList aSelectedData = selectedObjects();
+ if (aSelectedData.size() > 0) {
+ ObjectPtr anObject = aSelectedData.first();
+ if (anObject.get()) { // Selection happens in TreeView
+ // check whether the object can be renamed. There should not be parts which are not loaded
+ std::set<FeaturePtr> aFeatures;
+ aFeatures.insert(ModelAPI_Feature::feature(anObject));
+ if (!XGUI_Tools::canRemoveOrRename((QWidget*)parent(), aFeatures))
+ return;
+
+ // Find index which corresponds the feature
+ foreach(QModelIndex aIdx, selectedIndexes()) {
+ auto aParent = GetIndex(aIdx);
+ if (aParent.isValid() && aIdx.isValid() && aIdx.column() == Col_Constraint) {
+ myViewTree->setCurrentIndex(aIdx);
+ myViewTree->currentItem()->setData(Col_Constraint, Qt::UserRole + 1, isActivate);
+
+ auto aFeat = myConstrs[aParent.data().toString().toStdString()].at(aIdx.row()).Feature;
+ aFeaturesMod.push_back(aFeat);
+ }
+ }
+ }
+ }
+
+ emit deactivate(isActivate, aFeaturesMod);
+}
+
+void XGUI_SketchConstraintsBrowser::onCloseEditor()
+{
+ // Close editor
+ QTreeWidgetItemIterator anIter(myViewTree);
+ while (*anIter) {
+ myViewTree->closePersistentEditor((*anIter), Col_Value);
+ ++anIter;
+ }
+ myExtInfo->setChecked(myLastState);
+
+ // Send signals for apply uopdates
+ emit editValues();
+
+ myButtons->takeAt(1)->widget()->deleteLater();
+ myButtons->takeAt(0)->widget()->deleteLater();
+
+ myButtons->deleteLater();
+}
+
+void XGUI_SketchConstraintsBrowser::onCloseEditor(QWidget* theEditor, QAbstractItemDelegate::EndEditHint theHint)
+{
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::setObjectsSelected(const QObjectPtrList& theObjects)
+{
+ QItemSelectionModel* aSelectModel = myViewTree->selectionModel();
+ QModelIndexList aIndexes = aSelectModel->selectedIndexes();
+ if (theObjects.size() == 0) {
+ bool aIsBlock = aSelectModel->blockSignals(true);
+ aSelectModel->clear();
+ aSelectModel->blockSignals(aIsBlock);
+ foreach(QModelIndex aIdx, aIndexes) {
+ myViewTree->update(aIdx);
+ }
+ return;
+ }
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::onSelectionChanged(const QItemSelection& theSelected,
+ const QItemSelection& theDeselected)
+{
+ onSelectionChanged();
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::onSelectionChanged()
+{
+ emit selectionChanged();
+}
+
+//***************************************************
+QObjectPtrList XGUI_SketchConstraintsBrowser::selectedObjects(QModelIndexList* theIndexes) const
+{
+ QObjectPtrList aList;
+ QModelIndexList aIndexes = selectedIndexes();
+
+ foreach(QModelIndex aIdx, aIndexes) {
+ if (aIdx.column() == Col_Constraint) {
+ QModelIndex aParentData = GetIndex(aIdx);
+ if (!aParentData.isValid())
+ continue;
+
+ std::string aData = aParentData.data().toString().toStdString();
+ ObjectPtr aObject = myConstrs.at(aData).at(aIdx.row()).Feature;
+
+ auto anAttrs = myConstrs.at(aParentData.data().toString().toStdString()).at(aIdx.row()).Attributes;
+ if (aObject) {
+ if (!aList.contains(aObject))
+ {
+ aList.append(aObject);
+
+ // Add related primitives to list
+ for (int anIndex = 0; anIndex < anAttrs.size(); ++anIndex)
+ {
+ if (anAttrs[anIndex]->attributeType() == ModelAPI_AttributeRefAttr::typeId())
+ {
+ AttributeRefAttrPtr aRefAttr = std::dynamic_pointer_cast<ModelAPI_AttributeRefAttr>(anAttrs[anIndex]);
+ if (!aRefAttr->attr())
+ {
+ auto aFObj = aRefAttr->object();
+
+ if (!aList.contains(aFObj))
+ {
+ aList.append(aFObj);
+ }
+ }
+ else
+ {
+ aList.append(aRefAttr->attr()->owner());
+ }
+ }
+ }
+
+ if (theIndexes)
+ theIndexes->append(aIdx);
+ }
+ }
+ }
+ }
+ return aList;
+}
+
+//***************************************************
+QObjectPtrList XGUI_SketchConstraintsBrowser::selectedConstraints(QModelIndexList* theIndexes) const
+{
+ QObjectPtrList aList;
+ QModelIndexList aIndexes = selectedIndexes();
+
+ foreach(QModelIndex aIdx, aIndexes) {
+ if (aIdx.column() == Col_Constraint) {
+ QModelIndex aParentData = GetIndex(aIdx);
+ if (!aParentData.isValid())
+ continue;
+
+ std::string aData = aParentData.data().toString().toStdString();
+ ObjectPtr aObject = myConstrs.at(aData).at(aIdx.row()).Feature;
+ if (aObject) {
+ if (!aList.contains(aObject))
+ {
+ aList.append(aObject);
+
+ if (theIndexes)
+ theIndexes->append(aIdx);
+ }
+ }
+ }
+ }
+ return aList;
+}
+
+//***************************************************
+void XGUI_SketchConstraintsBrowser::onDoubleClick(const QModelIndex& theIndex)
+{
+ if (myDelegate->isEditable(theIndex)) {
+ myViewTree->setCurrentIndex(theIndex);
+ myViewTree->openPersistentEditor(myViewTree->currentItem(), Col_Value);
+ // Create buttons apply/Close!
+ onEditItem();
+ }
+}
+
+void XGUI_SketchConstraintsBrowser::resizeEvent(QResizeEvent* theEvent)
+{
+ QWidget::resizeEvent(theEvent);
+ emit sizeChanged();
+}
--- /dev/null
+// Copyright (C) 2014-2022 CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#ifndef XGUI_SketchConstraintsBrowser_H
+#define XGUI_SketchConstraintsBrowser_H
+
+#include "XGUI.h"
+#include <ModuleBase_Definitions.h>
+#include <ModelAPI_Object.h>
+#include <ModelAPI_ResultPart.h>
+#include <ModelAPI_Events.h>
+#include <ModelAPI_Folder.h>
+#include <XGUI_DataModel.h>
+#include <ModelAPI_Attribute.h>
+
+#include <QWidget>
+#include <QTreeView>
+#include <QLabel>
+#include <QVBoxLayout>
+#include <QHBoxLayout>
+#include <QMap>
+#include <QCheckBox>
+#include <QScrollArea>
+#include <QTreeWidget>
+
+class ModuleBase_IDocumentDataModel;
+class XGUI_DataModel;
+class Config_DataModelReader;
+class XGUI_Workshop;
+class XGUI_ConstraintsItemDelegate;
+class ModuleBase_ITreeNode;
+
+//#define DEBUG_INDXES
+
+struct FeatStruct
+{
+ FeaturePtr Feature;
+ std::vector<AttributePtr> Attributes;
+};
+
+
+class XGUI_EXPORT XGUI_ConstraintsViewTree : public QTreeWidget
+{
+ Q_OBJECT
+public:
+ /// Constructor
+ /// \param theParent a parent widget
+ XGUI_ConstraintsViewTree(QWidget* theParent = 0) : QTreeWidget(theParent) {}
+
+ /// Returns current data model
+ XGUI_DataModel* dataModel() const
+ {
+ return static_cast<XGUI_DataModel*>(model());
+ }
+
+signals:
+ //! Emited on context menu request
+ void contextMenuRequested(QContextMenuEvent* theEvent);
+
+protected slots:
+ /// Redefinition of virtual method
+ virtual void contextMenuEvent(QContextMenuEvent* theEvent)
+ {
+ emit contextMenuRequested(theEvent);
+ }
+
+ void closeEditor(QWidget* theEditor, QAbstractItemDelegate::EndEditHint theHint);
+
+};
+
+/**\class XGUI_SketchConstraintsBrowser
+ * \ingroup GUI
+ * \brief Object browser window object. Represents data tree of current data structure
+ */
+class XGUI_EXPORT XGUI_SketchConstraintsBrowser : public QWidget, public Events_Listener
+{
+Q_OBJECT
+ public:
+
+ // Temporary for more simple modification
+ XGUI_ConstraintsViewTree* getViewTree() { return myViewTree; }
+
+ // Make more good option
+ bool UpdateTree(const std::vector<std::pair<FeaturePtr, std::vector<AttributePtr>>>& theList, bool isAddToExist = false);
+
+ /// Constructor
+ /// \param theParent a parent widget
+ XGUI_SketchConstraintsBrowser(QWidget* theParent, XGUI_Workshop* theWorkshop);
+ virtual ~XGUI_SketchConstraintsBrowser();
+
+ /// Event Listener method
+ /// \param theMessage an event message
+ virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
+
+ //! Returns list of currently selected constraints and geometries
+ //! \param theIndexes - output list of corresponded indexes (can be NULL)
+ QObjectPtrList selectedObjects(QModelIndexList* theIndexes = 0) const;
+
+ //! Returns list of currently selected constraints in browser
+ //! \param theIndexes - output list of corresponded indexes (can be NULL)
+ QObjectPtrList selectedConstraints(QModelIndexList* theIndexes = 0) const;
+
+ /// Set selected list of objects
+ /// \param theObjects list of objects to select
+ void setObjectsSelected(const QObjectPtrList& theObjects);
+
+ //! Returns currently selected indexes
+ QModelIndexList selectedIndexes() const
+ {
+ if (myViewTree->selectionModel())
+ return myViewTree->selectionModel()->selectedIndexes();
+ else
+ return QModelIndexList();
+ }
+
+ /// Initialize the Object browser
+ void initialize(ModuleBase_ITreeNode* theRoot);
+
+ /// Returns current workshop
+ XGUI_Workshop* workshop() const { return myWorkshop; }
+
+ void onSelectionChanged();
+
+public slots:
+ //! Called on Edit command request
+ void onEditItem();
+
+ //! Change state of constraints
+ void onDeactivateItems();
+
+private slots:
+ void SelectStateChanged(bool theState);
+
+signals:
+ //! Emited when selection is changed
+ void selectionChanged();
+
+ //! Emited on context menu request
+ void contextMenuRequested(QContextMenuEvent* theEvent);
+
+ //! Segnal is emitted when user cliks by mouse in header label of object browser
+ void headerMouseDblClicked(const QModelIndex&);
+
+ //! An signal emitted on resize of the Object Browser
+ void sizeChanged();
+
+ void editValues();
+ void deleteCosnstraints();
+ void deactivate(bool, std::vector<FeaturePtr>);
+
+protected:
+ //! redefinition of a virtual method
+ void resizeEvent(QResizeEvent* theEvent);
+
+ private slots:
+ /// Show context menu
+ /// \param theEvent a context menu event
+ void onContextMenuRequested(QContextMenuEvent* theEvent);
+
+ //! Called when selection in Data Tree is changed
+ void onSelectionChanged(const QItemSelection& theSelected, const QItemSelection& theDeselected);
+
+ /// Slot for reaction on double click in the table (start editing)
+/// \param theIndex the clicked index
+ void onDoubleClick(const QModelIndex& theIndex);
+
+ /// Slot for reaction on end of cell editing
+ /// \param theEditor the editor widget
+ /// \param theHint end of edit type
+ void onCloseEditor(QWidget* theEditor, QAbstractItemDelegate::EndEditHint theHint);
+
+ void onCloseEditor();
+
+ private:
+ XGUI_Workshop* myWorkshop;
+
+ XGUI_ConstraintsViewTree* myViewTree;
+ QVBoxLayout* myLayout;
+ QHBoxLayout* myButtons;
+
+ bool myLastState; //Store state of Extended Information CheckBox (need for correct reset after edit constraints)
+ QCheckBox* myExtInfo;
+ XGUI_ConstraintsItemDelegate* myDelegate;
+
+ std::map<std::string, std::vector<FeatStruct>> myConstrs; // string - name of group, vector - constraints from group
+};
+
+#endif
#include <XGUI_InspectionPanel.h>
#include <XGUI_CompressFiles.h>
+#include <XGUI_SketchConstraintsBrowser.h>
+
#ifdef HAVE_SALOME
#include <SUIT_Application.h>
#include <SUIT_Session.h>
: QObject(),
myModule(NULL),
myObjectBrowser(0),
+ mySkConstBrwsr(0),
myPropertyPanel(0),
myFacesPanel(0),
myDisplayer(0),
return aObjDock;
}
+//******************************************************
+QDockWidget* XGUI_Workshop::createConstraintsBrowser(QWidget* theParent)
+{
+ QDockWidget* aSkDock = new QDockWidget(theParent);
+ aSkDock->setAllowedAreas(Qt::LeftDockWidgetArea |
+ Qt::RightDockWidgetArea);
+ aSkDock->setWindowTitle(tr("Sketch Constraints Browser"));
+ aSkDock->setStyleSheet(
+ "::title { position: relative; padding-left: 5px; text-align: left center }");
+
+ mySkConstBrwsr = new XGUI_SketchConstraintsBrowser(aSkDock, this);
+ mySkConstBrwsr->initialize(myModule->rootNode());
+ //myModule->customizeObjectBrowser(mySkConstBrwsr);
+ aSkDock->setWidget(mySkConstBrwsr);
+ aSkDock->setObjectName("Constraints browser");
+
+ connect(mySkConstBrwsr, SIGNAL(sizeChanged()), SLOT(onDockSizeChanged()));
+
+ mySelector->connectViewers();
+ myContextMenuMgr->connectConstraintsBrowser();
+ return aSkDock;
+}
+
//******************************************************
/*
* Creates dock widgets, places them in corresponding area
myObjectBrowser->parentWidget()->hide();
}
+//******************************************************
+void XGUI_Workshop::showConstraintsBrowser()
+{
+ if (!isSalomeMode())
+ mySkConstBrwsr->parentWidget()->show();
+}
+
+//******************************************************
+void XGUI_Workshop::hideConstraintsBrowser()
+{
+ if (!isSalomeMode())
+ mySkConstBrwsr->parentWidget()->hide();
+}
+
//******************************************************
void XGUI_Workshop::salomeViewerSelectionChanged()
{
deleteObjects();
else if (theId == "CLEAN_HISTORY_CMD")
cleanHistory();
+ else if (theId == "EDIT_CONSTR_CMD")
+ editConstraints();
+ else if (theId == "DEACTIVATE_CONSTRAINT_CMD")
+ deactivateCosntraint();
else if (theId == "MOVE_CMD" || theId == "MOVE_SPLIT_CMD")
moveObjects(theId == "MOVE_SPLIT_CMD");
else if (theId == "RECOVER_CMD")
myDisplayer->updateViewer();
}
+void XGUI_Workshop::deactivateCosntraint()
+{
+ QObjectPtrList anObjects = constraintsBrowser()->selectedObjects();
+
+ constraintsBrowser()->setObjectsSelected(anObjects);
+ constraintsBrowser()->onDeactivateItems();
+}
+
+void XGUI_Workshop::editConstraints()
+{
+ QObjectPtrList anObjects = constraintsBrowser()->selectedObjects();
+
+ // restore selection in case if dialog box was shown
+ constraintsBrowser()->setObjectsSelected(anObjects);
+ constraintsBrowser()->onEditItem();
+}
+
//**************************************************************
void addRefsToFeature(const FeaturePtr& theFeature,
const std::map<FeaturePtr, std::set<FeaturePtr> >& theMainList,
class XGUI_ViewerProxy;
class XGUI_WorkshopListener;
class XGUI_InspectionPanel;
+class XGUI_SketchConstraintsBrowser;
class ModuleBase_IModule;
class ModuleBase_IViewer;
XGUI_Workshop(XGUI_SalomeConnector* theConnector = 0);
virtual ~XGUI_Workshop();
+ /// Create Sketch constraints browser widget
+ /// \param theParent a parent of widget
+ QDockWidget* createConstraintsBrowser(QWidget* theParent);
+
+ void removeConstrBrowser() { mySkConstBrwsr = NULL; }
+
/// Starting of the application
void startApplication();
/// Returns Object browser
XGUI_ObjectsBrowser* objectBrowser() const { return myObjectBrowser; }
+ /// Returns Sketch constraints browser
+ XGUI_SketchConstraintsBrowser* constraintsBrowser() const { return mySkConstBrwsr; }
+
/// This method is called by Salome module when selection is changed
void salomeViewerSelectionChanged();
/// Delete features
void deleteObjects();
+ /// Eit constraints
+ void editConstraints();
+
+ void deactivateCosntraint();
+
/// Searches for selected features unused in other (not selected) features. If one or several
/// selected features are found, a warning message proposes to delete them. It contains
/// the list of features to be deleted.
/// Hide object Browser
void hideObjectBrowser();
+ /// Show Sketch constraints Browser
+ void showConstraintsBrowser();
+
+ /// Hide Sketch constraints Browser
+ void hideConstraintsBrowser();
+
/// Close document
void closeDocument();
AppElements_MainWindow* myMainWindow; ///< desktop window
#endif
+ XGUI_SketchConstraintsBrowser* mySkConstBrwsr; // ~~!!!!~~
ModuleBase_IModule* myModule; ///< current module
XGUI_ErrorMgr* myErrorMgr; ///< updator of error message
XGUI_ObjectsBrowser* myObjectBrowser; ///< data tree widget
<translation>Panneau de propriété</translation>
</message>
</context>
+<context>
+ <name>XGUI_SketchConstraintsBrowser</name>
+ <message>
+ <source>Extended Information</source>
+ <translation>Informations étendues</translation>
+ </message>
+</context>
<context>
<name>XGUI_TransparencyWidget</name>
<message>