Componentes.Terceros.DevExp.../internal/x.36/1/ExpressBars 6/Demos/CBuilder/EBarMDIDemo/EBarMDIDemoChild.h
2008-09-04 11:31:51 +00:00

33 lines
1.4 KiB
C++

//---------------------------------------------------------------------------
#ifndef EBarMDIDemoChildH
#define EBarMDIDemoChildH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
//---------------------------------------------------------------------------
class TEBarMDIDemoChildForm : public TForm
{
__published: // IDE-managed Components
TRichEdit *Editor;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall FormActivate(TObject *Sender);
void __fastcall FormDestroy(TObject *Sender);
void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
void __fastcall EditorMouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y);
private:
AnsiString FFileName;
void __fastcall SetFileName(AnsiString Value);
public:
__fastcall TEBarMDIDemoChildForm(TComponent* Owner);
__property AnsiString FileName = {read = FFileName, write = SetFileName};
};
//---------------------------------------------------------------------------
extern PACKAGE TEBarMDIDemoChildForm *EBarMDIDemoChildForm;
//---------------------------------------------------------------------------
#endif