comparison UnitRangeEdit.h @ 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 #ifndef UnitRangeEditH
15 #define UnitRangeEditH
16 //---------------------------------------------------------------------------
17 /*
18 UnitRangeEdit implements the time and frequency range input box of HV.
19 */
20 #include <Classes.hpp>
21 #include <Controls.hpp>
22 #include <StdCtrls.hpp>
23 #include <Forms.hpp>
24 #include <Buttons.hpp>
25 //---------------------------------------------------------------------------
26 class TRangeEdit : public TForm
27 {
28 __published: // IDE-managed Components
29 TEdit *Edit1;
30 TEdit *Edit2;
31 TLabel *Label1;
32 TLabel *Label2;
33 TBitBtn *BitBtn1;
34 TBitBtn *BitBtn2;
35 void __fastcall FormShow(TObject *Sender);
36 private: // User declarations
37 public: // User declarations
38 __fastcall TRangeEdit(TComponent* Owner);
39 };
40 //---------------------------------------------------------------------------
41 extern PACKAGE TRangeEdit *RangeEdit;
42 //---------------------------------------------------------------------------
43 #endif