EventQueue

Inheritance:

Methods of EventQueue:

clear
void EventQueue::clear(void);

Description: Empties all events on the queue, throwing them on the floor.

dequeueEvent
ConstPointerTo< Event > EventQueue::dequeue_event(void);

Description:

getGlobalEventQueue
static EventQueue *EventQueue::get_global_event_queue(void);

Filename: eventQueue.I Created by: drose (05May00)
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University. All rights reserved.
All use of this software is subject to the terms of the revised BSD license. You should have received a copy of this license along with this source code in a file named "LICENSE."
Description: Returns a pointer to the one global EventQueue object. If the global object has not yet been created, this will create it.

isQueueEmpty
bool EventQueue::is_queue_empty(void) const;

Description:

isQueueFull
bool EventQueue::is_queue_full(void) const;

Description: This function is deprecated--the queue is never full these days.

queueEvent
void EventQueue::queue_event(ConstPointerTo< Event > event);

Description: