home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap15 / npavi / CAVI.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-17  |  2.5 KB  |  100 lines

  1. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  2. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  3. // cavi.h
  4. //
  5. //        This file contains some basic code to play and display AVI files
  6. //        It implements a CAvi class which can be used to display video
  7. //        for windows files.
  8. //
  9. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  10. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  11.  
  12. #ifndef __CAVI_H__
  13. #define __CAVI_H__
  14.  
  15. #ifndef _INC_WINDOWS    
  16. #include <windows.h>
  17. #endif
  18.  
  19. // for java call back
  20. #ifndef _NPAPI_H_
  21. #include "npapi.h"
  22. #endif
  23.  
  24. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  25. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  26. //
  27. // CAvi 
  28. //
  29. //    A basic avi class. Pretty straightforward
  30. //
  31. class CAvi
  32. {
  33.  
  34.     private:
  35.         NPP        _pluginInstance;    // used to call back java (see OnStop() and OnPsitionChange()
  36.         UINT    _mDeviceID;            // mci device ID, used to call into the mci driver
  37.         HWND    _hMovieWnd;            // avi window handle
  38.  
  39.         BOOL    _bLoop;                // set the REPEAT flag on the play command
  40.         BOOL    _bAutoStart;        // start plying on open
  41.         BOOL    _bPlaying;            // playing status
  42.  
  43.         // timer information
  44.         UINT    _uTimeOut;
  45.         UINT    _uTimerID;
  46.  
  47.     private:
  48.         static UINT    s_InstanceCount; // for setting the timer
  49.  
  50.     public:
  51.         CAvi (BOOL autoStart, BOOL bLoop, NPP instance);
  52.         ~CAvi ();
  53.  
  54.         BOOL Open (HWND, LPCSTR);
  55.         void Close (void);
  56.  
  57.         BOOL Play (void);
  58.         BOOL Stop (void);
  59.         BOOL Seek (ULONG);
  60.         BOOL Rewind (void);
  61.         BOOL Forward (void);
  62.         BOOL FrameForward (void);
  63.         BOOL FrameBack (void);
  64.  
  65.         DWORD GetLength (void);
  66.         DWORD GetPosition (void);
  67.         int GetWidth (void);
  68.         int GetHeight (void);
  69.         BOOL isPlaying() const { return _bPlaying;}
  70.  
  71.         BOOL Center (void);
  72.  
  73.         void Update(void);
  74.         BOOL Realize (void);
  75.  
  76.         void SetFrequency(UINT uTimer);
  77.  
  78.         void OnStop();
  79.         void OnPositionChange();
  80. };
  81.  
  82.  
  83. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  84. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  85. //
  86. // CRect 
  87. //    
  88. //    kind of stupid utility class
  89. //
  90. class CRect : public RECT {
  91.     public:
  92.         CRect() {left = 0; top = 0; right = 0; bottom = 0;}
  93.         long Width() const {return right - left;}
  94.         long Height() const {return bottom - top;}
  95.         CRect& operator = (RECT rc) {left = rc.left, top = rc.top; 
  96.                                     right = rc.right; left = rc.left;
  97.                                     return *this;}
  98. };
  99.  
  100. #endif