46 lines
1.5 KiB
C++
46 lines
1.5 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef PayMentFormUnitH
|
|
#define PayMentFormUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <System.Classes.hpp>
|
|
#include <Vcl.Controls.hpp>
|
|
#include <Vcl.StdCtrls.hpp>
|
|
#include <Vcl.Forms.hpp>
|
|
#include <Vcl.ExtCtrls.hpp>
|
|
#include "PayMentPanelUnit.h"
|
|
#include "PNGButton.hpp"
|
|
#include <Vcl.Imaging.jpeg.hpp>
|
|
//---------------------------------------------------------------------------
|
|
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
|