mailr19572 - /trunk/gui/components/relax_data.py


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

Header


Content

Posted by edward on April 21, 2013 - 23:45:
Author: bugman
Date: Sun Apr 21 23:45:00 2013
New Revision: 19572

URL: http://svn.gna.org/viewcvs/relax?rev=19572&view=rev
Log:
Formatting improvements for the relaxation data list GUI element.

The data type column entries are now descriptive and use subscript.


Modified:
    trunk/gui/components/relax_data.py

Modified: trunk/gui/components/relax_data.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/gui/components/relax_data.py?rev=19572&r1=19571&r2=19572&view=diff
==============================================================================
--- trunk/gui/components/relax_data.py (original)
+++ trunk/gui/components/relax_data.py Sun Apr 21 23:45:00 2013
@@ -301,6 +301,13 @@
     def update_data(self):
         """Method called from self.build_element_safe() to update the list 
data."""
 
+        # Translation table for the Rx data types.
+        table = {
+            "NOE": "Steady-state NOE",
+            "R1": u"R\u2081 longitudinal relaxation",
+            "R2": u"R\u2082 transverse relaxation"
+        }
+
         # Expand the number of rows to match the number of relaxation IDs, 
and add the IDs.
         n = 0
         if hasattr(cdp, 'ri_ids'):
@@ -314,7 +321,7 @@
                 self.element.InsertStringItem(i, str_to_gui(id))
 
                 # Set the data types.
-                self.element.SetStringItem(i, 1, str_to_gui(cdp.ri_type[id]))
+                self.element.SetStringItem(i, 1, 
str_to_gui(table[cdp.ri_type[id]]))
 
                 # Set the frequencies.
                 self.element.SetStringItem(i, 2, float_to_gui(cdp.frq[id]))




Related Messages


Powered by MHonArc, Updated Mon Apr 22 00:00:01 2013