mailr11780 - in /branches/bieri_gui/gui_bieri: menu.py paths.py user_functions/pipes.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on December 13, 2010 - 16:47:
Author: bugman
Date: Mon Dec 13 16:47:54 2010
New Revision: 11780

URL: http://svn.gna.org/viewcvs/relax?rev=11780&view=rev
Log:
The data pipe user functions are now using the new pipe artwork.


Modified:
    branches/bieri_gui/gui_bieri/menu.py
    branches/bieri_gui/gui_bieri/paths.py
    branches/bieri_gui/gui_bieri/user_functions/pipes.py

Modified: branches/bieri_gui/gui_bieri/menu.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/menu.py?rev=11780&r1=11779&r2=11780&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/menu.py (original)
+++ branches/bieri_gui/gui_bieri/menu.py Mon Dec 13 16:47:54 2010
@@ -195,7 +195,7 @@
                 [id_base + 001, "&add", paths.icon_16x16.add, 
self.gui.user_functions.molecule.add],
                 [id_base + 002, "&delete", paths.icon_16x16.cancel, 
self.gui.user_functions.molecule.delete]
             ]],
-            [id_base + 100, "&pipe", paths.icon_16x16.load, None, [
+            [id_base + 100, "&pipe", paths.icon_16x16.pipe, None, [
                 [id_base + 101, "&create", paths.icon_16x16.add, 
self.gui.user_functions.pipes.create],
                 [id_base + 102, "&delete", paths.icon_16x16.cancel, 
self.gui.user_functions.pipes.delete]
             ]],

Modified: branches/bieri_gui/gui_bieri/paths.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/paths.py?rev=11780&r1=11779&r2=11780&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/paths.py (original)
+++ branches/bieri_gui/gui_bieri/paths.py Mon Dec 13 16:47:54 2010
@@ -53,6 +53,7 @@
         self.about_relaxgui =       IMAGE_PATH + 'relax_16x16.png'
         self.molecule =             path + 'molecule.png'
         self.molecule_unfolded =    path + 'molecule_unfolded.png'
+        self.pipe =                 path + 'pipe.png'
         self.residue =              path + 'residue.png'
         self.spin =                 path + 'spin.png'
 
@@ -89,6 +90,7 @@
         path = ICON_RELAX_PATH + '22x22' + sep
         self.molecule =             path + 'molecule.png'
         self.molecule_unfolded =    path + 'molecule_unfolded.png'
+        self.pipe =                 path + 'pipe.png'
         self.residue =              path + 'residue.png'
         self.spin =                 path + 'spin.png'
 
@@ -108,6 +110,9 @@
         self.forwards =     path + 'actions' + sep + 'go-next-view.png'
         self.remove =       path + 'actions' + sep + 'list-remove.png'
 
+        # relax icons.
+        path = ICON_RELAX_PATH + '48x48' + sep
+        self.pipe =                 path + 'pipe.png'
 
 
 # Set up all icon classes.

Modified: branches/bieri_gui/gui_bieri/user_functions/pipes.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/user_functions/pipes.py?rev=11780&r1=11779&r2=11780&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/user_functions/pipes.py (original)
+++ branches/bieri_gui/gui_bieri/user_functions/pipes.py Mon Dec 13 16:47:54 
2010
@@ -79,7 +79,7 @@
     size_x = 600
     size_y = 400
     frame_title = 'Add a data pipe'
-    image_path = WIZARD_IMAGE_PATH + 'molecule.png'
+    image_path = WIZARD_IMAGE_PATH + 'pipe.png'
     main_text = 'This dialog allows you to add new data pipes to the relax 
data store.'
     title = 'Addition of new data pipes'
 
@@ -117,7 +117,7 @@
     size_x = 600
     size_y = 400
     frame_title = 'Delete a data pipe'
-    image_path = WIZARD_IMAGE_PATH + 'molecule.png'
+    image_path = WIZARD_IMAGE_PATH + 'pipe.png'
     main_text = 'This dialog allows you to delete data pipes from the relax 
data store.'
     title = 'Data pipe deletion'
 




Related Messages


Powered by MHonArc, Updated Mon Dec 13 17:00:02 2010