Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef LIGHTAPP_EVENTFILTER_H
00024 #define LIGHTAPP_EVENTFILTER_H
00025
00026 #include "LightApp.h"
00027
00028 #include <QObject>
00029
00030 #if defined WIN32
00031 #pragma warning( disable: 4251 )
00032 #endif
00033
00034
00035 class SALOME_Event;
00036
00040 class LIGHTAPP_EXPORT LightApp_EventFilter: public QObject
00041 {
00042 public:
00043 static void Init();
00044 static void Destroy();
00045
00046 protected:
00047 LightApp_EventFilter();
00048 virtual ~LightApp_EventFilter();
00049
00050 private:
00052 virtual bool eventFilter( QObject* o, QEvent* e );
00053 void processEvent( SALOME_Event* );
00054
00055 private:
00056 static LightApp_EventFilter* myFilter;
00057 };
00058
00059 #if defined WIN32
00060 #pragma warning( default: 4251 )
00061 #endif
00062
00063 #endif