//--------------------------------------------------------------------------- #ifndef SFXViewerH #define SFXViewerH #include //--------------------------------------------------------------------------- class TViewerSFX { public: __fastcall TViewerSFX(); __fastcall ~TViewerSFX(); void __fastcall ViewSFXImage(TImage *Image, String PathName, int X, int Y, int count); void __fastcall Stop(); void __fastcall Enabled(bool stan); private: void __fastcall TimerTimer(TObject *Sender); int a, b; int t, top, left; int Count; Graphics::TBitmap *bmp; Graphics::TBitmap *tmp; Graphics::TBitmap *tlo; String path; bool BStart; TTimer *Timer; TImage *Image1; }; //--------------------------------------------------------------------------- #endif