SoContextReport.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00031
00032
00033 #ifndef _SOCONTEXTREPORT_H_
00034 #define _SOCONTEXTREPORT_H_
00035
00036 #include <Inventor/fields/SoMFName.h>
00037 #include <Inventor/fields/SoMFString.h>
00038 #include <Inventor/nodes/SoSubNode.h>
00039
00040 #include "starlight.h"
00041
00042 class SoCallbackAction;
00043 class SoGLRenderAction;
00044 class SoGetBoundingBoxAction;
00045 class SoGetMatrixAction;
00046 class SoHandleEventAction;
00047 class SoPickAction;
00048 class SoSearchAction;
00049
00067 class STARLIGHT_API SoContextReport : public SoNode
00068 {
00069 SO_NODE_HEADER(SoContextReport);
00070
00071 public:
00072
00074 SoMFName index;
00076 SoMFString value;
00078 SoMFString defaultValue;
00079
00081 static void initClass();
00082
00084 SoContextReport();
00085
00086 protected:
00087 virtual void GLRender(SoGLRenderAction *action);
00088 virtual void callback(SoCallbackAction *action);
00089 virtual void getBoundingBox(SoGetBoundingBoxAction *action);
00090 virtual void handleEvent(SoHandleEventAction *action);
00091 virtual void pick(SoPickAction *action);
00092 virtual void getMatrix(SoGetMatrixAction *action);
00093 virtual void search(SoSearchAction *action);
00094
00098 virtual void doAction(SoAction *action);
00099
00100 static void callDoAction(SoAction *, SoNode *);
00101
00103 virtual ~SoContextReport();
00104 };
00105
00106 #endif
00107