unitcode.h

来自「我写的利用IDEA算法的加密程序」· C头文件 代码 · 共 61 行

H
61
字号
//---------------------------------------------------------------------------

#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 + =
减小字号Ctrl + -
显示快捷键?