⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unitcode.h

📁 我写的利用IDEA算法的加密程序
💻 H
字号:
//---------------------------------------------------------------------------

#ifndef UnitCodeH
#define UnitCodeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "SUIForm.hpp"
#include <ExtCtrls.hpp>
#include <FileCtrl.hpp>
#include "SUIButton.hpp"
#include "SUIEdit.hpp"
#include "SUIGroupBox.hpp"
#include "SUIImagePanel.hpp"
#include <Dialogs.hpp>
#include "SUIDlg.hpp"
//---------------------------------------------------------------------------
class TFormCode : public TForm
{
__published:	// IDE-managed Components
    TsuiForm *suiForm1;
    TsuiGroupBox *suiGroupBox1;
    TFileListBox *FileListBox1;
    TDirectoryListBox *DirectoryListBox1;
    TDriveComboBox *DriveComboBox1;
    TLabel *Label1;
    TsuiRadioButton *suiRadioButton1;
    TsuiRadioButton *suiRadioButton2;
    TsuiEdit *suiEdit1;
    TLabel *Label2;
    TsuiButton *suiButton1;
    TLabel *Label3;
    TLabel *Label5;
    TsuiEdit *suiEdit2;
    TsuiEdit *suiEdit3;
    TsuiButton *suiButton2;
    TsuiButton *suiButton3;
    TSaveDialog *SaveDialog1;
    void __fastcall FormCreate(TObject *Sender);
    void __fastcall suiButton1Click(TObject *Sender);
    void __fastcall suiButton3Click(TObject *Sender);
    void __fastcall suiRadioButton2Click(TObject *Sender);
    void __fastcall suiRadioButton1Click(TObject *Sender);
    void __fastcall suiButton2Click(TObject *Sender);
    void __fastcall DirectoryListBox1Click(TObject *Sender);
private:	// User declarations
    int style;
    char *SrcFile, *DesFile, *Passwd;
    bool *FileCode;
public:		// User declarations
    __fastcall TFormCode(TComponent* Owner);
    __fastcall TFormCode(int style, TComponent* Owner, char *SrcFile, char *DesFile, char *Passwd, bool *FileCode);

};
//---------------------------------------------------------------------------
extern PACKAGE TFormCode *FormCode;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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