mailr13830 - /branches/gui_testing/gui/misc.py


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

Header


Content

Posted by edward on July 22, 2011 - 13:24:
Author: bugman
Date: Fri Jul 22 13:24:45 2011
New Revision: 13830

URL: http://svn.gna.org/viewcvs/relax?rev=13830&view=rev
Log:
The add_border() coloured debugging is now specified by an argument.


Modified:
    branches/gui_testing/gui/misc.py

Modified: branches/gui_testing/gui/misc.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/misc.py?rev=13830&r1=13829&r2=13830&view=diff
==============================================================================
--- branches/gui_testing/gui/misc.py (original)
+++ branches/gui_testing/gui/misc.py Fri Jul 22 13:24:45 2011
@@ -31,13 +31,12 @@
 
 # relax module imports.
 from relax_errors import AllRelaxErrors
-from status import Status; status = Status()
 
 # relax GUI module imports.
 from gui.message import error_message
 
 
-def add_border(box, border=0, packing=wx.VERTICAL):
+def add_border(box, border=0, packing=wx.VERTICAL, debug=False):
     """Create the main part of the frame, returning the central sizer.
 
     @param box:         The box sizer element to pack the borders into.
@@ -46,6 +45,8 @@
     @type border:       int
     @keyword packing:   Specify if the central sizer should be vertically or 
horizontally packed.
     @type packing:      wx.VERTICAL or wx.HORIZONTAL
+    @keyword debug:     A flag which if true will make colourful borders.
+    @type debug:        bool
     @return:            The central sizer.
     @rtype:             wx.BoxSizer instance
     """
@@ -62,7 +63,7 @@
     sizer_cent = wx.BoxSizer(packing)
 
     # Left and right borders (debugging).
-    if status.debug:
+    if debug:
         # Left coloured panel.
         panel = wx.Panel(box.GetContainingWindow(), -1)
         panel.SetSize((border, border))
@@ -85,7 +86,7 @@
         box.AddSpacer(border)
 
     # Top and bottom borders (debugging).
-    if status.debug:
+    if debug:
         # Top coloured panel.
         panel = wx.Panel(box.GetContainingWindow(), -1)
         panel.SetSize((border, border))




Related Messages


Powered by MHonArc, Updated Fri Jul 22 13:40:03 2011