addfiles.h

来自「zip算法的源码」· C头文件 代码 · 共 60 行

H
60
字号
#ifndef AddFilesH
#define AddFilesH

//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <ExtCtrls.hpp>
#include <StdCtrls.hpp>
#include <FileCtrl.hpp>

#include "ZipBuilder.h"

#include "Main5.h"

//---------------------------------------------------------------------------
class TAddFilesForm : public TForm {
	__published:		// IDE-managed Components
		TButton				*AddFileBut;
		TButton				*RemoveBut;
		TButton				*OKBut;
		TButton				*CancelBut;
		TButton				*SortBut;
		TButton				*SelectAllBut;
		TButton				*AddDirBut;
		TLabel				*Label1;
		TPanel				*Panel1;
		TPanel				*Panel2;
		TPanel				*Panel3;
		TPanel				*Panel4;
		TPanel				*Panel5;
		TPanel				*Panel6;
		TPanel				*Panel7;
		TPanel				*Panel8;
		TListBox				*SelectedList;
		TDriveComboBox		*DriveComboBox1;
		TFileListBox		*FileListBox1;
		TDirectoryListBox	*DirectoryListBox1;
		void __fastcall OKButClick( TObject *Sender );
		void __fastcall SortButClick( TObject *Sender );
		void __fastcall AddDirButClick( TObject *Sender );
		void __fastcall RemoveButClick( TObject *Sender );
		void __fastcall CancelButClick( TObject *Sender );
		void __fastcall AddFileButClick( TObject *Sender );
		void __fastcall SelectAllButClick( TObject *Sender );

	public:			// User declarations
		__fastcall TAddFilesForm( TComponent *Owner );
  private:
    bool InMouseClick;
};

//---------------------------------------------------------------------------
extern PACKAGE TAddFilesForm *AddFilesForm;

extern bool InMouseClick;
extern bool Cancelled;

#endif

⌨️ 快捷键说明

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