1 #ifndef COIN_SOSCROLLINGGRAPHKIT_H 
    2 #define COIN_SOSCROLLINGGRAPHKIT_H 
   27 #include <Inventor/nodekits/SoBaseKit.h> 
   28 #include <Inventor/nodekits/SoSubKit.h> 
   30 #include <Inventor/tools/SbPimplPtr.h> 
   31 #include <Inventor/fields/SoSFVec3f.h> 
   32 #include <Inventor/fields/SoSFEnum.h> 
   33 #include <Inventor/fields/SoSFTime.h> 
   34 #include <Inventor/fields/SoMFFloat.h> 
   35 #include <Inventor/fields/SoMFColor.h> 
   36 #include <Inventor/fields/SoMFName.h> 
   39 class SoScrollingGraphKitP;
 
   41 class SoScrollingGraphKit : 
public SoBaseKit {
 
   43   SO_KIT_HEADER(SoScrollingGraphKit);
 
   44   SO_KIT_CATALOG_ENTRY_HEADER(scene);
 
   47   static void initClass(
void);
 
   49   SoScrollingGraphKit(
void);
 
   54     DEFAULT_GRAPHICS = STACKED_BARS
 
   58     ABSOLUTE_ACCUMULATIVE,
 
   62     DEFAULT_RANGETYPE = ABSOLUTE_ACCUMULATIVE
 
   81   virtual ~SoScrollingGraphKit(
void);
 
   83   static void addValuesCB(
void * closure, 
SoSensor * sensor);
 
   86   SbPimplPtr<SoScrollingGraphKitP> pimpl;
 
   89   SoScrollingGraphKit(
const SoScrollingGraphKit &);
 
   90   SoScrollingGraphKit & operator = (
const SoScrollingGraphKit &);
 
   94 #endif // !COIN_SOSCROLLINGGRAPHKIT_H 
The SoMFFloat class is a container for floating point values.This field is used where nodes...
Definition: SoMFFloat.h:30
The SoBaseKit class is the toplevel superclass for nodekits.Node kits are collections of nodes and ot...
Definition: SoBaseKit.h:57
The SoMFColor class is a container for SbColor values.This field is used where nodes, engines or other field containers needs to store multiple color values (i.e. "Red Green Blue" triplets). 
Definition: SoMFColor.h:31
The SoSFEnum class is a container for an enum value.This field is used where nodes, engines or other field containers needs to store one particular value out of an enumerated set. 
Definition: SoSFEnum.h:31
The SoSensor class is the abstract base class for all sensors.Sensors is a mechanism in Coin for sche...
Definition: SoSensor.h:34
The SoSFTime class is a container for an SbTime value.This field is used where nodes, engines or other field containers needs to store a single time representation. 
Definition: SoSFTime.h:31
The SoMFName class is a container for SbName values.This field is used where nodes, engines or other field containers needs to store arrays of names. 
Definition: SoMFName.h:31
The SoSFVec3f class is a container for an SbVec3f vector.This field is used where nodes...
Definition: SoSFVec3f.h:31