📄 scx3_main_unit.h
字号:
//---------------------------------------------------------------------------
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -