mailr16423 - /branches/uf_redesign/gui/analyses/auto_model_free.py


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

Header


Content

Posted by edward on May 23, 2012 - 20:25:
Author: bugman
Date: Wed May 23 20:25:49 2012
New Revision: 16423

URL: http://svn.gna.org/viewcvs/relax?rev=16423&view=rev
Log:
All the model-free GUI auto-analysis method 'event' args have been converted 
to keyword args.

This is for better remote control, for example by the GUI tests.


Modified:
    branches/uf_redesign/gui/analyses/auto_model_free.py

Modified: branches/uf_redesign/gui/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/gui/analyses/auto_model_free.py?rev=16423&r1=16422&r2=16423&view=diff
==============================================================================
--- branches/uf_redesign/gui/analyses/auto_model_free.py (original)
+++ branches/uf_redesign/gui/analyses/auto_model_free.py Wed May 23 20:25:49 
2012
@@ -210,10 +210,10 @@
         super(Auto_model_free, self).__init__(parent, id=id, pos=pos, 
size=size, style=style, name=name)
 
 
-    def _about(self, event):
+    def _about(self, event=None):
         """The about window.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -530,10 +530,10 @@
         self.relax_data.delete()
 
 
-    def execute(self, event):
+    def execute(self, event=None):
         """Set up, execute, and process the automatic model-free protocol.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -572,10 +572,10 @@
         event.Skip()
 
 
-    def load_unit_vectors(self, event):
+    def load_unit_vectors(self, event=None):
         """Create the wizard for structure.read_pdb and structure.vectors.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -601,10 +601,10 @@
         self.vect_wizard.run()
 
 
-    def mode_dialog(self, event):
+    def mode_dialog(self, event=None):
         """The calculation mode selection.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -638,10 +638,10 @@
             self.relax_data.observer_register(remove=True)
 
 
-    def results_directory(self, event):
+    def results_directory(self, event=None):
         """The results directory selection.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -711,10 +711,10 @@
             self.max_iter.SetValue(int(self.data.max_iter))
 
 
-    def value_set_csa(self, event):
+    def value_set_csa(self, event=None):
         """Set the CSA via the value.set uf.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -725,10 +725,10 @@
         uf_store['value.set'](val=val, param='csa')
 
 
-    def value_set_heteronuc_type(self, event):
+    def value_set_heteronuc_type(self, event=None):
         """Set the type of heteronucleus via the value.set uf.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -739,10 +739,10 @@
         uf_store['value.set'](val=val, param='heteronuc_type')
 
 
-    def value_set_proton_type(self, event):
+    def value_set_proton_type(self, event=None):
         """Set the type of proton via the value.set uf.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -753,10 +753,10 @@
         uf_store['value.set'](val=val, param='proton_type')
 
 
-    def value_set_r(self, event):
+    def value_set_r(self, event=None):
         """Set the bond length via the value.set uf.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -908,10 +908,10 @@
         self.field.SetValue(list_to_gui(self.GetValue()))
 
 
-    def modify(self, event):
+    def modify(self, event=None):
         """Modify the model-free model selection.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1229,10 +1229,10 @@
         sizer.Add(sub_sizer, 1, wx.ALL|wx.EXPAND, 0)
 
 
-    def select_ellipsoid(self, event):
+    def select_ellipsoid(self, event=None):
         """The ellipsoid global model has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1243,10 +1243,10 @@
         self.Close()
 
 
-    def select_final(self, event):
+    def select_final(self, event=None):
         """The final stage of the protocol has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1257,10 +1257,10 @@
         self.Close()
 
 
-    def select_full_analysis(self, event):
+    def select_full_analysis(self, event=None):
         """The full analysis has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1271,10 +1271,10 @@
         self.Close()
 
 
-    def select_local_tm(self, event):
+    def select_local_tm(self, event=None):
         """The local_tm global model has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1285,10 +1285,10 @@
         self.Close()
 
 
-    def select_prolate(self, event):
+    def select_prolate(self, event=None):
         """The prolate global model has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1299,10 +1299,10 @@
         self.Close()
 
 
-    def select_oblate(self, event):
+    def select_oblate(self, event=None):
         """The oblate global model has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 
@@ -1313,10 +1313,10 @@
         self.Close()
 
 
-    def select_sphere(self, event):
+    def select_sphere(self, event=None):
         """The sphere global model has been selected.
 
-        @param event:   The wx event.
+        @keyword event: The wx event.
         @type event:    wx event
         """
 




Related Messages


Powered by MHonArc, Updated Wed May 23 20:40:02 2012