git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@12 7f62d464-2af8-f54e-996c-e91b33f51cbe
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef InfoFrmH
|
|
#define InfoFrmH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ComCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
class TfrmInfo : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TRichEdit *reInfo;
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
|
private: // User declarations
|
|
void LoadFile(const AnsiString FileName);
|
|
public: // User declarations
|
|
__fastcall TfrmInfo(TComponent* Owner);
|
|
|
|
friend void TfrmInfo_View(const String FileName,const String Title);
|
|
|
|
};
|
|
|
|
void TfrmInfo_View(const String FileName,const String Title);
|
|
|
|
//---------------------------------------------------------------------------
|
|
//extern PACKAGE TfrmInfo *frmInfo;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|