Coin3D is Free Software, published under the BSD 3-clause license. |
https://bitbucket.org/Coin3D/ http://www.kongsberg.com/kogt/ |
The SoQtObject class is the common superclass for all SoQt component classes. More...
#include <Inventor/Qt/SoQtObject.h>
Public Member Functions | |
virtual SoType | getTypeId (void) const =0 |
SbBool | isOfType (SoType type) const |
Static Public Member Functions | |
static void | initClass (void) |
static SoType | getClassTypeId (void) |
static void | init (void) |
The SoQtObject class is the common superclass for all SoQt component classes.
The purpose of making this class the superclass of all SoQt device, component and viewer classes is to be able to do run-time type checking of the SoQt objects.
You can place the macro SOQT_OBJECT_HEADER(classname,parentname) within a class definition header for SoQt extension components to automatically make the necessary definitions for setting up a run-time type system for your extension classes:
Then put the SOQT_OBJECT_SOURCE(classname) macro within the actual implementation sourcecode file to include the necessary code for the run-time type system:
See also the documentation of the SoType class in Coin or Inventor.
|
static |
Sets up initialization for data common to all instances of this class, submitting necessary information to the internal SoQt type system.
|
static |
This static method returns the SoType object associated with objects of this class.
|
pure virtual |
Returns the type identification of an object derived from a class inheriting SoQtObject. This is used for run-time type checking and "downward" casting.
Usage example:
SbBool SoQtObject::isOfType | ( | SoType | type | ) | const |
Returns TRUE
if the type of this object is either of the same type or inherited from type.
|
static |
Initialize the type system of SoQtObject, all SoQt device classes and all SoQt components (including viewers).