blob: dba1e590455864ed614901546ef4e8706c56079a (
plain) (
tree)
|
|
//---------------------------------------------------------------------------
#ifndef cipherfrmH
#define cipherfrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <string>
//---------------------------------------------------------------------------
class TCipherForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TPanel *Panel2;
TPanel *Panel3;
TLabel *Label1;
TLabel *Label2;
TEdit *cipherEdit;
TMemo *Memo1;
TButton *Button1;
TButton *Button2;
TButton *Button3;
void __fastcall Button2Click(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
std::string confFile;
std::string modName;
__fastcall TCipherForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TCipherForm *CipherForm;
//---------------------------------------------------------------------------
#endif
|