Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

soscxmlevent(3) [debian man page]

SoScXMLEvent(3) 						       Coin							   SoScXMLEvent(3)

NAME
SoScXMLEvent - Adds an SoEvent holder to the ScXMLEvent base. SYNOPSIS
#include <Inventor/scxml/SoScXMLEvent.h> Inherits ScXMLEvent. Public Member Functions virtual SoType getTypeId (void) const virtual void setSoEvent (const SoEvent *soevent) virtual const SoEvent * getSoEvent (void) const virtual void setUpIdentifier (void) Static Public Member Functions static SoType getClassTypeId (void) static void * createInstance (void) static void initClass (void) Additional Inherited Members Detailed Description Adds an SoEvent holder to the ScXMLEvent base. This class is part of integrating the Coin types with the SCXML subsystem. SoScXMLEvent objects are ScXMLEvents that wraps/passes an SoEvent to the SCXML state machine. Since: Coin 3.0 Member Function Documentation void SoScXMLEvent::setSoEvent (const SoEvent *soevent) [virtual] This function stores a pointer to the originator SoEvent that caused the given event, if any. There is no resource management with regards to this pointer - it has to be kept alive on the outside for as long as this event may live, and be deallocated on the outside as well. See also: setUpIdentifiers const SoEvent * SoScXMLEvent::getSoEvent (void) const [virtual] Returns the pointer stored by setSoEvent() or NULL if no pointer has been stored yet. See also: setSoEvent void SoScXMLEvent::setUpIdentifier (void) [virtual] This method updates the ScXMLEvent event class and event identifier strings based on the set SoEvent object. The identifiers will be cleared if no SoEvent object has been stored. See also: setSoEvent Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoScXMLEvent(3)

Check Out this Related Man Page

ScXMLStateMachine(3)						       Coin						      ScXMLStateMachine(3)

NAME
ScXMLStateMachine - Manager for processing events and setting states in SCXML structures. SYNOPSIS
#include <Inventor/scxml/ScXMLStateMachine.h> Inherits ScXMLObject. Inherited by SoScXMLStateMachine. Public Member Functions virtual SoType getTypeId (void) const virtual void setName (const SbName &name) const SbName & getName (void) const virtual void setDescription (ScXMLDocument *document) const ScXMLDocument * getDescription (void) const virtual void initialize (void) virtual void queueEvent (const ScXMLEvent *event, SbBool dealloc=FALSE) virtual void queueEvent (const SbName &eventid) virtual SbBool processEventQueue (void) virtual SbBool isActive (void) const virtual SbBool isFinished (void) const virtual const ScXMLEvent * getCurrentEvent (void) const virtual int getNumActiveStates (void) const virtual const ScXMLObject * getActiveState (int idx) const virtual const ScXMLObject * getState (const char *identifier) const virtual void addDeleteCallback (ScXMLStateMachineDeleteCB *callback, void *userdata) virtual void removeDeleteCallback (ScXMLStateMachineDeleteCB *callback, void *userdata) virtual void addStateChangeCallback (ScXMLStateChangeCB *callback, void *userdata) virtual void removeStateChangeCallback (ScXMLStateChangeCB *callback, void *userdata) Static Public Member Functions static SoType getClassTypeId (void) static void * createInstance (void) static void initClass (void) Protected Member Functions virtual SbBool processOneEvent (const ScXMLEvent *event) virtual void setCurrentEvent (const ScXMLEvent *event) Additional Inherited Members Detailed Description Manager for processing events and setting states in SCXML structures. Since: Coin 3.0 Member Function Documentation void ScXMLStateMachine::initialize (void) [virtual] Fire up the engine. SbBool ScXMLStateMachine::processEventQueue (void) [virtual] Recursive calling of this function will be handled by letting the recursive call return immediately, while the first call will continue processing the event queue until it is empty. SbBool ScXMLStateMachine::isActive (void) const [virtual] Returns whether the state machine is active or not. SbBool ScXMLStateMachine::isFinished (void) const [virtual] Returns whether the state machine has run to completion or not. const ScXMLEvent * ScXMLStateMachine::getCurrentEvent (void) const [virtual] This method returns the current event during event processing, and NULL when not processing events. Event processing is in special cases done with NULL as the current event, as for instance during state machine initialization. int ScXMLStateMachine::getNumActiveStates (void) const [virtual] Returns the number of active states in the state machine. This number should currently be 1, but in the future, when <parallel> is implemented, it can be more. const ScXMLObject * ScXMLStateMachine::getActiveState (intidx) const [virtual] Returns the Nth active state. const ScXMLObject * ScXMLStateMachine::getState (const char *identifier) const [virtual] Returns the state machine state object with the given identifier, or NULL if no object is found that has the given identifier. void ScXMLStateMachine::addDeleteCallback (ScXMLStateMachineDeleteCB *cb, void *userdata) [virtual] Registers a callback to be called when the state machine object is being deleted. void ScXMLStateMachine::removeDeleteCallback (ScXMLStateMachineDeleteCB *cb, void *userdata) [virtual] Unregisters a callback to be called when the state machine object is being deleted. void ScXMLStateMachine::addStateChangeCallback (ScXMLStateChangeCB *callback, void *userdata) [virtual] Registers a callback to be called when the state machine exits or enters a state. void ScXMLStateMachine::removeStateChangeCallback (ScXMLStateChangeCB *callback, void *userdata) [virtual] Unregisters a callback to be called when the state machine exits or enters a state. SbBool ScXMLStateMachine::processOneEvent (const ScXMLEvent *event) [protected], [virtual] Processes one event. This is an internal inner event-loop utility function. void ScXMLStateMachine::setCurrentEvent (const ScXMLEvent *event) [protected], [virtual] Sets a pointer for the event that is 'current' during event processing. This is an internal method, and updating the current event is handled automatically. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 ScXMLStateMachine(3)
Man Page