//--------------------------------------------------------------------------- #ifndef DemoBasicAboutH #define DemoBasicAboutH //--------------------------------------------------------------------------- #include #include #include #include #include "cxButtons.hpp" #include "cxContainer.hpp" #include "cxControls.hpp" #include "cxEdit.hpp" #include "cxImage.hpp" #include "cxLookAndFeelPainters.hpp" #include #include #include //--------------------------------------------------------------------------- class TDemoBasicAboutForm : public TForm { __published: // IDE-managed Components TLabel *lbDemoName; TLabel *lbCopyright; TBevel *bvBottom; TLabel *lbCompanyName; TRichEdit *reDemoInfo; TcxButton *btnOK; TcxImage *cxImage; 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