00001 #ifndef COIN_SOBLINKER_H
00002 #define COIN_SOBLINKER_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <Inventor/nodes/SoSubNode.h>
00028 #include <Inventor/nodes/SoSwitch.h>
00029 #include <Inventor/fields/SoSFFloat.h>
00030 #include <Inventor/fields/SoSFBool.h>
00031
00032 class SoSensor;
00033 class SoOneShotSensor;
00034 class SoTimeCounter;
00035
00036 class COIN_DLL_API SoBlinker : public SoSwitch {
00037 typedef SoSwitch inherited;
00038
00039 SO_NODE_HEADER(SoBlinker);
00040
00041 public:
00042 static void initClass(void);
00043 SoBlinker(void);
00044
00045 SoSFFloat speed;
00046 SoSFBool on;
00047
00048 virtual void getBoundingBox(SoGetBoundingBoxAction * action);
00049 virtual void write(SoWriteAction * action);
00050
00051 protected:
00052 virtual ~SoBlinker();
00053 virtual void notify(SoNotList * nl);
00054
00055 private:
00056 virtual SoNode * copy(SbBool copyconnections = FALSE) const;
00057 void deconnectInternalEngine(void);
00058 void reconnectInternalEngine(void);
00059
00060 SoTimeCounter * counter;
00061 };
00062
00063 #endif // !COIN_SOBLINKER_H