//--------------------------------------------------------------------------- #ifndef DemoBasicAboutH #define DemoBasicAboutH //--------------------------------------------------------------------------- #include #include #include #include #include "cxButtons.hpp" #include "cxLookAndFeelPainters.hpp" #include #include #include //--------------------------------------------------------------------------- class TDemoBasicAboutForm : public TForm { __published: // IDE-managed Components TImage *imgIcon; TLabel *lbCopyright; TBevel *bvBottom; TLabel *lbCompanyName; TRichEdit *reDemoInfo; TcxButton *btnOK; TLabel *lmoName; void __fastcall btnOKClick(TObject &Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall FormDestroy(TObject *Sender); private: // User declarations public: // User declarations __fastcall TDemoBasicAboutForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TDemoBasicAboutForm *DemoBasicAboutForm; //--------------------------------------------------------------------------- #endif