Salome HOME
Synchronize adm files
[modules/gui.git] / src / SUITApp / SUITApp_Application.cxx
1 // Copyright (C) 2007-2014  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 "SUITApp_Application.h"
24
25 #include <SUIT_Tools.h>
26 #include <SUIT_ExceptionHandler.h>
27
28 #include <Qtx.h>
29
30 #include <QDir>
31 #include <QTranslator>
32
33 #ifdef WIN32
34 #include <windows.h>
35 #include <winbase.h>
36 #else
37 #include <unistd.h>
38 #endif
39
40 /*!
41   Constructor
42 */
43 SUITApp_Application::SUITApp_Application( int& argc, char** argv, SUIT_ExceptionHandler* hand )
44 #ifdef ENABLE_TESTRECORDER
45   : TestApplication( argc, argv ),
46 #else
47 #ifndef WIN32
48   // san: Opening an X display and choosing a visual most suitable for 3D visualization
49   // in order to make SALOME viewers work with non-native X servers
50   : QApplication( (Display*)Qtx::getDisplay(), argc, argv, Qtx::getVisual() ),
51 #else
52   : QApplication( argc, argv ), 
53 #endif
54 #endif
55 myExceptHandler( hand )
56 {
57   QString path = SUIT_Tools::dir( argv[0] ) + QDir::separator() + "../../resources";
58   path = QDir::convertSeparators( QDir( path ).canonicalPath() );
59
60   QTranslator* strTbl = new QTranslator( 0 );
61   if ( strTbl->load( "SUITApp_msg_en.po", path  ) )
62     installTranslator( strTbl );
63   else
64     delete strTbl;
65 }
66
67 /*!
68   Constructor
69 */
70 SUITApp_Application::SUITApp_Application( int& argc, char** argv, Type type, SUIT_ExceptionHandler* hand )
71 #ifdef ENABLE_TESTRECORDER
72   : TestApplication( argc, argv ),
73 #else
74   : QApplication( argc, argv, type ),
75 #endif
76 myExceptHandler( hand )
77 {
78     QTranslator* strTbl = new QTranslator( 0 );
79     strTbl->load( "resources\\SUITApp_msg_en.po" );
80     installTranslator( strTbl );
81 }
82
83 /*!
84   Sends event to receiver
85   \return the value that is returned from the receiver's event handler
86   \param e - event
87   \param receiver - receiver
88 */
89 bool SUITApp_Application::notify( QObject* receiver, QEvent* e )
90 {
91   return myExceptHandler ? myExceptHandler->handle( receiver, e ) :
92 #ifdef ENABLE_TESTRECORDER
93                            TestApplication::notify( receiver, e );
94 #else
95                            QApplication::notify( receiver, e );
96 #endif
97 }
98
99 /*!
100   Changes exception handler
101   \param hand - new handler
102 */
103 void SUITApp_Application::setHandler( SUIT_ExceptionHandler* hand )
104 {
105         myExceptHandler = hand;
106 }
107
108 /*!
109   \return exception handler
110 */
111 SUIT_ExceptionHandler* SUITApp_Application::handler() const
112 {
113   return myExceptHandler;
114 }