view 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
line wrap: on
line source
/*
    Harmonic Visualiser

    An audio file viewer and editor.
    Centre for Digital Music, Queen Mary, University of London.
    This file copyright 2011 Wen Xue.

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
    published by the Free Software Foundation; either version 2 of the
    License, or (at your option) any later version. 
*/
//---------------------------------------------------------------------------
#ifndef BackUpToolH
#define BackUpToolH
//---------------------------------------------------------------------------
/*
  BackUpTool.cpp implements a GUI for backing-up the source code of HV
    project using winrar.exe.
*/
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TBackupForm1 : public TForm
{
__published:	// IDE-managed Components
  TButton *Button1;
  TEdit *Edit1;
  TButton *Button2;
  TLabel *Label1;
  TLabel *Label2;
  TButton *Button3;
  TEdit *Edit2;
  TOpenDialog *OpenDialog1;
  TMemo *Memo1;
	TLabel *Label3;
	TEdit *Edit3;
	TButton *Button4;
  void __fastcall Button1Click(TObject *Sender);
  void __fastcall Button2Click(TObject *Sender);
  void __fastcall Button3Click(TObject *Sender);
  void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
	void __fastcall Button4Click(TObject *Sender);
private:	// User declarations
  AnsiString ExtText;
public:		// User declarations
  __fastcall TBackupForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TBackupForm1 *BackupForm1;
//---------------------------------------------------------------------------
#endif