scx3_main_unit.h

来自「This file contains a C++Builder 4 projec」· C头文件 代码 · 共 56 行

H
56
字号
//---------------------------------------------------------------------------
#ifndef SCX3_main_unitH
#define SCX3_main_unitH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Dialogs.hpp>
#include <ComCtrls.hpp>
#include <Buttons.hpp>
#include "CGAUGES.h"
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published:	// IDE-managed Components
  TOpenDialog *odOpening;
  TSaveDialog *sdSaving;
  TEdit *edResultPath;
  TEdit *edPassphrase;
  TEdit *edSourcePath;
  TRadioButton *rbEncrypt;
  TRadioButton *rbDecrypt;
  TStatusBar *sbStatus;
  TCheckBox *cbDeletion;
  TLabel *Label1;
  TLabel *Label2;
  TLabel *Label3;
  TSpeedButton *btnGetSourcePath;
  TSpeedButton *btnSetResultPath;
  TSpeedButton *btnEngage;
        TSpeedButton *btnExit;
        TCGauge *Gauge;
  void __fastcall ButtonClick(TObject *Sender);
  void __fastcall EditBoxChange(TObject *Sender);
  void __fastcall rbEncryptClick(TObject *Sender);
private:	// User declarations
public:		// User declarations
  __fastcall TMainForm(TComponent* Owner);
  void __fastcall InitiateKeyMatrice(void);
  void __fastcall Encryption(void);
  void __fastcall Decryption(void);
  void __fastcall DestroyPassphrase(void);
  void __fastcall SignFile(int &Cipher);
  bool __fastcall VerifySignature(int &Cipher, int &SigLength);
};




//---------------------------------------------------------------------------
extern PACKAGE TMainForm *MainForm;
//extern PACKAGE TChaosFunction *CF1;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?