xue@0: /* xue@0: Harmonic Visualiser xue@0: xue@0: An audio file viewer and editor. xue@0: Centre for Digital Music, Queen Mary, University of London. xue@0: This file copyright 2011 Wen Xue. xue@0: xue@0: This program is free software; you can redistribute it and/or xue@0: modify it under the terms of the GNU General Public License as xue@0: published by the Free Software Foundation; either version 2 of the xue@0: License, or (at your option) any later version. xue@0: */ xue@0: //--------------------------------------------------------------------------- xue@0: xue@0: #ifndef RecordingUnitH xue@0: #define RecordingUnitH xue@0: //--------------------------------------------------------------------------- xue@0: /* xue@0: RecordingUnit.cpp implements the recording panel of HV for making audio recordings xue@0: from WaveIn device. xue@0: */ xue@0: xue@0: #include xue@0: #include xue@0: #include xue@0: #include xue@0: #include xue@0: //--------------------------------------------------------------------------- xue@0: class TRecordingForm : public TForm xue@0: { xue@0: __published: // IDE-managed Components xue@0: TLabel *Label1; xue@0: TSpeedButton *SpeedButton1; xue@0: TSpeedButton *SpeedButton2; xue@0: TSpeedButton *SpeedButtonRecord; xue@0: void __fastcall SpeedButton1Click(TObject *Sender); xue@0: void __fastcall SpeedButton2Click(TObject *Sender); xue@0: void __fastcall FormDblClick(TObject *Sender); xue@0: void __fastcall SpeedButtonRecordClick(TObject *Sender); xue@0: private: // User declarations xue@0: public: // User declarations xue@0: __fastcall TRecordingForm(TComponent* Owner); xue@0: }; xue@0: //--------------------------------------------------------------------------- xue@0: extern PACKAGE TRecordingForm *RecordingForm; xue@0: //--------------------------------------------------------------------------- xue@0: #endif