Unit1.h
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:2k
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <vclClasses.hpp>
- #include <vclControls.hpp>
- #include <vclStdCtrls.hpp>
- #include <vclForms.hpp>
- #include <vclExtCtrls.hpp>
- #include <vclOleCtnrs.hpp>
- #include "RVEdit.hpp"
- #include "RichView.hpp"
- #include "RVScroll.hpp"
- #include <vclDialogs.hpp>
- #include "RVStyle.hpp"
- #include "RVMisc.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TButton *bnnOpen;
- TButton *btnFind;
- TButton *btnReplace;
- TRichViewEdit *rve;
- TOpenDialog *OpenDialog1;
- TRVStyle *RVStyle1;
- TImageList *il;
- TFindDialog *fd;
- TReplaceDialog *rd;
- void __fastcall btnReplaceClick(TObject *Sender);
- void __fastcall rdFind(TObject *Sender);
- void __fastcall rdReplace(TObject *Sender);
- void __fastcall btnFindClick(TObject *Sender);
- void __fastcall fdFind(TObject *Sender);
- void __fastcall rveRVFImageListNeeded(TCustomRichView *Sender,
- int ImageListTag, TCustomImageList *&il);
- void __fastcall bnnOpenClick(TObject *Sender);
- void __fastcall FormCreate(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif