//---------------------------------------------------------------------------- #ifndef _ANIMATIOMSTING #define _ANIMATIOMSTING //---------------------------------------------------------------------------- #include #include #include #include #include #include #include #include #include #include //---------------------------------------------------------------------------- class TAnimtionStng : public TForm { __published: TButton *OKBtn; TButton *CancelBtn; TLabel *Label1; TEdit *DelayEdit; TLabel *Label2; TComboBox *DisposalComboBox; TLabel *Label3; TEdit *LeftEdit; TLabel *Label4; TEdit *TopEdit; TCheckBox *ApplyChk; TCheckBox *WaitChk; TCheckBox *TransparentChk; TEdit *TransparentEdit; TButton *ColorBtn; void __fastcall OnShow(TObject *Sender); void __fastcall TransparentChkClick(TObject *Sender); void __fastcall ColorBtnClick(TObject *Sender); void __fastcall DelayEditChange(TObject *Sender); void __fastcall LeftEditChange(TObject *Sender); void __fastcall TopEditChange(TObject *Sender); void __fastcall OKBtnClick(TObject *Sender); private: public: COLORREF m_crTransparent; L_INT m_nDisposalMethod; public: virtual __fastcall TAnimtionStng(TComponent* AOwner); void DisplayColorValue(); }; //---------------------------------------------------------------------------- extern PACKAGE TAnimtionStng *AnimtionStng; //---------------------------------------------------------------------------- #endif