Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5237 in orxonox.OLD for trunk/src/lib/event/event_handler.cc


Ignore:
Timestamp:
Sep 24, 2005, 10:41:52 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: implemented an EventFilter, that should filter alt-TAB

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/event/event_handler.cc

    r5236 r5237  
    3636  SDL_InitSubSystem(SDL_INIT_JOYSTICK);
    3737  SDL_InitSubSystem(SDL_INIT_EVENTTHREAD);
     38//  SDL_SetEventFilter(EventHandler::eventFilter);
    3839
    3940  this->setClassID(CL_EVENT_HANDLER, "EventHandler");
     
    294295}
    295296
    296 
     297int EventHandler::eventFilter(const SDL_Event *event)
     298{
     299  /*
     300  if (event->type == SDL_KEYDOWN &&  event->key.keysym.sym == SDLK_TAB && SDL_GetKeyState(NULL)[SDLK_LALT])
     301  {
     302    printf("test\n");
     303
     304  }
     305  return 1;
     306  */
     307}
     308
     309/**
     310 * outputs some nice information about the EventHandler
     311 */
    297312void EventHandler::debug() const
    298313{
Note: See TracChangeset for help on using the changeset viewer.