Salome HOME
Copyright update 2022
[modules/gui.git] / src / Event / SALOME_EventFilter.cxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SALOME_EventFilter.h"
21 #include "SALOME_Event.h"
22
23 #include <QApplication>
24
25 SALOME_EventFilter* SALOME_EventFilter::myFilter = NULL;
26
27 /*!Constructor.*/
28 SALOME_EventFilter::SALOME_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 SALOME_EventFilter::~SALOME_EventFilter()
37 {
38   qApp->removeEventFilter( this );
39 }
40
41 /*!
42   Custom event filter
43 */
44 bool SALOME_EventFilter::eventFilter( QObject* o, QEvent* e )
45 {
46   if ( e->type() == SALOME_EVENT )
47   { 
48     SALOME_Event* aSE = (SALOME_Event*)((SALOME_CustomEvent*)e)->data();
49     processEvent(aSE);
50     ((SALOME_CustomEvent*)e)->setData( 0 );
51     return true;
52   }
53   return QObject::eventFilter( o, e );
54 }
55
56 /*!Process event.*/
57 void SALOME_EventFilter::processEvent( SALOME_Event* theEvent )
58 {
59   if(theEvent)
60     theEvent->ExecutePostedEvent();
61 }
62
63 /*!Create new instance of SALOME_EventFilter*/
64 void SALOME_EventFilter::Init()
65 {
66   if( myFilter==NULL )
67     myFilter = new SALOME_EventFilter();
68 }
69
70 /*!Destroy filter.*/
71 void SALOME_EventFilter::Destroy()
72 {
73   if( myFilter )
74   {
75     delete myFilter;
76     myFilter = NULL;
77   }
78 }