home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample3 / sample3.h < prev    next >
Text File  |  1997-12-23  |  512b  |  24 lines

  1. /* the nly function of sample3 it to play videofiles, and the only thing to learn */
  2. /* is how to use the multimedia-classes */
  3.  
  4. #define INCL_OOL
  5. #include "ool.h"
  6.  
  7. #include "resource.h"
  8.  
  9.  
  10. class MyAppWindow: public XFrameWindow
  11. {
  12.    public:
  13.       MyAppWindow( );
  14.       BOOL DoCommand( LONG);
  15.       void DoControl( XControlEvent*);
  16.       void Draw( void );
  17.       BOOL QueryForClose( void );
  18.    private:
  19.       XPushButton * back, *halt, *play, *plus, *mini, *sel;
  20.       XVideo * video;
  21. };
  22.  
  23.  
  24.