00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef COIN_SOVRMLMOVIETEXTURE_H
00025 #define COIN_SOVRMLMOVIETEXTURE_H
00026
00027 #include <Inventor/nodes/SoSubNode.h>
00028 #include <Inventor/VRMLnodes/SoVRMLTexture.h>
00029 #include <Inventor/fields/SoSFBool.h>
00030 #include <Inventor/fields/SoSFFloat.h>
00031 #include <Inventor/fields/SoSFTime.h>
00032 #include <Inventor/fields/SoMFString.h>
00033
00034 class SoVRMLMovieTextureP;
00035
00036 class COIN_DLL_API SoVRMLMovieTexture : public SoVRMLTexture
00037 {
00038 typedef SoVRMLTexture inherited;
00039 SO_NODE_HEADER(SoVRMLMovieTexture);
00040
00041 public:
00042 static void initClass(void);
00043 SoVRMLMovieTexture(void);
00044
00045 SoSFBool loop;
00046 SoSFFloat speed;
00047 SoSFTime startTime;
00048 SoSFTime stopTime;
00049 SoMFString url;
00050 SoSFTime duration_changed;
00051 SoSFBool isActive;
00052
00053 virtual void GLRender( SoGLRenderAction * action );
00054
00055 protected:
00056 virtual ~SoVRMLMovieTexture();
00057
00058 private:
00059 SoVRMLMovieTextureP * pimpl;
00060 };
00061
00062 #endif // ! COIN_SOVRMLMOVIETEXTURE_H