45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef CustomerSettingFormUnitH
|
|
#define CustomerSettingFormUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <System.Classes.hpp>
|
|
#include <Vcl.Controls.hpp>
|
|
#include <Vcl.StdCtrls.hpp>
|
|
#include <Vcl.Forms.hpp>
|
|
#include <Vcl.ExtCtrls.hpp>
|
|
#include "CustomerSettingPanelUnit.h"
|
|
#include "PNGButton.hpp"
|
|
#include <Vcl.Imaging.jpeg.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TCustomerSettingForm : public TForm
|
|
{
|
|
|
|
__published: // IDE-managed Components
|
|
TPNGButton *m_pTextButtonOK;
|
|
TPNGButton *m_pTextButtonCancel;
|
|
TPNGButton *m_PNGButtonClose;
|
|
TImage *m_pImageBKG;
|
|
TLabel *m_pLabelTitle;
|
|
void __fastcall FormShow(TObject *Sender);
|
|
|
|
private: // User declarations
|
|
|
|
void __fastcall WMNCHitTest(TWMNCHitTest &Msg);
|
|
|
|
BEGIN_MESSAGE_MAP
|
|
MESSAGE_HANDLER(WM_NCHITTEST, TWMNCHitTest, WMNCHitTest)
|
|
END_MESSAGE_MAP( TForm )
|
|
|
|
public: // User declarations
|
|
TCustmerSettingPanel *m_pCSPanel;
|
|
|
|
__fastcall TCustomerSettingForm(TComponent* Owner);
|
|
__fastcall ~TCustomerSettingForm();
|
|
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TCustomerSettingForm *CustomerSettingForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|