decryptformfile.h

来自「可以使用硬件指纹作为密钥加密文件」· C头文件 代码 · 共 81 行

H
81
字号
//---------------------------------------------------------------------------

#ifndef DecryptFormFileH
#define DecryptFormFileH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "XPMenu.hpp"
#include <Buttons.hpp>
#include "PascalFunctions.hpp"
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
#include "DiskInfo.hpp"
#include "Compress_LH5.hpp"
#include "Explform.hpp"
#include <Menus.hpp>
#include <Dialogs.hpp>
#include <ADODB.hpp>
#include <DB.hpp>
//---------------------------------------------------------------------------
class TDecryptForm : public TForm
{
__published:	// IDE-managed Components
        TStatusBar *StatusBar;
        TGroupBox *GroupBox2;
        TLabel *Label3;
        TEdit *Password;
        TDiskInfo *DiskInfo;
        TExplodeForm *ExplodeForm1;
        TXPMenu *XPMenu;
        TOpenDialog *OpenDialog;
        TGroupBox *GroupBox1;
        TBevel *Bevel2;
        TSpeedButton *AddFile;
        TSpeedButton *DeleteSel;
        TSpeedButton *DeleteAll;
        TListBox *FileList;
        TGroupBox *GroupBox3;
        TSpeedButton *ReadCDInfo;
        TADOTable *ADOTable;
        TPanel *Panel1;
        TBevel *Bevel1;
        TSpeedButton *EncryptFile;
        TSpeedButton *StartDecrypt;
        TSpeedButton *OpenAbout;
        TSpeedButton *AddShell;
        TSpeedButton *ViewHelp;
        TSpeedButton *SetupAllDelete;
        TBevel *Bevel7;
        TSpeedButton *Exit;
        TBevel *Bevel6;
        void __fastcall EncryptFileClick(TObject *Sender);
        void __fastcall StartDecryptClick(TObject *Sender);
        void __fastcall OpenAboutClick(TObject *Sender);
        void __fastcall AddShellClick(TObject *Sender);
        void __fastcall DeleteAllClick(TObject *Sender);
        void __fastcall DeleteSelClick(TObject *Sender);
        void __fastcall PasswordKeyPress(TObject *Sender, char &Key);
        void __fastcall AddFileClick(TObject *Sender);
        void __fastcall FormActivate(TObject *Sender);
        void __fastcall ReadCDInfoClick(TObject *Sender);
        void __fastcall ViewHelpClick(TObject *Sender);
        void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
        void __fastcall SetupAllDeleteClick(TObject *Sender);
        void __fastcall ExitClick(TObject *Sender);
private:	// User declarations
  void virtual __fastcall WMDropFiles (TWMDropFiles &message);
public:		// User declarations
        __fastcall TDecryptForm(TComponent* Owner);
         void __fastcall ShowHint(TObject * Sender);
        BEGIN_MESSAGE_MAP
MESSAGE_HANDLER(WM_DROPFILES,TWMDropFiles,WMDropFiles)
END_MESSAGE_MAP (TForm) ;
};
//---------------------------------------------------------------------------
extern PACKAGE TDecryptForm *DecryptForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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