# create toolbar
tid = sgPyQt.createTool( "Hydro" )
# create actions and fill menu and toolbar with actions
- #a = sgPyQt.createAction( GUIcontext.DEFINE_BOUNDARY_CONDITIONS_ID,
- # "Define boundary conditions", "Define boundary conditions",
- # "Define the boundary conditions for Telemac",
- # "define_boundary_conditions.png" )
- sgPyQt.createMenu( a, mid )
- sgPyQt.createTool( a, tid )
-
a = sgPyQt.createAction( GUIcontext.EDIT_BOUNDARY_CONDITIONS_FILE_ID,
"Edit boundary conditions file", "Edit boundary conditions file",
"Create/edit the boundary conditions file for Telemac",
sgPyQt.createMenu( a, mid )
sgPyQt.createTool( a, tid )
- a = sgPyQt.createSeparator()
+ a = sgPyQt.createAction( GUIcontext.EDIT_PYTEL_CASE_ID,
+ "Edit case for Pytel execution", "Edit case for Pytel execution",
+ "Edit a new case for Pytel execution", "edit_case_pytel.png" )
+
sgPyQt.createMenu( a, mid )
sgPyQt.createTool( a, tid )
+ a = sgPyQt.createSeparator()
+
a = sgPyQt.createAction( GUIcontext.GENERATE_INTERPOLZ_PY_ID,
"Generate interpolz.py", "Generate interpolz.py",
"Generate interpolation script from the template", "generate_interpolz_py.png" )
###
# Open dialog for boundary conditions edition
###
-def eficas_for_cas_Telemac2D()
+def eficas_for_cas_Telemac2D():
runEficas(code='TELEMAC')
###
# Commands dictionary
#GUIcontext.DEFINE_BOUNDARY_CONDITIONS_ID: define_boundary_conditions,
GUIcontext.EDIT_BOUNDARY_CONDITIONS_FILE_ID: edit_boundary_conditions_file,
GUIcontext.GENERATE_INTERPOLZ_PY_ID: generate_interpolz_py,
- GUIcontext.GUIcontext.DEFINE_CAS_FILE: eficas_for_cas_Telemac2D,
+ GUIcontext.DEFINE_CAS_FILE: eficas_for_cas_Telemac2D,
}