]> SALOME platform Git repositories - modules/gui.git/blob - src/SalomeApp/SalomeApp_EventFilter.cxx
Salome HOME
e21971eaf8a16c8cd4b641e851dee3465d19f7e6
[modules/gui.git] / src / SalomeApp / SalomeApp_EventFilter.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/
18 //
19
20 #include "SalomeApp_EventFilter.h"
21 #include <SALOME_Event.hxx>
22
23 #include <qapplication.h>
24
25 SalomeApp_EventFilter* SalomeApp_EventFilter::myFilter = NULL;
26
27 /*!Constructor.*/
28 SalomeApp_EventFilter::SalomeApp_EventFilter()
29 : QObject()
30 {
31   /* VSR 13/01/03 : installing global event filter for the application */
32   qApp->installEventFilter( this );
33 }
34
35 /*!Destructor.*/
36 SalomeApp_EventFilter::~SalomeApp_EventFilter()
37 {
38   qApp->removeEventFilter( this );
39 }
40
41 /*!
42   Custom event filter
43 */
44 bool SalomeApp_EventFilter::eventFilter( QObject* o, QEvent* e )
45 {
46   if ( e->type() == SALOME_EVENT )
47   { 
48     SALOME_Event* aSE = (SALOME_Event*)((QCustomEvent*)e)->data();
49     processEvent(aSE);
50     ((QCustomEvent*)e)->setData( 0 );
51     return true;
52   }
53   return QObject::eventFilter( o, e );
54 }
55
56 /*!Process event.*/
57 void SalomeApp_EventFilter::processEvent( SALOME_Event* theEvent )
58 {
59   if(theEvent){
60     theEvent->Execute();
61     // Signal the calling thread that the event has been processed
62     theEvent->processed();
63   }
64 }
65
66 /*!Create new instance of SalomeApp_EventFilter*/
67 void SalomeApp_EventFilter::Init()
68 {
69   if( myFilter==NULL )
70     myFilter = new SalomeApp_EventFilter();
71 }
72
73 /*!Destroy filter.*/
74 void SalomeApp_EventFilter::Destroy()
75 {
76   if( myFilter )
77   {
78     delete myFilter;
79     myFilter = NULL;
80   }
81 }