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: #include xue@0: #pragma hdrstop xue@0: xue@0: #include "UnitRangeEdit.h" xue@0: //--------------------------------------------------------------------------- xue@0: #pragma package(smart_init) xue@0: #pragma resource "*.dfm" xue@0: TRangeEdit *RangeEdit; xue@0: //--------------------------------------------------------------------------- xue@0: __fastcall TRangeEdit::TRangeEdit(TComponent* Owner) xue@0: : TForm(Owner) xue@0: { xue@0: } xue@0: //--------------------------------------------------------------------------- xue@0: void __fastcall TRangeEdit::FormShow(TObject *Sender) xue@0: { xue@0: Edit1->SetFocus(); xue@0: } xue@0: //---------------------------------------------------------------------------