Coin
4.0.3
Coin3D core library
|
The SoInt32Element class is the base class for elements that simply store a 32-bit integer. More...
#include <Inventor/elements/SoInt32Element.h>
Public Member Functions | |
virtual SoElement * | copyMatchInfo (void) const |
virtual void | init (SoState *state) |
virtual SbBool | matches (const SoElement *element) const |
virtual void | print (FILE *file) const |
virtual void | setElt (int32_t value) |
Public Member Functions inherited from SoElement | |
virtual | ~SoElement () |
int | getDepth (void) const |
int | getStackIndex (void) const |
const SoType | getTypeId (void) const |
virtual void | pop (SoState *state, const SoElement *prevTopElement) |
virtual void | push (SoState *state) |
void | setDepth (const int depth) |
Static Public Member Functions | |
static int32_t | get (const int index, SoState *const state) |
static int | getClassStackIndex (void) |
static SoType | getClassTypeId (void) |
static void | initClass (void) |
static void | set (const int index, SoState *const state, const int32_t value) |
static void | set (const int index, SoState *const state, SoNode *const node, const int32_t value) |
Static Public Member Functions inherited from SoElement | |
static int | getClassStackIndex (void) |
static SoType | getClassTypeId (void) |
static SoType | getIdFromStackIndex (const int stackIndex) |
static int | getNumStackIndices (void) |
static void | initClass (void) |
static void | initElements (void) |
Protected Member Functions | |
virtual | ~SoInt32Element () |
Protected Member Functions inherited from SoElement | |
SoElement (void) | |
void | capture (SoState *const state) const |
virtual void | captureThis (SoState *state) const |
SoElement * | getNextFree (void) const |
SoElement * | getNextInStack (void) const |
void | setStackIndex (const int index) |
void | setTypeId (const SoType typeId) |
Protected Attributes | |
int32_t | data |
Protected Attributes inherited from SoElement | |
int | depth |
int | stackIndex |
SoType | typeId |
Additional Inherited Members | |
Static Protected Member Functions inherited from SoElement | |
static int | createStackIndex (const SoType id) |
static const SoElement * | getConstElement (SoState *const state, const int stackIndex) |
static SoElement * | getElement (SoState *const state, const int stackIndex) |
Static Protected Attributes inherited from SoElement | |
static int | classStackIndex |
static SoTypeList * | stackToType |
The SoInt32Element class is the base class for elements that simply store a 32-bit integer.
This is the superclass of elements where the new element data replaces the old data, and where the data the element stores is a simple 32-bit integer value.
This element is like a convenient light-weight version of the SoReplacedElement. It differs from the SoReplacedElement in that the set() and get() methods are already implemented, since it is known that subclasses will still contain just a single 32-bit integer value.
|
protectedvirtual |
Destructor.
Static method to fetch the value of the element of this type from the given state at the given stack index.
|
static |
This static method returns the state stack index for the class.
This static method returns the SoType object associated with objects of this class.
Initializes the element to its default value. The default value for the int32 value is 0.
Reimplemented from SoElement.
Reimplemented in SoGLShadowCullingElement, SoShadowStyleElement, SoAnnoText3CharOrientElement, SoAnnoText3FontSizeHintElement, SoAnnoText3RenderPrintElement, SoComplexityTypeElement, SoDecimationTypeElement, SoDrawStyleElement, SoGLDrawStyleElement, SoGLLightIdElement, SoGLLinePatternElement, SoLightModelElement, SoLinePatternElement, SoMaterialBindingElement, SoNormalBindingElement, SoPickStyleElement, SoSwitchElement, SoTextOutlineEnabledElement, SoTextureCoordinateBindingElement, SoTextureUnitElement, SoUnitsElement, and SoVertexAttributeBindingElement.
Initialize relevant common data for all instances, like the type system.
This function returns TRUE
is the element matches another element (of the same class), with respect to cache validity.
If the application programmer's extension element has a matches() function, it should also have a copyMatchInfo() function.
Implements SoElement.
This function is for printing element information, and is used mostly for debugging purposes.
Reimplemented from SoElement.
Static method for setting the value of an element in the given state at the given stackIndex.
|
static |
Static method for setting the value of an element in the given state at the given stack index.
|
virtual |
Set element value.
Reimplemented in SoGLLinePatternElement, SoGLDrawStyleElement, and SoGLShadowCullingElement.
|
protected |
The 32-bit integer value of the element.