From: Paul RASCLE Date: Tue, 7 Feb 2017 15:32:49 +0000 (+0100) Subject: menu et icones. en cours X-Git-Tag: Salome_8_3_Hydro_2_0rc1~23 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ad1a1986c2f04fb7320100d25aa72f54793ffa3d;p=modules%2Fhydrosolver.git menu et icones. en cours --- diff --git a/src/HYDROGUI/HYDROSOLVERGUI.py b/src/HYDROGUI/HYDROSOLVERGUI.py index d0d6cb8..69a34c4 100755 --- a/src/HYDROGUI/HYDROSOLVERGUI.py +++ b/src/HYDROGUI/HYDROSOLVERGUI.py @@ -78,13 +78,6 @@ class GUIcontext: # 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", @@ -120,10 +113,15 @@ class GUIcontext: 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" ) @@ -468,7 +466,7 @@ def generate_interpolz_py(): ### # Open dialog for boundary conditions edition ### -def eficas_for_cas_Telemac2D() +def eficas_for_cas_Telemac2D(): runEficas(code='TELEMAC') ### # Commands dictionary @@ -491,5 +489,5 @@ dict_command = { #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, }