WavePlay.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef WavePlayH
  3. #define WavePlayH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Buttons.hpp>
  10. #include <ComCtrls.hpp>
  11. #include <MPlayer.hpp>
  12. #include <Dialogs.hpp>
  13. #include <ExtCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TWaveForm : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.         TProgressBar *ProgressBar1;
  19.         TBitBtn *BitBtn1;
  20.         TBitBtn *BitBtn2;
  21.         TMediaPlayer *MediaPlayer1;
  22.         TTimer *Timer1;
  23.         TOpenDialog *OpenDialog1;
  24.         void __fastcall FormCreate(TObject *Sender);
  25.         void __fastcall BitBtn1Click(TObject *Sender);
  26.         void __fastcall Timer1Timer(TObject *Sender);
  27.         void __fastcall BitBtn2Click(TObject *Sender);
  28. private: // User declarations
  29. public: // User declarations
  30.         __fastcall TWaveForm(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TWaveForm *WaveForm;
  34. //---------------------------------------------------------------------------
  35. #endif