//--------------------------------------------------------------------------- #ifndef PayMentFormUnitH #define PayMentFormUnitH //--------------------------------------------------------------------------- #include #include #include #include #include #include "PayMentPanelUnit.h" #include "PNGButton.hpp" #include //--------------------------------------------------------------------------- class TPayMentForm : public TForm { __published: // IDE-managed Components TPNGButton *m_pTextButtonOK; TPNGButton *m_pTextButtonCancel; TPNGButton *m_PNGButtonClose; TImage *m_pImageBKG; TLabel *m_pLabelTittle; TLabel *m_pLabelBlance; void __fastcall FormShow(TObject *Sender); private: // User declarations TPayMentPanel *m_pPayMentPanel; TUrlLabel *m_lbVip; TUrlLabel *m_pLabelMessage; void __fastcall WMNCHitTest(TWMNCHitTest &Msg); BEGIN_MESSAGE_MAP MESSAGE_HANDLER(WM_NCHITTEST, TWMNCHitTest, WMNCHitTest) END_MESSAGE_MAP( TForm ) public: // User declarations __fastcall TPayMentForm(TComponent* Owner, int iOperation, int nIdCount, UINT *aIdStyle, int *aStyleCost, int nCost, int nBalance); __fastcall ~TPayMentForm(); }; //--------------------------------------------------------------------------- extern PACKAGE TPayMentForm *PayMentForm; //--------------------------------------------------------------------------- #endif