Go to the documentation of this file.00001 #ifndef __NYTRO_MoviePlayer_H
00002 #define __NYTRO_MoviePlayer_H
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "system/nyCommon.h"
00012 #include "system/nyBase.h"
00013
00014 namespace Nytro
00015 {
00016 namespace Graphics
00017 {
00020 class NYTRO_API MoviePlayer : public Base
00021 {
00022 protected:
00023
00024 MoviePlayer();
00025
00026 public:
00027
00028 virtual ~MoviePlayer();
00029
00031 virtual EResult open( const char* pFileName );
00033 virtual void setRectangle( int32 aX, int32 aY, int32 aW, int32 aH );
00035 virtual void play();
00037 virtual void stop();
00039 virtual void pause();
00041 virtual void resume();
00043 virtual void seek( int32 aTime );
00045 virtual void process();
00046 };
00047 };
00048 };
00049
00050 #endif