mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-22 09:10:33 +05:00
Allowed selection of subfaces in for extruded boss /cut
This commit is contained in:
parent
f9d4ef6d53
commit
d5698079fe
@ -203,20 +203,26 @@ bool OperationGUI_ExtrudedFeatureDlg::ClickOnApply()
|
||||
void OperationGUI_ExtrudedFeatureDlg::SetEditCurrentArgument()
|
||||
{
|
||||
QPushButton* send = (QPushButton*)sender();
|
||||
|
||||
|
||||
if (send == myGroup->PushButton1) {
|
||||
myEditCurrentArgument = myGroup->LineEdit1;
|
||||
|
||||
myGroup->PushButton2->setDown(false);
|
||||
myGroup->LineEdit2->setEnabled(false);
|
||||
|
||||
globalSelection(); // close local selection
|
||||
}
|
||||
else if (send == myGroup->PushButton2) {
|
||||
myEditCurrentArgument = myGroup->LineEdit2;
|
||||
|
||||
myGroup->PushButton1->setDown(false);
|
||||
myGroup->LineEdit1->setEnabled(false);
|
||||
|
||||
globalSelection(); // close local selection to clear it
|
||||
// localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
|
||||
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_FACE );
|
||||
}
|
||||
|
||||
|
||||
// enable line edit
|
||||
myEditCurrentArgument->setEnabled(true);
|
||||
myEditCurrentArgument->setFocus();
|
||||
@ -244,7 +250,7 @@ void OperationGUI_ExtrudedFeatureDlg::SelectionIntoArgument()
|
||||
if (myEditCurrentArgument == myGroup->LineEdit2)
|
||||
{
|
||||
types.clear();
|
||||
types << TopAbs_EDGE << TopAbs_WIRE;
|
||||
types << TopAbs_EDGE << TopAbs_WIRE << TopAbs_FACE;
|
||||
}
|
||||
|
||||
GEOM::GeomObjPtr aSelectedObject = getSelected( types );
|
||||
@ -374,6 +380,15 @@ bool OperationGUI_ExtrudedFeatureDlg::execute (ObjectList& objects)
|
||||
return true;
|
||||
}
|
||||
|
||||
//=================================================================================
|
||||
// function : addSubshapeToStudy
|
||||
// purpose : virtual method to add new SubObjects if local selection
|
||||
//=================================================================================
|
||||
void OperationGUI_ExtrudedFeatureDlg::addSubshapesToStudy()
|
||||
{
|
||||
GEOMBase::PublishSubObject( myObject2.get() );
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -60,7 +60,8 @@ protected:
|
||||
// redefined from GEOMBase_Helper
|
||||
virtual GEOM::GEOM_IOperations_ptr createOperation();
|
||||
virtual bool isValid( QString& );
|
||||
virtual bool execute( ObjectList& );
|
||||
virtual bool execute( ObjectList& );
|
||||
virtual void addSubshapesToStudy();
|
||||
|
||||
private:
|
||||
void Init();
|
||||
|
Loading…
Reference in New Issue
Block a user