1#ifndef COIN_SCXMLTRANSITIONELT_H
2#define COIN_SCXMLTRANSITIONELT_H
36#include <Inventor/scxml/ScXMLElt.h>
37#include <Inventor/tools/SbPimplPtr.h>
47 static void initClass(
void);
48 static void cleanClass(
void);
54 virtual void setEventAttribute(
const char * event);
55 const char * getEventAttribute(
void)
const {
return this->event; }
57 virtual void setCondAttribute(
const char * cond);
58 const char * getCondAttribute(
void)
const {
return this->cond; }
60 virtual void setTargetAttribute(
const char * target);
61 const char * getTargetAttribute(
void)
const {
return this->target; }
63 virtual void setAnchorAttribute(
const char * anchor);
64 const char * getAnchorAttribute(
void)
const {
return this->anchor; }
68 virtual void copyContents(
const ScXMLElt * rhs);
70 virtual const ScXMLElt *
search(
const char * attrname,
const char * attrvalue)
const;
73 SbBool isConditionLess(
void)
const;
74 SbBool isTargetLess(
void)
const;
75 SbBool isSelfReferencing(
void)
const;
78 virtual SbBool isEventMatch(
const ScXMLEvent * event)
const;
83 virtual int getNumExecutables(
void)
const;
87 virtual void clearAllExecutables(
void);
97 SbBool needprefixmatching;
The SbName class stores strings by reference.
Definition SbName.h:40
Definition SbPimplPtr.h:55
base class for all SCXML elements.
Definition ScXMLElt.h:44
virtual const ScXMLElt * search(const char *attrname, const char *attrvalue) const
Definition ScXMLElt.cpp:214
virtual SbBool handleXMLAttributes(void)
Definition ScXMLElt.cpp:200
Base class for events sent to SCXML state machines.
Definition ScXMLEvent.h:40
base class for all SCXML elements with executable content.
Definition ScXMLExecutableElt.h:42
Manager for processing events and setting states in SCXML structures.
Definition ScXMLStateMachine.h:61
the <transition> SCXML element.
Definition ScXMLTransitionElt.h:43