comparison BackUpTool.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 BackUpToolH
15 #define BackUpToolH
16 //---------------------------------------------------------------------------
17 /*
18 BackUpTool.cpp implements a GUI for backing-up the source code of HV
19 project using winrar.exe.
20 */
21 #include <Classes.hpp>
22 #include <Controls.hpp>
23 #include <StdCtrls.hpp>
24 #include <Forms.hpp>
25 #include <Dialogs.hpp>
26 //---------------------------------------------------------------------------
27 class TBackupForm1 : public TForm
28 {
29 __published: // IDE-managed Components
30 TButton *Button1;
31 TEdit *Edit1;
32 TButton *Button2;
33 TLabel *Label1;
34 TLabel *Label2;
35 TButton *Button3;
36 TEdit *Edit2;
37 TOpenDialog *OpenDialog1;
38 TMemo *Memo1;
39 TLabel *Label3;
40 TEdit *Edit3;
41 TButton *Button4;
42 void __fastcall Button1Click(TObject *Sender);
43 void __fastcall Button2Click(TObject *Sender);
44 void __fastcall Button3Click(TObject *Sender);
45 void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
46 void __fastcall Button4Click(TObject *Sender);
47 private: // User declarations
48 AnsiString ExtText;
49 public: // User declarations
50 __fastcall TBackupForm1(TComponent* Owner);
51 };
52 //---------------------------------------------------------------------------
53 extern PACKAGE TBackupForm1 *BackupForm1;
54 //---------------------------------------------------------------------------
55 #endif