xue@0
|
1 /*
|
xue@0
|
2 Harmonic Visualiser
|
xue@0
|
3
|
xue@0
|
4 An audio file viewer and editor.
|
xue@0
|
5 Centre for Digital Music, Queen Mary, University of London.
|
xue@0
|
6 This file copyright 2011 Wen Xue.
|
xue@0
|
7
|
xue@0
|
8 This program is free software; you can redistribute it and/or
|
xue@0
|
9 modify it under the terms of the GNU General Public License as
|
xue@0
|
10 published by the Free Software Foundation; either version 2 of the
|
xue@0
|
11 License, or (at your option) any later version.
|
xue@0
|
12 */
|
xue@0
|
13 //---------------------------------------------------------------------------
|
xue@0
|
14 #ifndef BackUpToolH
|
xue@0
|
15 #define BackUpToolH
|
xue@0
|
16 //---------------------------------------------------------------------------
|
xue@0
|
17 /*
|
xue@0
|
18 BackUpTool.cpp implements a GUI for backing-up the source code of HV
|
xue@0
|
19 project using winrar.exe.
|
xue@0
|
20 */
|
xue@0
|
21 #include <Classes.hpp>
|
xue@0
|
22 #include <Controls.hpp>
|
xue@0
|
23 #include <StdCtrls.hpp>
|
xue@0
|
24 #include <Forms.hpp>
|
xue@0
|
25 #include <Dialogs.hpp>
|
xue@0
|
26 //---------------------------------------------------------------------------
|
xue@0
|
27 class TBackupForm1 : public TForm
|
xue@0
|
28 {
|
xue@0
|
29 __published: // IDE-managed Components
|
xue@0
|
30 TButton *Button1;
|
xue@0
|
31 TEdit *Edit1;
|
xue@0
|
32 TButton *Button2;
|
xue@0
|
33 TLabel *Label1;
|
xue@0
|
34 TLabel *Label2;
|
xue@0
|
35 TButton *Button3;
|
xue@0
|
36 TEdit *Edit2;
|
xue@0
|
37 TOpenDialog *OpenDialog1;
|
xue@0
|
38 TMemo *Memo1;
|
xue@0
|
39 TLabel *Label3;
|
xue@0
|
40 TEdit *Edit3;
|
xue@0
|
41 TButton *Button4;
|
xue@0
|
42 void __fastcall Button1Click(TObject *Sender);
|
xue@0
|
43 void __fastcall Button2Click(TObject *Sender);
|
xue@0
|
44 void __fastcall Button3Click(TObject *Sender);
|
xue@0
|
45 void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
xue@0
|
46 void __fastcall Button4Click(TObject *Sender);
|
xue@0
|
47 private: // User declarations
|
xue@0
|
48 AnsiString ExtText;
|
xue@0
|
49 public: // User declarations
|
xue@0
|
50 __fastcall TBackupForm1(TComponent* Owner);
|
xue@0
|
51 };
|
xue@0
|
52 //---------------------------------------------------------------------------
|
xue@0
|
53 extern PACKAGE TBackupForm1 *BackupForm1;
|
xue@0
|
54 //---------------------------------------------------------------------------
|
xue@0
|
55 #endif
|