]> SALOME platform Git repositories - modules/gui.git/blob - src/SalomeApp/SalomeApp_EventFilter.h
Salome HOME
1411a3f5e9f14e0141fd9aab82511d32b816a0de
[modules/gui.git] / src / SalomeApp / SalomeApp_EventFilter.h
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 #ifndef SALOMEAPP_EVENTFILTER_H
20 #define SALOMEAPP_EVENTFILTER_H
21
22 #include "SalomeApp.h"
23 #include <qobject.h>
24
25 #if defined WNT
26 #pragma warning( disable: 4251 )
27 #endif
28
29 class SALOME_Event;
30
31 /*!
32   Class provide event filter.
33 */
34 class SALOMEAPP_EXPORT SalomeApp_EventFilter: public QObject 
35 {
36 public:
37   static void Init();
38   static void Destroy();
39
40 protected:
41   SalomeApp_EventFilter();
42   virtual ~SalomeApp_EventFilter();
43
44 private:
45   /*! global event filter for qapplication */
46   virtual bool eventFilter( QObject* o, QEvent* e );
47   void processEvent( SALOME_Event* );
48
49 private:
50   static SalomeApp_EventFilter* myFilter;
51 };
52
53 #if defined WNT
54 #pragma warning( default: 4251 )
55 #endif
56
57 #endif