mailr10995 - /branches/bieri_gui/gui_bieri/controller.py


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

Header


Content

Posted by michael . bieri on March 14, 2010 - 23:30:
Author: michaelbieri
Date: Sun Mar 14 23:30:14 2010
New Revision: 10995

URL: http://svn.gna.org/viewcvs/relax?rev=10995&view=rev
Log:
Updating the status  bar by the relaxGUI controller was removed.

This action is to prepare the introduction of the singleton created by Edward 
d'Auvergne for cross-communication between the different UIs and relax 
(https://mail.gna.org/public/relax-devel/2010-01/msg00094.html).

Modified:
    branches/bieri_gui/gui_bieri/controller.py

Modified: branches/bieri_gui/gui_bieri/controller.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/controller.py?rev=10995&r1=10994&r2=10995&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/controller.py (original)
+++ branches/bieri_gui/gui_bieri/controller.py Sun Mar 14 23:30:14 2010
@@ -145,22 +145,6 @@
         self.out=aWxTextCtrl
 
 
-    def limit_entries(self):
-        """ Function to overcome feedback problem of wx.CallAfter() 
command"""
-
-        # Maximum allowed number of lines in log window.
-        max_entries = 10000
-
-        # read number of lines in log window.
-        total_entries = self.out.log_panel.GetNumberOfLines()
-
-        # Shift entries backwards if maximum of line exeeded.
-        if total_entries > max_entries:
-            # Reset log window entries
-            new_entries = 'Refreshing log window...\n\n'
-            self.out.log_panel.SetValue(new_entries)
-
-
     def write(self,string):
         global progress
 
@@ -171,27 +155,6 @@
         wx.CallAfter(self.out.log_panel.AppendText, string)
         time.sleep(0.001)  # allow relaxGUI log panel to get refreshed
 
-        # split print out into list
-        a = str(string)
-        check = []
-        check = a.split()
-
-        # update progress bar
-        # Monte Carlo Simulation.
-        if 'Simulation' in string:
-            add = round(progress)
-            add_int = int(add)
-            wx.CallAfter(self.out.progress_bar.SetValue, add_int)
-            progress = ( (int(check[1]) * 100) / float(montecarlo + 6)) + 5
-            time.sleep(0.001)  # allow relaxGUI progressbar to get refreshed
-
-        # Other calculations.
-        if 'Progress:' in string:
-            progress = check[1]
-            progress = progress.replace('&', '')
-            wx.CallAfter(self.out.progress_bar.SetValue, int(progress))
-            time.sleep(0.001)  # allow relaxGUI progressbar to get refreshed
-
 
 class Thread_container:
     """Storage object for the calculation threads."""




Related Messages


Powered by MHonArc, Updated Mon Mar 15 00:00:03 2010