| 
                Last change
                  on this file since 5280 was
                  5237,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: implemented an EventFilter, that should filter alt-TAB 
 
           | 
        
        | 
            File size:
            1.6 KB
           | 
      
      
        
  | Rev | Line |   | 
|---|
| [4780] | 1 | /*! | 
|---|
| [5039] | 2 |  * @file event_handler.h | 
|---|
 | 3 |  * Definition of the EventHandler | 
|---|
 | 4 |  * | 
|---|
 | 5 |  */ | 
|---|
| [4780] | 6 |  | 
|---|
| [4346] | 7 | #ifndef _EVENT_HANDLER_H | 
|---|
 | 8 | #define _EVENT_HANDLER_H | 
|---|
| [4329] | 9 |  | 
|---|
 | 10 | #include "base_object.h" | 
|---|
| [4405] | 11 | #include "key_mapper.h" | 
|---|
| [4352] | 12 | #include "event_def.h" | 
|---|
| [4329] | 13 |  | 
|---|
| [4834] | 14 | // FORWARD DECLARATION | 
|---|
| [4346] | 15 | class EventListener; | 
|---|
| [4834] | 16 | template <class T> class tList; | 
|---|
| [4866] | 17 | class IniParser; | 
|---|
| [4329] | 18 |  | 
|---|
| [4346] | 19 | //! The one Event Handler from Orxonox | 
|---|
 | 20 | class EventHandler : public BaseObject { | 
|---|
 | 21 |  | 
|---|
| [4329] | 22 |  public: | 
|---|
| [4746] | 23 |   virtual ~EventHandler(); | 
|---|
| [4836] | 24 |   /** @returns a Pointer to the only object of this Class */ | 
|---|
| [4746] | 25 |   inline static EventHandler* getInstance() { if (!singletonRef) singletonRef = new EventHandler();  return singletonRef; }; | 
|---|
| [4866] | 26 |   void init(IniParser* iniParser); | 
|---|
| [4407] | 27 |  | 
|---|
| [5093] | 28 |   /** @param state: to which the event handler shall change */ | 
|---|
 | 29 |   inline void setState(elState state) { this->state = state; }; | 
|---|
 | 30 |   /** @returns the current state */ | 
|---|
 | 31 |   inline elState getState() const { return this->state; }; | 
|---|
| [4350] | 32 |  | 
|---|
| [4405] | 33 |   void subscribe(EventListener* el, elState state, int eventType); | 
|---|
| [4419] | 34 |   void unsubscribe(elState state, int eventType); | 
|---|
| [4420] | 35 |   void unsubscribe(EventListener* el, elState state = ES_ALL); | 
|---|
| [4364] | 36 |   void flush(elState state); | 
|---|
| [4346] | 37 |  | 
|---|
| [4352] | 38 |   void process(); | 
|---|
| [4346] | 39 |  | 
|---|
| [5237] | 40 |   static int eventFilter(const SDL_Event *event); | 
|---|
| [4872] | 41 |   void debug() const; | 
|---|
 | 42 |  | 
|---|
| [4329] | 43 |  private: | 
|---|
| [4746] | 44 |   EventHandler(); | 
|---|
| [4352] | 45 |  | 
|---|
| [4780] | 46 |  | 
|---|
| [4368] | 47 |  private: | 
|---|
| [5210] | 48 |   static EventHandler*       singletonRef;                    //!< the singleton reference | 
|---|
| [4780] | 49 |  | 
|---|
| [5210] | 50 |   EventListener*             listeners[ES_NUMBER][EV_NUMBER]; //!< a list of registered listeners | 
|---|
 | 51 |   elState                    state;                           //!< the state of the event handlder | 
|---|
 | 52 |   KeyMapper*                 keyMapper;                       //!< reference to the key mapper | 
|---|
| [4329] | 53 | }; | 
|---|
 | 54 |  | 
|---|
| [5237] | 55 |  | 
|---|
| [4346] | 56 | #endif /* _EVENT_HANDLER_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.