Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7898 in orxonox.OLD for branches/gui/src/lib/event/event_handler.cc


Ignore:
Timestamp:
May 27, 2006, 6:05:20 AM (18 years ago)
Author:
bensch
Message:

doxy-tags :) the most i can do at this time :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/event/event_handler.cc

    r7897 r7898  
    2929
    3030/**
    31  * standard constructor
    32 */
     31 * @brief standard constructor
     32 */
    3333EventHandler::EventHandler ()
    3434{
     
    5252
    5353/**
    54  * the singleton reference to this class
     54 * @brief the singleton reference to this class
    5555*/
    5656EventHandler* EventHandler::singletonRef = NULL;
     
    5858
    5959/**
    60  *  standard deconstructor
    61 
    62 */
     60 * @brief standard deconstructor
     61 */
    6362EventHandler::~EventHandler ()
    6463{
     
    8079
    8180/**
    82  * initializes the event handler
     81 * @brief initializes the event handler
    8382 *
    8483 * this has to be called before the use of the event handler
     
    118117
    119118/**
    120  * pushes the current State in the State-stack, and selects state
     119 * @brief pushes the current State in the State-stack, and selects state
    121120 * @param state the new State to set
    122121 */
     
    135134
    136135/**
    137  * this removes the topmost stack-entry and select the underlying one
     136 * @brief this removes the topmost stack-entry and select the underlying one
    138137 * @returns the next stack-entry
    139138 */
     
    184183 * @param state: the stat in which it has been subscribed
    185184 * @param eventType: the event, that shall be unsubscribed
    186 
    187    if you want to unsubscribe an event listener from all subscribed events, just use the
    188    unsubscribe(EventListener* el, elState state) function
    189 */
     185 *
     186 * if you want to unsubscribe an event listener from all subscribed events, just use the
     187 * unsubscribe(EventListener* el, elState state) function
     188 */
    190189void EventHandler::unsubscribe(EventListener* el, elState state, int eventType)
    191190{
     
    259258
    260259/**
    261  * flush all registered events
     260 * @brief flush all registered events
    262261 * @param state: a specific state
    263262*/
     
    317316
    318317/**
    319  *  @brief core function of event handler: receives all events from SDL
     318 * @brief core function of event handler: receives all events from SDL
    320319 *
    321320 * The event from the SDL framework are collected here and distributed to all listeners.
Note: See TracChangeset for help on using the changeset viewer.