home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample5 / sample5.h < prev    next >
Text File  |  1996-08-17  |  731b  |  38 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. #include "xheaders.h"
  5.  
  6. #include XApplication_i
  7. #include XResourceLibrary_i
  8. #include XRect_i
  9. #include XResource_i
  10. #include XToolBar_i
  11. #include XPushButton_i
  12. #include XScrollWindow_i
  13. #include XContainerControl_i
  14.  
  15. #include "resource.h"
  16.  
  17.  
  18. class MyAppWindow: public XScrollWindow
  19. {
  20.    public:
  21.      MyAppWindow( XApplication * app, XResource *);
  22.      ~MyAppWindow();
  23.      BOOL DoCommand( LONG);
  24.      void DoControl( XControlEvent*);
  25. //     void Draw( void );
  26. };
  27.  
  28.  
  29. class MyApp: public XApplication
  30. {
  31.    private:
  32.       MyAppWindow * window;
  33.    public:
  34.       MyApp();
  35. };
  36.  
  37.  
  38.