Initial commit

This commit is contained in:
2026-06-13 00:05:19 +08:00
commit 754cd7ccdb
402 changed files with 123771 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
//---------------------------------------------------------------------------
#ifndef CustomerSettingFormUnitH
#define CustomerSettingFormUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "GeneralDialogPanel.h"
#include <Vcl.ExtCtrls.hpp>
#include "CustomerSettingPanelUnit.h"
#include "TextButton.h"
//---------------------------------------------------------------------------
class TCustomerSettingForm : public TForm
{
__published: // IDE-managed Components
TGeneralDialogPanel *m_pBKGGeneralDialogPanel;
TTextButton *m_pTextButtonOK;
TTextButton *m_pTextButtonCancel;
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public: // User declarations
TCustmerSettingPanel *m_pCSPanel;
bool m_bAlphaKeyOrig;
int m_iSegColorOrig;
__fastcall TCustomerSettingForm(TComponent* Owner);
__fastcall ~TCustomerSettingForm();
};
//---------------------------------------------------------------------------
extern PACKAGE TCustomerSettingForm *CustomerSettingForm;
//---------------------------------------------------------------------------
#endif