From: André Ribes Date: Thu, 24 Feb 2011 16:35:47 +0000 (+0100) Subject: Ajout des icones X-Git-Tag: V6_4_0rc3~74 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8384ff73b5a5b76b1cef51fb246f9ee1b3d576a5;p=modules%2Fadao.git Ajout des icones --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 978012f..e6b9f33 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -14,6 +14,7 @@ install-data-local: ${mkinstalldirs} $(DESTDIR)$(docdir) cp -R $(BUILDDIR)/html/* $(DESTDIR)$(docdir) cp $(SRCDIR)/resources/*.png $(salomeresdir) + cp $(SRCDIR)/images/eficas_*.png $(salomeresdir) uninstall-local: chmod -R +w $(DESTDIR)$(docdir) diff --git a/doc/images/eficas_close.png b/doc/images/eficas_close.png new file mode 100644 index 0000000..4364ce7 Binary files /dev/null and b/doc/images/eficas_close.png differ diff --git a/doc/images/eficas_new.png b/doc/images/eficas_new.png index f0a4f42..68555d2 100644 Binary files a/doc/images/eficas_new.png and b/doc/images/eficas_new.png differ diff --git a/doc/images/eficas_open.png b/doc/images/eficas_open.png new file mode 100644 index 0000000..503a004 Binary files /dev/null and b/doc/images/eficas_open.png differ diff --git a/doc/images/eficas_save.png b/doc/images/eficas_save.png index 8d09d2a..dd00abd 100644 Binary files a/doc/images/eficas_save.png and b/doc/images/eficas_save.png differ diff --git a/doc/images/eficas_saveas.png b/doc/images/eficas_saveas.png new file mode 100644 index 0000000..61a080e Binary files /dev/null and b/doc/images/eficas_saveas.png differ diff --git a/src/daSalome/daGUI/daGuiImpl/adaoGuiManager.py b/src/daSalome/daGUI/daGuiImpl/adaoGuiManager.py index 2fb51f5..4b1ce67 100644 --- a/src/daSalome/daGUI/daGuiImpl/adaoGuiManager.py +++ b/src/daSalome/daGUI/daGuiImpl/adaoGuiManager.py @@ -350,19 +350,19 @@ class AdaoGuiUiComponentBuilder: # create toolbar tid = sgPyQt.createTool( "ADAO" ) - a = sgPyQt.createAction( UI_ELT_IDS.NEW_ADAOCASE_ID, "New case", "New case", "Create a new adao case", "" ) + a = sgPyQt.createAction( UI_ELT_IDS.NEW_ADAOCASE_ID, "New case", "New case", "Create a new adao case", "eficas_new.png" ) sgPyQt.createMenu(a, mid) sgPyQt.createTool(a, tid) - a = sgPyQt.createAction( UI_ELT_IDS.OPEN_ADAOCASE_ID, "Open case", "Open case", "Open an adao case", "" ) + a = sgPyQt.createAction( UI_ELT_IDS.OPEN_ADAOCASE_ID, "Open case", "Open case", "Open an adao case", "eficas_open.png" ) sgPyQt.createMenu(a, mid) sgPyQt.createTool(a, tid) - a = sgPyQt.createAction( UI_ELT_IDS.SAVE_ADAOCASE_ID, "Save case", "Save case", "Save an adao case", "" ) + a = sgPyQt.createAction( UI_ELT_IDS.SAVE_ADAOCASE_ID, "Save case", "Save case", "Save an adao case", "eficas_save.png" ) sgPyQt.createMenu(a, mid) sgPyQt.createTool(a, tid) - a = sgPyQt.createAction( UI_ELT_IDS.SAVE_AS_ADAOCASE_ID, "Save as case", "Save as case", "Save an adao case as", "" ) + a = sgPyQt.createAction( UI_ELT_IDS.SAVE_AS_ADAOCASE_ID, "Save as case", "Save as case", "Save an adao case as", "eficas_saveas.png" ) sgPyQt.createMenu(a, mid) sgPyQt.createTool(a, tid) - a = sgPyQt.createAction( UI_ELT_IDS.CLOSE_ADAOCASE_ID, "Close case", "Close case", "Close an adao case", "" ) + a = sgPyQt.createAction( UI_ELT_IDS.CLOSE_ADAOCASE_ID, "Close case", "Close case", "Close an adao case", "eficas_close.png" ) sgPyQt.createMenu(a, mid) sgPyQt.createTool(a, tid)