Initial commit

This commit is contained in:
2026-06-13 00:10:11 +08:00
commit 2191c1aed4
535 changed files with 184587 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
//---------------------------------------------------------------------------
#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