home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / mmstereo / mmstereo.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  3.2 KB  |  90 lines

  1. /******************************************************************************
  2. * .FILE:         mmstereo.hpp                                                 *
  3. *                                                                             *
  4. * .DESCRIPTION:  Multimedia Stereo Sample:             Class Definition       *
  5. *                                                                             *
  6. * .CLASSES:      MainWindow                                                   *
  7. *                                                                             *
  8. * .COPYRIGHT:                                                                 *
  9. *    Licensed Material - Program-Property of IBM                              *
  10. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  11. *                                                                             *
  12. * .DISCLAIMER:                                                                *
  13. *   The following [enclosed] code is sample code created by IBM               *
  14. *   Corporation.  This sample code is not part of any standard IBM product    *
  15. *   and is provided to you solely for the purpose of assisting you in the     *
  16. *   development of your applications.  The code is provided 'AS IS',          *
  17. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  18. *   arising out of your use of the sample code, even if they have been        *
  19. *   advised of the possibility of such damages.                               *
  20. *                                                                             *
  21. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  22. *                                                                             *
  23. ******************************************************************************/
  24. #ifndef _MMSTEREO_
  25. #define _MMSTEREO_
  26. #include <icolor.hpp>
  27. #include <iframe.hpp>
  28. #include <immcdda.hpp>
  29. #include <immwave.hpp>
  30. #include <immdigvd.hpp>
  31. #include <immsequ.hpp>
  32. #include <isetcv.hpp>
  33. #include <ititle.hpp>
  34. #include "mmstereo.h"
  35. #include "mltamp.hpp"
  36. #include "mltcd.hpp"
  37. #include "mltwave.hpp"
  38. #include "mltvid.hpp"
  39. #include "ifont.hpp"
  40.  
  41.  
  42. class MainWindow : public IFrameWindow {
  43. //**************************************************************************
  44. // Class:   MainWindow                                                     *
  45. //                                                                         *
  46. // Purpose: Main Window for C++ MltMedia sample application.               *
  47. //          It is a subclass of IFrameWindow                               *
  48. //                                                                         *
  49. //**************************************************************************
  50. public:                               //Define the Public Information
  51.  
  52.   MainWindow( unsigned long windowId);
  53.  
  54.   ~MainWindow();
  55.  
  56. private:
  57. ITitle title;
  58.  
  59. ISetCanvas
  60.   clientCanvas;
  61.  
  62.  
  63. IMMAudioCD
  64.   *cdPlayer;
  65.  
  66. IMMWaveAudio
  67.   *wavPlayer;
  68.  
  69. IMMDigitalVideo
  70.   *vidPlayer;
  71.  
  72. IMMAmpMixer
  73.   *ampMixer1,
  74.   *ampMixer2,
  75.   *ampMixer3;
  76.  
  77. Amp*
  78.   amp;
  79.  
  80. CD*
  81.   cd ;
  82.  
  83. WAVE*
  84.   wave;
  85.  
  86. VIDEO*
  87.   video;
  88. };
  89. #endif
  90.