home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / examples / sound / sound.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  729b  |  35 lines

  1. /****************************************************************************
  2. ** $Id$
  3. **
  4. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  5. **
  6. ** This file is part of an example program for Qt.  This example
  7. ** program may be used, distributed and modified without limitation.
  8. **
  9. *****************************************************************************/
  10. #ifndef PLAY_H
  11. #define PLAY_H
  12.  
  13. #include "qsound.h"
  14. #include <qmainwindow.h>
  15.  
  16. class SoundPlayer : public QMainWindow {
  17.     Q_OBJECT
  18. public:
  19.     SoundPlayer();
  20.  
  21. public slots:
  22.     void doPlay1();
  23.     void doPlay2();
  24.     void doPlay3();
  25.     void doPlay4();
  26.     void doPlay34();
  27.     void doPlay1234();
  28.  
  29. private:
  30.     QSound bucket3;
  31.     QSound bucket4;
  32. };
  33.  
  34. #endif
  35.