//--------------------------------------------------------------------------- #ifndef CustomerSettingFormUnitH #define CustomerSettingFormUnitH //--------------------------------------------------------------------------- #include #include #include #include #include "GeneralDialogPanel.h" #include #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