comparison UnitRangeEdit.cpp @ 0:a6a46af64546

first upload
author wenx <xue.wen@eecs.qmul.ac.uk>
date Wed, 10 Aug 2011 14:55:38 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a6a46af64546
1 /*
2 Harmonic Visualiser
3
4 An audio file viewer and editor.
5 Centre for Digital Music, Queen Mary, University of London.
6 This file copyright 2011 Wen Xue.
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version.
12 */
13 //---------------------------------------------------------------------------
14
15 #include <vcl.h>
16 #pragma hdrstop
17
18 #include "UnitRangeEdit.h"
19 //---------------------------------------------------------------------------
20 #pragma package(smart_init)
21 #pragma resource "*.dfm"
22 TRangeEdit *RangeEdit;
23 //---------------------------------------------------------------------------
24 __fastcall TRangeEdit::TRangeEdit(TComponent* Owner)
25 : TForm(Owner)
26 {
27 }
28 //---------------------------------------------------------------------------
29 void __fastcall TRangeEdit::FormShow(TObject *Sender)
30 {
31 Edit1->SetFocus();
32 }
33 //---------------------------------------------------------------------------