mailr19522 - in /branches/relax_disp: ./ gui/uf_objects.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 - 11:56:
Author: bugman
Date: Sun Apr 21 11:56:30 2013
New Revision: 19522

URL: http://svn.gna.org/viewcvs/relax?rev=19522&view=rev
Log:
Merged revisions 19521 via svnmerge from 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/trunk

........
  r19521 | bugman | 2013-04-21 11:55:58 +0200 (Sun, 21 Apr 2013) | 6 lines
  
  The execution of the user function GUI pages can now be delayed.
  
  The create_page() execute flag has been added to disable execution.  This 
can be later forced with
  the new on_execute() force_execute flag.
........

Modified:
    branches/relax_disp/   (props changed)
    branches/relax_disp/gui/uf_objects.py

Propchange: branches/relax_disp/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Sun Apr 21 11:56:30 2013
@@ -1,1 +1,1 @@
-/trunk:1-19519
+/trunk:1-19521

Modified: branches/relax_disp/gui/uf_objects.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/relax_disp/gui/uf_objects.py?rev=19522&r1=19521&r2=19522&view=diff
==============================================================================
--- branches/relax_disp/gui/uf_objects.py (original)
+++ branches/relax_disp/gui/uf_objects.py Sun Apr 21 11:56:30 2013
@@ -253,13 +253,15 @@
         self._uf_id = wx.NewId()
 
 
-    def create_page(self, wizard=None, sync=None):
+    def create_page(self, wizard=None, sync=None, execute=True):
         """Create the user function wizard page GUI object.
 
         @keyword wizard:    The parent wizard.
         @type wizard:       Wiz_window instance
         @keyword sync:      A flag which if True will call user functions 
via interpreter.apply and if False via interpreter.queue.
         @type sync:         None or bool
+        @keyword execute:   A flag which if True will prevent the user 
function from being executed when clicking on 'Next', 'Ok', or 'Apply'.  This 
can be useful for delaying the execution of the user function.
+        @type execute:      bool
         @return:            The user function page object.
         @rtype:             Uf_page instance
         """
@@ -269,7 +271,7 @@
             self._sync = sync
 
         # Initialise and return the page.
-        return Uf_page(self._name, parent=wizard, 
height_desc=self._height_desc, sync=self._sync)
+        return Uf_page(self._name, parent=wizard, 
height_desc=self._height_desc, sync=self._sync, execute=execute)
 
 
     def create_wizard(self, parent=None):
@@ -307,7 +309,7 @@
 class Uf_page(Wiz_page):
     """User function specific pages for the wizards."""
 
-    def __init__(self, name, parent=None, height_desc=220, sync=False):
+    def __init__(self, name, parent=None, height_desc=220, sync=False, 
execute=True):
         """Set up the window.
 
         @param name:            The name of the user function.
@@ -318,11 +320,14 @@
         @type height_desc:      int or None
         @keyword sync:          A flag which if True will call user 
functions via interpreter.apply and if False via interpreter.queue.
         @type sync:             bool
+        @keyword execute:       A flag which if True will prevent the user 
function from being executed when clicking on 'Next', 'Ok', or 'Apply'.  This 
can be useful for delaying the execution of the user function.
+        @type execute:          bool
         """
 
         # Store the args.
         self.name = name
         self.sync = sync
+        self.execute_flag = execute
 
         # Storage of the user function argument elements.
         self.uf_args = {}
@@ -820,8 +825,16 @@
         return self.update_args()
 
 
-    def on_execute(self):
-        """Execute the user function."""
+    def on_execute(self, force_exec=False):
+        """Execute the user function.
+
+        @keyword force_exec:    A flag which if True will cause the 
execution flag to be ignored and the user function to be executed.
+        @type force_exec:       bool
+        """
+
+        # Don't execute.
+        if not force_exec and not self.execute_flag:
+            return
 
         # Get the argument values.
         kargs = {}




Related Messages


Powered by MHonArc, Updated Sun Apr 21 12:00:02 2013