FEM: some renameing for multiple solver:
- module names vs multiple solver - stick with python command class names in Fem - rename commands for new objects from _CommandFemSomeObjName to _CommandSomeObjName - rename commands for do something to _CommandDoSomething - change tool names to have a consistent naming in all FEM for menue tools and tool tipps
This commit is contained in:
@@ -55,9 +55,9 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
|
||||
Gui::ToolBarItem* root = StdWorkbench::setupToolBars();
|
||||
Gui::ToolBarItem* fem = new Gui::ToolBarItem(root);
|
||||
fem->setCommand("FEM");
|
||||
*fem << "Fem_NewMechanicalAnalysis"
|
||||
*fem << "Fem_Analysis"
|
||||
<< "Fem_SolverCalculix"
|
||||
<< "Fem_CreateFromShape"
|
||||
<< "Fem_MeshFromShape"
|
||||
<< "Fem_MechanicalMaterial"
|
||||
<< "Fem_BeamSection"
|
||||
<< "Fem_ShellThickness"
|
||||
@@ -73,8 +73,8 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
|
||||
<< "Fem_ConstraintGear"
|
||||
<< "Fem_ConstraintPulley"
|
||||
<< "Separator"
|
||||
<< "Fem_SolverJobControl"
|
||||
<< "Fem_Quick_Analysis"
|
||||
<< "Fem_ControlSolver"
|
||||
<< "Fem_RunSolver"
|
||||
<< "Fem_PurgeResults"
|
||||
<< "Fem_ShowResult";
|
||||
return root;
|
||||
@@ -87,9 +87,9 @@ Gui::MenuItem* Workbench::setupMenuBar() const
|
||||
Gui::MenuItem* fem = new Gui::MenuItem;
|
||||
root->insertItem(item, fem);
|
||||
fem->setCommand("&FEM");
|
||||
*fem << "Fem_NewMechanicalAnalysis"
|
||||
*fem << "Fem_Analysis"
|
||||
<< "Fem_SolverCalculix"
|
||||
<< "Fem_CreateFromShape"
|
||||
<< "Fem_MeshFromShape"
|
||||
<< "Fem_MechanicalMaterial"
|
||||
<< "Fem_BeamSection"
|
||||
<< "Fem_ShellThickness"
|
||||
@@ -105,8 +105,8 @@ Gui::MenuItem* Workbench::setupMenuBar() const
|
||||
<< "Fem_ConstraintGear"
|
||||
<< "Fem_ConstraintPulley"
|
||||
<< "Separator"
|
||||
<< "Fem_SolverJobControl"
|
||||
<< "Fem_Quick_Analysis"
|
||||
<< "Fem_ControlSolver"
|
||||
<< "Fem_RunSolver"
|
||||
<< "Fem_PurgeResults"
|
||||
<< "Fem_ShowResult";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user