mailr16201 - /branches/uf_redesign/user_functions/objects.py


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

Header


Content

Posted by edward on May 10, 2012 - 19:58:
Author: bugman
Date: Thu May 10 19:58:42 2012
New Revision: 16201

URL: http://svn.gna.org/viewcvs/relax?rev=16201&view=rev
Log:
The Uf_container now has the 'gui_sync' variable for switching between 
asynchronous and synchronous operation.


Modified:
    branches/uf_redesign/user_functions/objects.py

Modified: branches/uf_redesign/user_functions/objects.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/user_functions/objects.py?rev=16201&r1=16200&r2=16201&view=diff
==============================================================================
--- branches/uf_redesign/user_functions/objects.py (original)
+++ branches/uf_redesign/user_functions/objects.py Thu May 10 19:58:42 2012
@@ -109,6 +109,8 @@
     @type wizard_height_desc:   int
     @ivar wizard_apply_button:  A flag specifying if the apply button should 
be shown or not.  This defaults to True.
     @type wizard_apply_button:  bool
+    @ivar gui_sync:             A GUI flag which if left on the default of 
False will cause user functions to be called in asynchronous mode.  If 
changed to True, then synchronous operation of the user functions will occur.
+    @type gui_sync:             bool
     """
 
     # The list of modifiable objects (anything else will be rejected to 
prevent coding errors).
@@ -127,6 +129,7 @@
             'wizard_image',
             'wizard_height_desc',
             'wizard_apply_button'
+            'gui_sync',
     ]
 
 
@@ -148,6 +151,7 @@
         self.wizard_image = IMAGE_PATH + "relax.gif"
         self.wizard_height_desc = 220
         self.wizard_apply_button = True
+        self.gui_sync = False
 
 
     def __setattr__(self, name, value):




Related Messages


Powered by MHonArc, Updated Thu May 10 20:20:09 2012