MainWindow: Rename some action.

mesh
Pierre-Antoine Rouby 2023-03-17 09:48:54 +01:00
parent 5e0e1e5c5e
commit 7821faba35
2 changed files with 123 additions and 124 deletions

View File

@ -18,27 +18,25 @@ from view.AboutWindow import AboutWindow
from model.Study import Study from model.Study import Study
no_model_action = [ no_model_action = [
"actionOuvrir_une_tude", "actionR_seau", "actionNouvelle_tude_RubarBE", "action_menu_new", "action_menu_open", "action_menu_import_mage",
"actionOuvrir_une_tude_2", "actionImporter_un_jeu_de_donn_es_MAGE", "action_menu_import_rubarbe", "action_toolBar_open",
"actionImporter_un_jeu_de_donn_es_RubarBE"
] ]
model_action = [ model_action = [
"actionenregistrer_etude_en_cours", "actionfermer_etude_en_cours", "action_menu_close", "action_menu_save_maille", "action_menu_save",
"actionFermer", "actionEnregistrer", "actionEnregistrer_2", "action_menu_save_as", "action_toolBar_close", "action_toolBar_save",
"actionEnregistrer_sous", "actionArchiver",
] ]
other_model_action = [ other_model_action = [
"actionlancer_solveur", "action_toolBar_run_solver", "action_toolBar_kill_solver"
] ]
define_model_action = [ define_model_action = [
"actionReseau", "actionGeometrie", "action_toolBar_network", "action_toolBar_geometry",
"actionMaillage", "actionlancer_mailleur_externe", "action_toolBar_maillage", "action_toolBar_run_mailleur",
"actionCond_Limites", "actionApp_Lat_raux", "action_toolBar_cond_limites", "action_toolBar_App_Lateraux",
"actionDeversements", "actionTroncons", "action_toolBar_Deversements", "action_toolBar_Troncons",
"actionFrottements", "actionOuvrages", "action_toolBar_Frottements", "action_toolBar_Ouvrages",
] ]
action = ( action = (
@ -56,7 +54,7 @@ class ApplicationWindow(QMainWindow, ListedSubWindow):
self.model = None self.model = None
# UI # UI
self.ui = loadUi( self.ui = loadUi(
os.path.join(os.path.dirname(__file__), "ui", "MainWindow_old.ui"), os.path.join(os.path.dirname(__file__), "ui", "MainWindow.ui"),
self self
) )
@ -83,30 +81,32 @@ class ApplicationWindow(QMainWindow, ListedSubWindow):
""" """
actions = { actions = {
# Menu action # Menu action
"actionA_propos": self.open_about, "action_menu_config": self.open_configure,
"actionConfiguration_de_Pamhyr": self.open_configure, "action_menu_new": self.open_new_study,
"actionR_seau": self.open_new_study, "action_menu_open": self.open_model,
"actionEnregistrer_2": self.save_study, "action_menu_save": self.save_study,
"actionEnregistrer_sous": self.save_as_study, "action_menu_save_as": self.save_as_study,
## Help
"action_menu_about": self.open_about,
# ToolBar action # ToolBar action
"actionquitter_application": self.close, "action_toolBar_quit": self.close,
"actionOuvrir_une_tude": self.open_model, "action_toolBar_open": self.open_model,
"actionenregistrer_etude_en_cours": self.save_study, "action_toolBar_save": self.save_study,
"actionfermer_etude_en_cours": self.close_model, "action_toolBar_close": self.close_model,
"actionlancer_solveur": self.open_dummy, "action_toolBar_run_solver": self.open_dummy,
"actioninterrompt_simulation_en_cours": self.open_dummy, "action_toolBar_kill_solver": self.open_dummy,
"actionafficher_listings_simulation": self.open_dummy, "action_toolBar_listing": self.open_dummy,
"actionlancer_solveur": self.open_dummy, ## Current actions
"actionReseau": lambda: self.open_dummy("Networks"), "action_toolBar_network": lambda: self.open_dummy("Network"),
"actionGeometrie": lambda: self.open_dummy("Geomerty"), "action_toolBar_geometry": lambda: self.open_dummy("Geomerty"),
"actionMaillage": lambda: self.open_dummy("Maillage"), "action_toolBar_maillage": lambda: self.open_dummy("Maillage"),
"actionlancer_mailleur_externe": lambda: self.open_dummy("Lancement mailleur externe"), "action_toolBar_run_mailleur": lambda: self.open_dummy("Lancement mailleur externe"),
"actionCond_Limites": lambda: self.open_dummy("Condition Limites"), "action_toolBar_cond_limites": lambda: self.open_dummy("Condition Limites"),
"actionApp_Lat_raux": lambda: self.open_dummy("Apport Lateraux"), "action_toolBar_App_Lateraux": lambda: self.open_dummy("Apport Lateraux"),
"actionDeversements": lambda: self.open_dummy("Deversement"), "action_toolBar_Deversements": lambda: self.open_dummy("Deversement"),
"actionTroncons": lambda: self.open_dummy("Tronçons"), "action_toolBar_Troncons": lambda: self.open_dummy("Tronçons"),
"actionFrottements": lambda: self.open_dummy("Frottements"), "action_toolBar_Frottements": lambda: self.open_dummy("Frottements"),
"actionOuvrages": lambda: self.open_dummy("Ouvrages"), "action_toolBar_Ouvrages": lambda: self.open_dummy("Ouvrages"),
} }
for action in actions: for action in actions:

View File

@ -75,33 +75,32 @@
<property name="title"> <property name="title">
<string>&amp;Fichier</string> <string>&amp;Fichier</string>
</property> </property>
<addaction name="m_a_new_mage"/> <addaction name="action_menu_new"/>
<addaction name="m_a_new_rubarbe"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_open"/> <addaction name="action_menu_open"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_import_mage"/> <addaction name="action_menu_import_mage"/>
<addaction name="m_a_import_rubarbe"/> <addaction name="action_menu_import_rubarbe"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_close"/> <addaction name="action_menu_close"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_save_maille"/> <addaction name="action_menu_save_maille"/>
<addaction name="m_a_save"/> <addaction name="action_menu_save"/>
<addaction name="m_a_save_as"/> <addaction name="action_menu_save_as"/>
<addaction name="m_a_archive"/> <addaction name="action_menu_archive"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_config"/> <addaction name="action_menu_config"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_quit"/> <addaction name="action_menu_quit"/>
<addaction name="separator"/> <addaction name="separator"/>
</widget> </widget>
<widget class="QMenu" name="menu_R_seau"> <widget class="QMenu" name="menu_R_seau">
<property name="title"> <property name="title">
<string>&amp;Réseau</string> <string>&amp;Réseau</string>
</property> </property>
<addaction name="m_a_edit_network"/> <addaction name="action_menu_edit_network"/>
</widget> </widget>
<widget class="QMenu" name="menuG_om_trie"> <widget class="QMenu" name="menuG_om_trie">
<property name="title"> <property name="title">
@ -115,22 +114,22 @@
<property name="title"> <property name="title">
<string>Profil en travers</string> <string>Profil en travers</string>
</property> </property>
<addaction name="m_a_abscisse_cote"/> <addaction name="action_menu_abscisse_cote"/>
<addaction name="m_a_XYZ"/> <addaction name="action_menu_XYZ"/>
</widget> </widget>
<addaction name="menuProfil_en_travers"/> <addaction name="menuProfil_en_travers"/>
</widget> </widget>
<addaction name="m_a_edit_geometry"/> <addaction name="action_menu_edit_geometry"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_import_geometry"/> <addaction name="action_menu_import_geometry"/>
<addaction name="m_a_export_geometry"/> <addaction name="action_menu_export_geometry"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="m_a_run_mailler"/> <addaction name="action_menu_run_mailler"/>
<addaction name="m_a_choose_maillieur_by_bief"/> <addaction name="action_menu_choose_maillieur_by_bief"/>
<addaction name="m_a_view_maille"/> <addaction name="action_menu_view_maille"/>
<addaction name="m_a_export_maillage"/> <addaction name="action_menu_export_maillage"/>
<addaction name="m_a_delete_maillage_for_current_bief"/> <addaction name="action_menu_delete_maillage_for_current_bief"/>
<addaction name="m_a_delete_maillage"/> <addaction name="action_menu_delete_maillage"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="menuComparer"/> <addaction name="menuComparer"/>
@ -196,9 +195,9 @@
<property name="title"> <property name="title">
<string>&amp;Aide</string> <string>&amp;Aide</string>
</property> </property>
<addaction name="actionAide_de_PAMHYR"/> <addaction name="action_menu_help_pamhyr"/>
<addaction name="actionAide_de_MAGE"/> <addaction name="action_menu_help_mage"/>
<addaction name="actionA_propos"/> <addaction name="action_menu_about"/>
</widget> </widget>
<addaction name="menu_File"/> <addaction name="menu_File"/>
<addaction name="menu_R_seau"/> <addaction name="menu_R_seau"/>
@ -257,18 +256,18 @@
<attribute name="toolBarBreak"> <attribute name="toolBarBreak">
<bool>false</bool> <bool>false</bool>
</attribute> </attribute>
<addaction name="actionOuvrir_une_tude"/> <addaction name="action_toolBar_open"/>
<addaction name="actionenregistrer_etude_en_cours"/> <addaction name="action_toolBar_save"/>
<addaction name="actionfermer_etude_en_cours"/> <addaction name="action_toolBar_close"/>
<addaction name="actionquitter_application"/> <addaction name="action_toolBar_quit"/>
<addaction name="actionlancer_solveur"/> <addaction name="action_toolBar_run_solver"/>
<addaction name="actioninterrompt_simulation_en_cours"/> <addaction name="action_toolBar_kill_solver"/>
<addaction name="actionafficher_listings_simulation"/> <addaction name="action_toolBar_listing"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="actionReseau"/> <addaction name="action_toolBar_network"/>
<addaction name="actionGeometrie"/> <addaction name="action_toolBar_geometry"/>
<addaction name="actionMaillage"/> <addaction name="action_toolBar_maillage"/>
<addaction name="actionlancer_mailleur_externe"/> <addaction name="action_toolBar_run_mailleur"/>
</widget> </widget>
<widget class="QToolBar" name="toolBar_2"> <widget class="QToolBar" name="toolBar_2">
<property name="font"> <property name="font">
@ -289,20 +288,20 @@
<attribute name="toolBarBreak"> <attribute name="toolBarBreak">
<bool>true</bool> <bool>true</bool>
</attribute> </attribute>
<addaction name="actionCond_Limites"/> <addaction name="action_toolBar_cond_limites"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="actionApp_Lat_raux"/> <addaction name="action_toolBar_App_Lateraux"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="actionDeversements"/> <addaction name="action_toolBar_Deversements"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="actionTroncons"/> <addaction name="action_toolBar_Troncons"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="actionFrottements"/> <addaction name="action_toolBar_Frottements"/>
<addaction name="separator"/> <addaction name="separator"/>
<addaction name="actionOuvrages"/> <addaction name="action_toolBar_Ouvrages"/>
<addaction name="separator"/> <addaction name="separator"/>
</widget> </widget>
<action name="m_a_new_mage"> <action name="action_menu_new">
<property name="checkable"> <property name="checkable">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -311,7 +310,7 @@
<normaloff>ressources/edit.png</normaloff>ressources/edit.png</iconset> <normaloff>ressources/edit.png</normaloff>ressources/edit.png</iconset>
</property> </property>
<property name="text"> <property name="text">
<string>Nouvelle étude MAGE</string> <string>Nouvelle étude</string>
</property> </property>
<property name="font"> <property name="font">
<font> <font>
@ -323,7 +322,7 @@
<string>Ctrl+N</string> <string>Ctrl+N</string>
</property> </property>
</action> </action>
<action name="actionOuvrir_une_tude"> <action name="action_toolBar_open">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/open.png</normaloff>ressources/open.png</iconset> <normaloff>ressources/open.png</normaloff>ressources/open.png</iconset>
@ -340,7 +339,7 @@
<string>Ctrl+R</string> <string>Ctrl+R</string>
</property> </property>
</action> </action>
<action name="m_a_open"> <action name="action_menu_open">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normalon>ressources/open.png</normalon> <normalon>ressources/open.png</normalon>
@ -353,7 +352,7 @@
<string>Ctrl+O</string> <string>Ctrl+O</string>
</property> </property>
</action> </action>
<action name="m_a_import_mage"> <action name="action_menu_import_mage">
<property name="text"> <property name="text">
<string>Importer un jeu de données MAGE</string> <string>Importer un jeu de données MAGE</string>
</property> </property>
@ -361,12 +360,12 @@
<string/> <string/>
</property> </property>
</action> </action>
<action name="m_a_import_rubarbe"> <action name="action_menu_import_rubarbe">
<property name="text"> <property name="text">
<string>Importer un jeu de données RubarBE</string> <string>Importer un jeu de données RubarBE</string>
</property> </property>
</action> </action>
<action name="m_a_close"> <action name="action_menu_close">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>../ressources/menu/gtk-close.png</normaloff>../ressources/menu/gtk-close.png</iconset> <normaloff>../ressources/menu/gtk-close.png</normaloff>../ressources/menu/gtk-close.png</iconset>
@ -375,7 +374,7 @@
<string>Fermer</string> <string>Fermer</string>
</property> </property>
</action> </action>
<action name="m_a_save_maille"> <action name="action_menu_save_maille">
<property name="checkable"> <property name="checkable">
<bool>true</bool> <bool>true</bool>
</property> </property>
@ -386,7 +385,7 @@
<string>Enregistrer le maillage</string> <string>Enregistrer le maillage</string>
</property> </property>
</action> </action>
<action name="m_a_save"> <action name="action_menu_save">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/gtk-save.png</normaloff>ressources/gtk-save.png</iconset> <normaloff>ressources/gtk-save.png</normaloff>ressources/gtk-save.png</iconset>
@ -398,7 +397,7 @@
<string>Ctrl+S</string> <string>Ctrl+S</string>
</property> </property>
</action> </action>
<action name="m_a_save_as"> <action name="action_menu_save_as">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/gtk-save-as.png</normaloff>ressources/gtk-save-as.png</iconset> <normaloff>ressources/gtk-save-as.png</normaloff>ressources/gtk-save-as.png</iconset>
@ -410,17 +409,17 @@
<string>Ctrl+Shift+S</string> <string>Ctrl+Shift+S</string>
</property> </property>
</action> </action>
<action name="m_a_archive"> <action name="action_menu_archive">
<property name="text"> <property name="text">
<string>Archiver</string> <string>Archiver</string>
</property> </property>
</action> </action>
<action name="m_a_config"> <action name="action_menu_config">
<property name="text"> <property name="text">
<string>Configuration de Pamhyr</string> <string>Configuration de Pamhyr</string>
</property> </property>
</action> </action>
<action name="m_a_quit"> <action name="action_menu_quit">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>../ressources/menu/gtk-quit.png</normaloff>../ressources/menu/gtk-quit.png</iconset> <normaloff>../ressources/menu/gtk-quit.png</normaloff>../ressources/menu/gtk-quit.png</iconset>
@ -432,37 +431,37 @@
<string>Ctrl+F4</string> <string>Ctrl+F4</string>
</property> </property>
</action> </action>
<action name="m_a_edit_network"> <action name="action_menu_edit_network">
<property name="text"> <property name="text">
<string> Éditer le réseau</string> <string> Éditer le réseau</string>
</property> </property>
</action> </action>
<action name="m_a_edit_geometry"> <action name="action_menu_edit_geometry">
<property name="text"> <property name="text">
<string>Éditer la géométrie </string> <string>Éditer la géométrie </string>
</property> </property>
</action> </action>
<action name="m_a_import_geometry"> <action name="action_menu_import_geometry">
<property name="text"> <property name="text">
<string>Importer une géométrie</string> <string>Importer une géométrie</string>
</property> </property>
</action> </action>
<action name="m_a_export_geometry"> <action name="action_menu_export_geometry">
<property name="text"> <property name="text">
<string>Exporter la géométrie</string> <string>Exporter la géométrie</string>
</property> </property>
</action> </action>
<action name="m_a_run_mailler"> <action name="action_menu_run_mailler">
<property name="text"> <property name="text">
<string>Lancer le mailleur externe</string> <string>Lancer le mailleur externe</string>
</property> </property>
</action> </action>
<action name="m_a_choose_maillieur_by_bief"> <action name="action_menu_choose_maillieur_by_bief">
<property name="text"> <property name="text">
<string>Choix du mailleur par bief</string> <string>Choix du mailleur par bief</string>
</property> </property>
</action> </action>
<action name="m_a_view_maille"> <action name="action_menu_view_maille">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -470,7 +469,7 @@
<string>Visualiser la géométrie maillée</string> <string>Visualiser la géométrie maillée</string>
</property> </property>
</action> </action>
<action name="m_a_export_maillage"> <action name="action_menu_export_maillage">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -478,7 +477,7 @@
<string>Exporter le maillage </string> <string>Exporter le maillage </string>
</property> </property>
</action> </action>
<action name="m_a_delete_maillage_for_current_bief"> <action name="action_menu_delete_maillage_for_current_bief">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -486,7 +485,7 @@
<string>Supprimer le maillage du bief courant</string> <string>Supprimer le maillage du bief courant</string>
</property> </property>
</action> </action>
<action name="m_a_delete_maillage"> <action name="action_menu_delete_maillage">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -494,12 +493,12 @@
<string>Supprimer l'ensemble des maillages</string> <string>Supprimer l'ensemble des maillages</string>
</property> </property>
</action> </action>
<action name="m_a_abscisse_cote"> <action name="action_menu_abscisse_cote">
<property name="text"> <property name="text">
<string>Abscisse - Cote</string> <string>Abscisse - Cote</string>
</property> </property>
</action> </action>
<action name="m_a_XYZ"> <action name="action_menu_XYZ">
<property name="text"> <property name="text">
<string>XYZ</string> <string>XYZ</string>
</property> </property>
@ -678,17 +677,17 @@
<string>Cartographier le bief courant</string> <string>Cartographier le bief courant</string>
</property> </property>
</action> </action>
<action name="actionAide_de_PAMHYR"> <action name="action_menu_help_pamhyr">
<property name="text"> <property name="text">
<string>Aide de PAMHYR</string> <string>Aide de PAMHYR</string>
</property> </property>
</action> </action>
<action name="actionAide_de_MAGE"> <action name="action_menu_help_mage">
<property name="text"> <property name="text">
<string>Aide de MAGE</string> <string>Aide de MAGE</string>
</property> </property>
</action> </action>
<action name="actionA_propos"> <action name="action_menu_about">
<property name="text"> <property name="text">
<string>À propos</string> <string>À propos</string>
</property> </property>
@ -705,7 +704,7 @@
<string>Ouvrir une étude</string> <string>Ouvrir une étude</string>
</property> </property>
</action> </action>
<action name="actionenregistrer_etude_en_cours"> <action name="action_toolBar_save">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/save.png</normaloff>ressources/save.png</iconset> <normaloff>ressources/save.png</normaloff>ressources/save.png</iconset>
@ -720,7 +719,7 @@
<string/> <string/>
</property> </property>
</action> </action>
<action name="actionfermer_etude_en_cours"> <action name="action_toolBar_close">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/gtk-close.png</normaloff>ressources/gtk-close.png</iconset> <normaloff>ressources/gtk-close.png</normaloff>ressources/gtk-close.png</iconset>
@ -735,7 +734,7 @@
<string>Ctrl+F</string> <string>Ctrl+F</string>
</property> </property>
</action> </action>
<action name="actionquitter_application"> <action name="action_toolBar_quit">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/exit_bis.png</normaloff>ressources/exit_bis.png</iconset> <normaloff>ressources/exit_bis.png</normaloff>ressources/exit_bis.png</iconset>
@ -750,7 +749,7 @@
<string>Ctrl+Q</string> <string>Ctrl+Q</string>
</property> </property>
</action> </action>
<action name="actionlancer_solveur"> <action name="action_toolBar_run_solver">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/gtk-execute.png</normaloff>ressources/gtk-execute.png</iconset> <normaloff>ressources/gtk-execute.png</normaloff>ressources/gtk-execute.png</iconset>
@ -765,7 +764,7 @@
<string>Ctrl+X</string> <string>Ctrl+X</string>
</property> </property>
</action> </action>
<action name="actioninterrompt_simulation_en_cours"> <action name="action_toolBar_kill_solver">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -783,7 +782,7 @@
<string>Ctrl+C</string> <string>Ctrl+C</string>
</property> </property>
</action> </action>
<action name="actionlancer_mailleur_externe"> <action name="action_toolBar_run_mailleur">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/gnome-stock-insert-table.png</normaloff>ressources/gnome-stock-insert-table.png</iconset> <normaloff>ressources/gnome-stock-insert-table.png</normaloff>ressources/gnome-stock-insert-table.png</iconset>
@ -795,7 +794,7 @@
<string>Lancer le mailleur externe sur la géométrie du bief courant</string> <string>Lancer le mailleur externe sur la géométrie du bief courant</string>
</property> </property>
</action> </action>
<action name="actionafficher_listings_simulation"> <action name="action_toolBar_listing">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
@ -810,7 +809,7 @@
<string>Aficher les listings de la simulation courante</string> <string>Aficher les listings de la simulation courante</string>
</property> </property>
</action> </action>
<action name="actionReseau"> <action name="action_toolBar_network">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/reseau3_24.png</normaloff>ressources/reseau3_24.png</iconset> <normaloff>ressources/reseau3_24.png</normaloff>ressources/reseau3_24.png</iconset>
@ -822,7 +821,7 @@
<string>Ouvrir l'éditeur de la topologie du réseau</string> <string>Ouvrir l'éditeur de la topologie du réseau</string>
</property> </property>
</action> </action>
<action name="actionGeometrie"> <action name="action_toolBar_geometry">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/geometrie0.png</normaloff>ressources/geometrie0.png</iconset> <normaloff>ressources/geometrie0.png</normaloff>ressources/geometrie0.png</iconset>
@ -834,7 +833,7 @@
<string>Ouvrir l'éditeur de géométrie</string> <string>Ouvrir l'éditeur de géométrie</string>
</property> </property>
</action> </action>
<action name="actionMaillage"> <action name="action_toolBar_maillage">
<property name="icon"> <property name="icon">
<iconset> <iconset>
<normaloff>ressources/mailles-50.png</normaloff>ressources/mailles-50.png</iconset> <normaloff>ressources/mailles-50.png</normaloff>ressources/mailles-50.png</iconset>
@ -846,7 +845,7 @@
<string>Afficher le maillage</string> <string>Afficher le maillage</string>
</property> </property>
</action> </action>
<action name="actionCond_Limites"> <action name="action_toolBar_cond_limites">
<property name="text"> <property name="text">
<string>Cond. Limites</string> <string>Cond. Limites</string>
</property> </property>
@ -857,7 +856,7 @@
<font/> <font/>
</property> </property>
</action> </action>
<action name="actionApp_Lat_raux"> <action name="action_toolBar_App_Lateraux">
<property name="text"> <property name="text">
<string>App. Latéraux</string> <string>App. Latéraux</string>
</property> </property>
@ -865,7 +864,7 @@
<string>Ouvrir l'éditeur des Apports Latéraux Distribués</string> <string>Ouvrir l'éditeur des Apports Latéraux Distribués</string>
</property> </property>
</action> </action>
<action name="actionDeversements"> <action name="action_toolBar_Deversements">
<property name="text"> <property name="text">
<string>Déversements</string> <string>Déversements</string>
</property> </property>
@ -873,7 +872,7 @@
<string>Ouvrir l'éditeur des Déversements Latéraux</string> <string>Ouvrir l'éditeur des Déversements Latéraux</string>
</property> </property>
</action> </action>
<action name="actionTroncons"> <action name="action_toolBar_Troncons">
<property name="text"> <property name="text">
<string>Tronçons</string> <string>Tronçons</string>
</property> </property>
@ -881,7 +880,7 @@
<string>Ouvrir l'éditeur des tronçons pour les frottements et Apports Latéraux</string> <string>Ouvrir l'éditeur des tronçons pour les frottements et Apports Latéraux</string>
</property> </property>
</action> </action>
<action name="actionFrottements"> <action name="action_toolBar_Frottements">
<property name="text"> <property name="text">
<string>Frottements</string> <string>Frottements</string>
</property> </property>
@ -889,7 +888,7 @@
<string>Ouvrir l'éditeur des frottements au fond</string> <string>Ouvrir l'éditeur des frottements au fond</string>
</property> </property>
</action> </action>
<action name="actionOuvrages"> <action name="action_toolBar_Ouvrages">
<property name="text"> <property name="text">
<string>Ouvrages</string> <string>Ouvrages</string>
</property> </property>