//--------------------------------------------------------------------------- #ifndef AboutFormUnitH #define AboutFormUnitH //--------------------------------------------------------------------------- #include #include #include #include #include "PNGButton.hpp" #include #include //--------------------------------------------------------------------------- class TAboutForm : public TForm { __published: // IDE-managed Components TImage *m_imgBkgrnd; TLabel *m_lblVersion; TLabel *m_lblTitle; TLabel *m_lblURL; TPNGButton *m_btnClose; TLabel *m_lblStyleNums; TLabel *m_lblType; void __fastcall FormCreate(TObject *Sender); void __fastcall URLClick(TObject *Sender); void __fastcall FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift); private: // User declarations void __fastcall WMNCHitTest(TWMNCHitTest &Msg); BEGIN_MESSAGE_MAP MESSAGE_HANDLER(WM_NCHITTEST, TWMNCHitTest, WMNCHitTest) END_MESSAGE_MAP(TForm) public: // User declarations __fastcall TAboutForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TAboutForm *AboutForm; //--------------------------------------------------------------------------- #endif