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: #ifndef UnitRangeEditH xue@0: #define UnitRangeEditH xue@0: //--------------------------------------------------------------------------- xue@0: /* xue@0: UnitRangeEdit implements the time and frequency range input box of HV. xue@0: */ xue@0: #include xue@0: #include xue@0: #include xue@0: #include xue@0: #include xue@0: //--------------------------------------------------------------------------- xue@0: class TRangeEdit : public TForm xue@0: { xue@0: __published: // IDE-managed Components xue@0: TEdit *Edit1; xue@0: TEdit *Edit2; xue@0: TLabel *Label1; xue@0: TLabel *Label2; xue@0: TBitBtn *BitBtn1; xue@0: TBitBtn *BitBtn2; xue@0: void __fastcall FormShow(TObject *Sender); xue@0: private: // User declarations xue@0: public: // User declarations xue@0: __fastcall TRangeEdit(TComponent* Owner); xue@0: }; xue@0: //--------------------------------------------------------------------------- xue@0: extern PACKAGE TRangeEdit *RangeEdit; xue@0: //--------------------------------------------------------------------------- xue@0: #endif