mailr13617 - /branches/gui_testing/gui/analyses/auto_noe.py


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

Header


Content

Posted by edward on July 14, 2011 - 14:36:
Author: bugman
Date: Thu Jul 14 14:36:22 2011
New Revision: 13617

URL: http://svn.gna.org/viewcvs/relax?rev=13617&view=rev
Log:
Created a page for setting the error type in the NOE peak intensity reading 
wizard.


Modified:
    branches/gui_testing/gui/analyses/auto_noe.py

Modified: branches/gui_testing/gui/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_noe.py?rev=13617&r1=13616&r2=13617&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_noe.py (original)
+++ branches/gui_testing/gui/analyses/auto_noe.py Thu Jul 14 14:36:22 2011
@@ -51,6 +51,7 @@
 from gui.misc import add_border, gui_to_str, protected_exec, str_to_gui
 from gui import paths
 from gui.settings import load_sequence
+from gui.user_functions.base import UF_page
 from gui.user_functions.spectrum import Baseplane_rmsd_page, 
Integration_points_page, Read_intensities_page, Replicated_page
 from gui.wizard import Wiz_window
 
@@ -334,6 +335,10 @@
         page = Read_intensities_page(wizard, self.gui)
         page_indices['read'] = wizard.add_page(page)
 
+        # Error type selection page.
+        page = Error_type_page(wizard, self.gui)
+        page_indices['type'] = wizard.add_page(page, apply_button=False)
+
         # The spectrum.replicated page.
         page = Replicated_page(wizard, self.gui)
         page_indices['replicated'] = wizard.add_page(page)
@@ -395,6 +400,88 @@
         else:
             self.field_results_dir.SetValue(str_to_gui(self.data.save_dir))
 
+
+
+class Error_type_page(UF_page):
+    """The NOE peak intensity reading wizard page for specifying the type of 
error to be used."""
+
+    # Class variables.
+    image_path = paths.WIZARD_IMAGE_PATH + 'spectrum' + sep + 
'spectrum_200.png'
+    uf_path = ['spectrum', 'error_analysis']
+    desc_height = 500
+
+    def add_contents(self, sizer):
+        """Add the specific GUI elements.
+
+        @param sizer:   A sizer object.
+        @type sizer:    wx.Sizer instance
+        """
+
+        # Intro text.
+        msg = "Please specify from where the peak intensity errors will be 
obtained.  The execution of the spectrum.error_analysis user function, as 
described above, will be postponed until after clicking on the 'Execute 
relax' button at the end of the automatic NOE analysis page."
+        text = wx.StaticText(self, -1, msg)
+        text.Wrap(self._main_size)
+        sizer.Add(text, 0, wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0)
+
+        # Spacing.
+        sizer.AddStretchSpacer()
+
+        # A box sizer for placing the box sizer in.
+        sizer2 = wx.BoxSizer(wx.HORIZONTAL)
+        sizer.Add(sizer2, 1, wx.ALL|wx.EXPAND, 0)
+
+        # Bottom spacing.
+        sizer.AddStretchSpacer()
+
+        # A bit of indentation.
+        sizer2.AddStretchSpacer()
+
+        # A vertical sizer for the radio buttons.
+        sizer_radio = wx.BoxSizer(wx.VERTICAL)
+        sizer2.Add(sizer_radio, 1, wx.ALL|wx.EXPAND, 0)
+
+        # The RMSD radio button.
+        self.radio_rmsd = wx.RadioButton(self, -1, "Baseplane RMSD.")
+        sizer_radio.Add(self.radio_rmsd, 0, 
wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0)
+
+        # Spacing.
+        sizer_radio.AddSpacer(10)
+
+        # The replicated spectra radio button.
+        self.radio_repl = wx.RadioButton(self, -1, "Replicated spectra.")
+        sizer_radio.Add(self.radio_repl, 0, 
wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0)
+
+        # Bind the buttons.
+        self.Bind(wx.EVT_RADIOBUTTON, self._on_select, self.radio_rmsd)
+        self.Bind(wx.EVT_RADIOBUTTON, self._on_select, self.radio_repl)
+
+        # Right side spacing.
+        sizer2.AddStretchSpacer(3)
+
+        # Bottom spacing.
+        sizer.AddStretchSpacer()
+
+        # Set the default selection.
+        self.selection = 'rmsd'
+
+
+    def _on_select(self, event):
+        """Handle the radio button switching.
+
+        @param event:   The wx event.
+        @type event:    wx event
+        """
+
+        # The button.
+        button = event.GetEventObject()
+
+        # RMSD.
+        if button == self.radio_rmsd:
+            self.selection = 'rmsd'
+        elif button == self.radio_repl:
+            self.selection = 'repl'
+
+        print self.selection
 
 
 class Execute_noe(Execute):




Related Messages


Powered by MHonArc, Updated Thu Jul 14 15:20:02 2011