//---------------------------------------------------------------------------- #ifndef ANIMATIONDLG #define ANIMATIONDLG //---------------------------------------------------------------------------- #include #include #include #include #include #include #include #include #include #include //---------------------------------------------------------------------------- class TCtrAnimationDlg : public TForm { __published: TButton *OKBtn; TButton *CancelBtn; TLabel *Label1; TLabel *Label2; TListBox *SourceImageLstBox; TListBox *AnimationImageLstBox; TButton *AddBtn; TButton *RemoveBtn; void __fastcall OnShow(TObject *Sender); void __fastcall AddBtnClick(TObject *Sender); void __fastcall RemoveBtnClick(TObject *Sender); void __fastcall OKBtnClick(TObject *Sender); private: public: virtual __fastcall TCtrAnimationDlg(TComponent* AOwner); LBitmapList m_BitmapList; }; //---------------------------------------------------------------------------- extern PACKAGE TCtrAnimationDlg *CtrAnimationDlg; //---------------------------------------------------------------------------- #endif