]> SALOME platform Git repositories - modules/gui.git/blob - src/SalomeApp/SalomeApp_EventFilter.cxx
Salome HOME
0db6f5fe3ca858c3ccea053290881a93648eee81
[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 bool SalomeApp_EventFilter::eventFilter( QObject* o, QEvent* e )
42 {
43   if ( e->type() == SALOME_EVENT )
44   { 
45     SALOME_Event* aSE = (SALOME_Event*)((QCustomEvent*)e)->data();
46     processEvent(aSE);
47     ((QCustomEvent*)e)->setData( 0 );
48     return true;
49   }
50   return QObject::eventFilter( o, e );
51 }
52
53 /*!Process event.*/
54 void SalomeApp_EventFilter::processEvent( SALOME_Event* theEvent )
55 {
56   if(theEvent){
57     theEvent->Execute();
58     // Signal the calling thread that the event has been processed
59     theEvent->processed();
60   }
61 }
62
63 /*!Create new instance of SalomeApp_EventFilter*/
64 void SalomeApp_EventFilter::Init()
65 {
66   if( myFilter==NULL )
67     myFilter = new SalomeApp_EventFilter();
68 }
69
70 /*!Destroy filter.*/
71 void SalomeApp_EventFilter::Destroy()
72 {
73   if( myFilter )
74   {
75     delete myFilter;
76     myFilter = NULL;
77   }
78 }