mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 10:08:35 +05:00
0020632: EDF 1173 GEOM : Extrusion with multiple selection
Additional changes (to set object name in the dialog boxes properly)
This commit is contained in:
parent
e1706ff05c
commit
ad71fc6606
@ -498,3 +498,12 @@ void GenerationGUI_PipeDlg::addSubshapesToStudy()
|
||||
|
||||
addSubshapesToFather(objMap);
|
||||
}
|
||||
|
||||
//=================================================================================
|
||||
// function : extractPrefix
|
||||
// purpose : redefined from GEOMBase_Helper class
|
||||
//=================================================================================
|
||||
bool GenerationGUI_PipeDlg::extractPrefix() const
|
||||
{
|
||||
return myBaseObjects.length() > 1;
|
||||
}
|
||||
|
@ -48,6 +48,7 @@ protected:
|
||||
virtual bool isValid( QString& );
|
||||
virtual bool execute( ObjectList& );
|
||||
virtual void addSubshapesToStudy();
|
||||
virtual bool extractPrefix() const;
|
||||
|
||||
private:
|
||||
void Init();
|
||||
|
@ -733,3 +733,12 @@ void GenerationGUI_PrismDlg::addSubshapesToStudy()
|
||||
}
|
||||
addSubshapesToFather(objMap);
|
||||
}
|
||||
|
||||
//=================================================================================
|
||||
// function : extractPrefix
|
||||
// purpose : redefined from GEOMBase_Helper class
|
||||
//=================================================================================
|
||||
bool GenerationGUI_PrismDlg::extractPrefix() const
|
||||
{
|
||||
return myBaseObjects.length() > 1;
|
||||
}
|
||||
|
@ -50,6 +50,7 @@ protected:
|
||||
virtual bool isValid( QString& );
|
||||
virtual bool execute( ObjectList& );
|
||||
virtual void addSubshapesToStudy();
|
||||
virtual bool extractPrefix() const;
|
||||
|
||||
private:
|
||||
void Init();
|
||||
|
@ -458,3 +458,12 @@ void GenerationGUI_RevolDlg::addSubshapesToStudy()
|
||||
|
||||
addSubshapesToFather(objMap);
|
||||
}
|
||||
|
||||
//=================================================================================
|
||||
// function : extractPrefix
|
||||
// purpose : redefined from GEOMBase_Helper class
|
||||
//=================================================================================
|
||||
bool GenerationGUI_RevolDlg::extractPrefix() const
|
||||
{
|
||||
return myBaseObjects.length() > 1;
|
||||
}
|
||||
|
@ -48,6 +48,7 @@ protected:
|
||||
virtual bool isValid( QString& );
|
||||
virtual bool execute( ObjectList& );
|
||||
virtual void addSubshapesToStudy();
|
||||
virtual bool extractPrefix() const;
|
||||
|
||||
private:
|
||||
void Init();
|
||||
|
Loading…
Reference in New Issue
Block a user