Salome HOME
a92e6633dd1d7706e02b990e808123047bd986c0
[modules/gui.git] / src / LightApp / LightApp_EventFilter.cxx
1 // Copyright (C) 2007-2022  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 "LightApp_EventFilter.h"
24
25 #include <SUIT_Desktop.h>
26
27 #include <QApplication>
28
29 #include <SALOME_Event.h>
30
31 LightApp_EventFilter* LightApp_EventFilter::myFilter = NULL;
32
33 /*!Constructor.*/
34 LightApp_EventFilter::LightApp_EventFilter()
35 : QObject()
36 {
37   qApp->installEventFilter( this );
38 }
39
40 /*!Destructor.*/
41 LightApp_EventFilter::~LightApp_EventFilter()
42 {
43   qApp->removeEventFilter( this );
44 }
45
46 /*!
47   Custom event filter
48 */
49 bool LightApp_EventFilter::eventFilter( QObject* o, QEvent* e )
50 {
51   if ( e->type() == QEvent::WindowActivate && o->inherits("QDialog") )
52     {
53       QWidget* parent = ((QWidget*)o)->parentWidget();
54       
55       SUIT_Desktop* aDesktop = 0;
56       
57       while( parent )
58         {
59           aDesktop = dynamic_cast<SUIT_Desktop*>(parent);
60           if ( aDesktop )
61             break;
62           parent = parent->parentWidget();
63         }
64       
65       if ( aDesktop )
66         aDesktop->emitActivated();
67     }
68
69   else if(e->type() == SALOME_EVENT)
70     {
71       SALOME_Event* aSE = (SALOME_Event*)((SALOME_CustomEvent*)e)->data();
72       processEvent(aSE);
73       ((SALOME_CustomEvent*)e)->setData( 0 );
74       return true;
75     }
76   
77   return QObject::eventFilter( o, e );
78 }
79
80 /*!Process event.*/
81 void LightApp_EventFilter::processEvent( SALOME_Event* theEvent )
82 {
83   if(theEvent)
84     theEvent->ExecutePostedEvent();
85 }
86
87
88 /*!Create new instance of LightApp_EventFilter*/
89 void LightApp_EventFilter::Init()
90 {
91   if( myFilter==NULL )
92     myFilter = new LightApp_EventFilter();
93 }
94
95 /*!Destroy filter.*/
96 void LightApp_EventFilter::Destroy()
97 {
98   if( myFilter )
99   {
100     delete myFilter;
101     myFilter = NULL;
102   }
103 }