Menu

SVN archive Commit Log


Commit Date  
[r10265] by bugman

The new module for the relaxGUI log window.

This is the file https://gna.org/support/download.php?file_id=7727 attached to task #6847
(https://gna.org/task/?6847) by Michael Bieri (https://gna.org/users/michaelbieri).

2010-01-20 10:23:27 Tree
[r10264] by bugman

Created feedback to relaxGUI Log Window during NOE calculation.

This corresponds to the calc_noe_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

added:

class RedirectText --> redirect the relax output to relaxGUI Log Window

# Number of Monte Carlo simulations
global montecarlo
montecarlo = int(global_setting[6])

--> set monte carlo value for updating progress bar in log window

# value for progress bar during monte carlo simulation
global progress
progress = 5.0

--> initial progress value before monte carlo simulation

# redirect relax output and errors to relaxGUI - log panel
redir=RedirectText(self)
sys.stdout=redir
sys.stderr=redir

redirecting system output and error to new created class that updates log
window

2010-01-20 08:22:58 Tree
[r10263] by bugman

Created feedback to relaxGUI Log Window during Rx calculation

This corresponds to the calc_rx_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

added:

class RedirectText --> redirect the relax output to relaxGUI Log Window

# Number of Monte Carlo simulations
global montecarlo
montecarlo = int(global_setting[6])

--> set monte carlo value for updating progress bar in log window

# value for progress bar during monte carlo simulation
global progress
progress = 5.0

--> initial progress value before monte carlo simulation

# redirect relax output and errors to relaxGUI - log panel
redir=RedirectText(self)
sys.stdout=redir
sys.stderr=redir

redirecting system output and error to new created class that updates log
window

2010-01-20 08:21:22 Tree
[r10262] by bugman

Replaced tabulators to 4 space characters in calc_model_free.py.

This corresponds to the removed_tab_in_modelfree_patch file attached to https://gna.org/task/?6847
by Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

This patch contained far more changes than just the tab fixes, but only that part is being committed
here. The gui_bieri.relax_gui changes appear to be in the other patches anyway.

2010-01-20 08:18:38 Tree
[r10261] by bugman

Replaced 'form xxxx import *' with 'from xxx import yyy, aaa....' in relax_gui.py.

This corresponds to the import_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

2010-01-20 08:00:05 Tree
[r10260] by bugman

The about relaxGUI panel does not create its own wx application.

removed in about.py:
- app = wx.PySimpleApp(0)
- wx.InitAllImageHandlers()
- start = MyFrame(None, -1, "")
- app.SetTopWindow(start)
- start.Show()
- app.MainLoop()

changed:
xw.Frame to wx.Dialog in about.py

moved in _init_.py (main folder):

+ # start wx Application
+ relaxGUI = wx.PySimpleApp(0)
+ wx.InitAllImageHandlers()

--> to start one wx application for about panel and main relaxGUI window

2010-01-20 07:56:41 Tree
[r10259] by bugman

Clean up of the menubar code.

The SetMenuBar() call has been shifted out of the menu items to the top. The GUI object have been
simplified (shorter names) and are no longer placed in self.

2010-01-19 20:06:42 Tree
[r10258] by bugman

Modified the package docstring as it does not need to be set using __doc__ = ...

2010-01-19 18:58:05 Tree
[r10257] by bugman

Changed the icons for the Molecule menu entries.

This is just to improve the looks.

2010-01-19 18:48:10 Tree
[r10256] by bugman

Modified all the other menu sub entries to include icons using the build_menu_sub_item() method.

All the oxygen icons required, as well as a 16x16 relax icon have been added to the repository.

2010-01-19 18:35:50 Tree
Older >
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.