41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#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
|