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