WavePlay.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:
Delphi/CppBuilder
开发平台:
C++ Builder
- //---------------------------------------------------------------------------
- #ifndef WavePlayH
- #define WavePlayH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <Buttons.hpp>
- #include <ComCtrls.hpp>
- #include <MPlayer.hpp>
- #include <Dialogs.hpp>
- #include <ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TWaveForm : public TForm
- {
- __published: // IDE-managed Components
- TProgressBar *ProgressBar1;
- TBitBtn *BitBtn1;
- TBitBtn *BitBtn2;
- TMediaPlayer *MediaPlayer1;
- TTimer *Timer1;
- TOpenDialog *OpenDialog1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall BitBtn1Click(TObject *Sender);
- void __fastcall Timer1Timer(TObject *Sender);
- void __fastcall BitBtn2Click(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TWaveForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TWaveForm *WaveForm;
- //---------------------------------------------------------------------------
- #endif