00001 #ifndef COIN_SODELAYQUEUESENSOR_H
00002 #define COIN_SODELAYQUEUESENSOR_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/sensors/SoSensor.h>
00028 #include <Inventor/SbBasic.h>
00029 #include <Inventor/system/inttypes.h>
00030
00031 class COIN_DLL_API SoDelayQueueSensor : public SoSensor {
00032 typedef SoSensor inherited;
00033
00034 public:
00035 SoDelayQueueSensor(void);
00036 SoDelayQueueSensor(SoSensorCB * func, void * data);
00037 virtual ~SoDelayQueueSensor(void);
00038
00039 void setPriority(uint32_t pri);
00040 uint32_t getPriority(void) const;
00041 static uint32_t getDefaultPriority(void);
00042 virtual void schedule(void);
00043 virtual void unschedule(void);
00044 virtual SbBool isScheduled(void) const;
00045
00046 virtual SbBool isIdleOnly(void) const;
00047 virtual void trigger(void);
00048
00049 protected:
00050 SbBool scheduled;
00051
00052 private:
00053 virtual SbBool isBefore(const SoSensor * s) const;
00054 uint32_t priority;
00055 };
00056
00057 #endif // !COIN_SODELAYQUEUESENSOR_H