Coin  4.0.3
Coin3D core library
Loading...
Searching...
No Matches
ScXMLParallelElt.h
1#ifndef COIN_SCXMLPARALLELELT_H
2#define COIN_SCXMLPARALLELELT_H
3
4/**************************************************************************\
5 * Copyright (c) Kongsberg Oil & Gas Technologies AS
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * Neither the name of the copyright holder nor the names of its
20 * contributors may be used to endorse or promote products derived from
21 * this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34\**************************************************************************/
35
36#include <Inventor/scxml/ScXMLAbstractStateElt.h>
37#include <Inventor/tools/SbPimplPtr.h>
38
39class ScXMLEvent;
41class ScXMLOnEntryElt;
42class ScXMLOnExitElt;
44class ScXMLStateElt;
45class ScXMLInitialElt;
46class ScXMLFinalElt;
47class ScXMLHistoryElt;
48class ScXMLAnchorElt;
50
53 SCXML_ELEMENT_HEADER(ScXMLElt)
54
55public:
56 static void initClass(void);
57 static void cleanClass(void);
58
59 ScXMLParallelElt(void);
60 virtual ~ScXMLParallelElt(void);
61
62 // XML attributes
63 virtual void setSrcAttribute(const char * src);
64 const char * getSrcAttribute(void) const { return this->src; }
65
66 virtual SbBool handleXMLAttributes(void);
67
68 virtual void copyContents(const ScXMLElt * rhs);
69
70 virtual const ScXMLElt * search(const char * attrname, const char * attrvalue) const;
71
72 // children...
73 virtual void setOnEntry(ScXMLOnEntryElt * onentry);
74 virtual ScXMLOnEntryElt * getOnEntry(void) const;
75
76 virtual void setOnExit(ScXMLOnExitElt * onexit);
77 virtual ScXMLOnExitElt * getOnExit(void) const;
78
79 virtual int getNumTransitions(void) const;
80 virtual ScXMLTransitionElt * getTransition(int idx) const;
81 virtual void addTransition(ScXMLTransitionElt * transition);
82 virtual void removeTransition(ScXMLTransitionElt * transition);
83 virtual void clearAllTransitions(void);
84
85 virtual void setInitial(ScXMLInitialElt * initial);
86 virtual ScXMLInitialElt * getInitial(void) const;
87
88 virtual int getNumStates(void) const;
89 virtual ScXMLStateElt * getState(int idx) const;
90 virtual void addState(ScXMLStateElt * state);
91 virtual void removeState(ScXMLStateElt * state);
92 virtual void clearAllStates(void);
93
94 virtual int getNumParallels(void) const;
95 virtual ScXMLParallelElt * getParallel(int idx) const;
96 virtual void addParallel(ScXMLParallelElt * state);
97 virtual void removeParallel(ScXMLParallelElt * state);
98 virtual void clearAllParallels(void);
99
100 virtual int getNumFinals(void) const;
101 virtual ScXMLFinalElt * getFinal(int idx) const;
102 virtual void addFinal(ScXMLFinalElt * state);
103 virtual void removeFinal(ScXMLFinalElt * state);
104 virtual void clearAllFinals(void);
105
106 virtual int getNumHistories(void) const;
107 virtual ScXMLHistoryElt * getHistory(int idx) const;
108 virtual void addHistory(ScXMLHistoryElt * history);
109 virtual void removeHistory(ScXMLHistoryElt * history);
110 virtual void clearAllHistories(void);
111
112 virtual int getNumAnchors(void) const;
113 virtual ScXMLAnchorElt * getAnchor(int idx) const;
114 virtual void addAnchor(ScXMLAnchorElt * anchor);
115 virtual void removeAnchor(ScXMLAnchorElt * anchor);
116 virtual void clearAllAnchors(void);
117
118 virtual void setDataModel(ScXMLDataModelElt * datamodel);
119 virtual ScXMLDataModelElt * getDataModel(void) const;
120
121 SbBool isAtomicState(void) const;
122
123protected:
124 char * src;
125
126private:
127 ScXMLParallelElt(const ScXMLParallelElt & rhs); // N/A
128 ScXMLParallelElt & operator = (const ScXMLParallelElt & rhs); // N/A
129
130 class PImpl;
131 SbPimplPtr<PImpl> pimpl;
132
133}; // ScXMLParallelElt
134
135#endif // !COIN_SCXMLPARALLELELT_H
The SbList class is a template container class for lists.
Definition SbList.h:70
SbList< Type > & operator=(const SbList< Type > &l)
Definition SbList.h:99
abstract base class for the SCXML 'state' elements.
Definition ScXMLAbstractStateElt.h:40
implements the <anchor> SCXML element.
Definition ScXMLAnchorElt.h:40
implements the <datamodel> SCXML element.
Definition ScXMLDataModelElt.h:42
base class for all SCXML elements.
Definition ScXMLElt.h:44
Base class for events sent to SCXML state machines.
Definition ScXMLEvent.h:40
implements the <final> SCXML element.
Definition ScXMLFinalElt.h:42
implements the <history> SCXML element.
Definition ScXMLHistoryElt.h:42
implements the <initial> SCXML element.
Definition ScXMLInitialElt.h:41
implements the <onentry> SCXML element.
Definition ScXMLOnEntryElt.h:43
implements the <onexit> SCXML element.
Definition ScXMLOnExitElt.h:43
implements the <parallel> SCXML element.
Definition ScXMLParallelElt.h:51
implements the <state> SCXML element.
Definition ScXMLStateElt.h:51
Manager for processing events and setting states in SCXML structures.
Definition ScXMLStateMachine.h:61
the <transition> SCXML element.
Definition ScXMLTransitionElt.h:43