Salome HOME
b2b565a8dd444b2ba64bde54081de59d8e30ac7c
[modules/gui.git] / src / SUIT / SUIT_ExceptionHandler.cxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "SUIT_ExceptionHandler.h"
24
25 #include "SUIT_MessageBox.h"
26
27 #include <QApplication>
28
29 /*!\class SUIT_ExceptionHandler
30  * Show exception message on error handler.
31  */
32
33 /*!
34   Checks: is internal handle on object \a o?
35 */
36 bool SUIT_ExceptionHandler::handle( QObject* o, QEvent* e )
37 {
38   return internalHandle( o, e );
39 }
40
41 /*!
42   Checks: is internal handle on object \a o?
43 */
44 bool SUIT_ExceptionHandler::internalHandle( QObject* o, QEvent* e )
45 {
46   return qApp ? qApp->QApplication::notify( o, e ) : false;
47 }
48
49 /*!
50   Show error message \a mgs, if application is not null.
51 */
52 void SUIT_ExceptionHandler::showMessage( const QString& title, const QString& msg )
53 {
54   if ( !qApp )
55     return;
56   
57   while ( QApplication::overrideCursor() )
58     QApplication::restoreOverrideCursor();
59
60   cleanUp();
61
62   SUIT_MessageBox::critical( 0, title, msg );
63 }
64
65 CleanUpFuncList SUIT_ExceptionHandler::myCleanUpFunctions;
66
67 void SUIT_ExceptionHandler::addCleanUpRoutine(CleanUpFunction p)
68 {
69   myCleanUpFunctions.append(p);
70 }
71
72 void SUIT_ExceptionHandler::removeCleanUpRoutine(CleanUpFunction p)
73 {
74   myCleanUpFunctions.removeAll(p);
75 }
76
77 void SUIT_ExceptionHandler::cleanUp()
78 {
79   foreach( QtCleanUpFunction f, myCleanUpFunctions )
80   {
81     f();
82   }
83 }