//--------------------------------------------------------------------------- #ifndef InfoFrmH #define InfoFrmH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- class TInfoForm : public TForm { __published: // IDE-managed Components TPanel *Panel1; TPanel *Panel2; TRichEdit *InfoText; TSpeedButton *SpeedButton1; void __fastcall FormShow(TObject *Sender); void __fastcall SpeedButton1Click(TObject *Sender); private: // User declarations public: // User declarations sword::SWBuf info; __fastcall TInfoForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TInfoForm *InfoForm; //--------------------------------------------------------------------------- #endif