mailr13539 - /branches/gui_testing/gui/errors.py


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

Header


Content

Posted by edward on July 08, 2011 - 15:17:
Author: bugman
Date: Fri Jul  8 15:17:06 2011
New Revision: 13539

URL: http://svn.gna.org/viewcvs/relax?rev=13539&view=rev
Log:
Created a new module and function gui_raise() for handling errors in the GUI.

This function shows the relax error message in a dialog box, and throws the 
error to stop execution.


Added:
    branches/gui_testing/gui/errors.py

Added: branches/gui_testing/gui/errors.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/errors.py?rev=13539&view=auto
==============================================================================
--- branches/gui_testing/gui/errors.py (added)
+++ branches/gui_testing/gui/errors.py Fri Jul  8 15:17:06 2011
@@ -1,0 +1,43 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2011 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
+
+# Module docstring.
+"""Module for handling errors in the GUI."""
+
+# Python module imports.
+import wx
+
+
+def gui_raise(relax_error):
+    """Handle errors in the GUI to be reported to the user.
+
+    @param relax_error:     The error object.
+    @type relax_error:      RelaxError instance
+    @raises:                The RelaxError.
+    """
+
+    # Show a dialog explaining the error.
+    msg = "RelaxError:  %s" % relax_error.text
+    wx.MessageBox(msg, caption='', style=wx.OK|wx.ICON_ERROR)
+
+    # Throw the error to terminate execution.
+    raise relax_error




Related Messages


Powered by MHonArc, Updated Fri Jul 08 15:40:03 2011