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: #ifndef BackUpToolH xue@0: #define BackUpToolH xue@0: //--------------------------------------------------------------------------- xue@0: /* xue@0: BackUpTool.cpp implements a GUI for backing-up the source code of HV xue@0: project using winrar.exe. xue@0: */ xue@0: #include xue@0: #include xue@0: #include xue@0: #include xue@0: #include xue@0: //--------------------------------------------------------------------------- xue@0: class TBackupForm1 : public TForm xue@0: { xue@0: __published: // IDE-managed Components xue@0: TButton *Button1; xue@0: TEdit *Edit1; xue@0: TButton *Button2; xue@0: TLabel *Label1; xue@0: TLabel *Label2; xue@0: TButton *Button3; xue@0: TEdit *Edit2; xue@0: TOpenDialog *OpenDialog1; xue@0: TMemo *Memo1; xue@0: TLabel *Label3; xue@0: TEdit *Edit3; xue@0: TButton *Button4; xue@0: void __fastcall Button1Click(TObject *Sender); xue@0: void __fastcall Button2Click(TObject *Sender); xue@0: void __fastcall Button3Click(TObject *Sender); xue@0: void __fastcall FormClose(TObject *Sender, TCloseAction &Action); xue@0: void __fastcall Button4Click(TObject *Sender); xue@0: private: // User declarations xue@0: AnsiString ExtText; xue@0: public: // User declarations xue@0: __fastcall TBackupForm1(TComponent* Owner); xue@0: }; xue@0: //--------------------------------------------------------------------------- xue@0: extern PACKAGE TBackupForm1 *BackupForm1; xue@0: //--------------------------------------------------------------------------- xue@0: #endif