Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / SUITApp / SUITApp_Application.cxx
1 //  Copyright (C) 2007-2008  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.
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 #include "SUITApp_Application.h"
23
24 #include <SUIT_Tools.h>
25 #include <SUIT_ExceptionHandler.h>
26
27 #include <QDir>
28 #include <QTranslator>
29
30 #ifdef WIN32
31 #include <windows.h>
32 #include <winbase.h>
33 #else
34 #include <unistd.h>
35 #endif
36
37 /*!
38   Constructor
39 */
40 SUITApp_Application::SUITApp_Application( int& argc, char** argv, SUIT_ExceptionHandler* hand )
41 #ifdef ENABLE_TESTRECORDER
42   : TestApplication( argc, argv ),
43 #else
44   : QApplication( argc, argv ),
45 #endif
46 myExceptHandler( hand )
47 {
48   QString path = SUIT_Tools::dir( argv[0] ) + QDir::separator() + "../../resources";
49   path = QDir::convertSeparators( QDir( path ).canonicalPath() );
50
51   QTranslator* strTbl = new QTranslator( 0 );
52   if ( strTbl->load( "SUITApp_msg_en.po", path  ) )
53     installTranslator( strTbl );
54   else
55     delete strTbl;
56 }
57
58 /*!
59   Constructor
60 */
61 SUITApp_Application::SUITApp_Application( int& argc, char** argv, Type type, SUIT_ExceptionHandler* hand )
62 #ifdef ENABLE_TESTRECORDER
63   : TestApplication( argc, argv ),
64 #else
65   : QApplication( argc, argv, type ),
66 #endif
67 myExceptHandler( hand )
68 {
69     QTranslator* strTbl = new QTranslator( 0 );
70     strTbl->load( "resources\\SUITApp_msg_en.po" );
71     installTranslator( strTbl );
72 }
73
74 /*!
75   Sends event to receiver
76   \return the value that is returned from the receiver's event handler
77   \param e - event
78   \param receiver - receiver
79 */
80 bool SUITApp_Application::notify( QObject* receiver, QEvent* e )
81 {
82   return myExceptHandler ? myExceptHandler->handle( receiver, e ) :
83 #ifdef ENABLE_TESTRECORDER
84                            TestApplication::notify( receiver, e );
85 #else
86                            QApplication::notify( receiver, e );
87 #endif
88 }
89
90 /*!
91   Changes exception handler
92   \param hand - new handler
93 */
94 void SUITApp_Application::setHandler( SUIT_ExceptionHandler* hand )
95 {
96         myExceptHandler = hand;
97 }
98
99 /*!
100   \return exception handler
101 */
102 SUIT_ExceptionHandler* SUITApp_Application::handler() const
103 {
104   return myExceptHandler;
105 }