//--------------------------------------------------------------------------- #ifndef FrmSysFH #define FrmSysFH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- #include "ITSLogF.h" #include "AppGlobalF.h" //--------------------------------------------------------------------------- class TFrmSys : public TForm { __published: // IDE-managed Components TPanel *pnlRight; TPanel *plServerInfo; TImage *Image3; TPanel *plLog; TRichEdit *reMsg1; TMemo *reMsg; TCheckBox *chkLogPause; TButton *btnClear; TButton *btnCopy; void __fastcall btnClearClick(TObject *Sender); void __fastcall btnCopyClick(TObject *Sender); private: // User declarations public: void __fastcall UpdateSystemInfo(); public: // User declarations __fastcall TFrmSys(TComponent* Owner); void __fastcall OnWMLogDisplayMessage(TMessage &Msg); BEGIN_MESSAGE_MAP MESSAGE_HANDLER(WM_LOG_DISPLAY, TMessage, OnWMLogDisplayMessage) END_MESSAGE_MAP(TForm) }; //--------------------------------------------------------------------------- extern PACKAGE TFrmSys *FrmSys; //--------------------------------------------------------------------------- #endif