Animate.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef AnimateH
  3. #define AnimateH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TShape *Shape1;
  15.         TTimer *Timer1;
  16.         void __fastcall Timer1Timer(TObject *Sender);
  17.         void __fastcall FormCreate(TObject *Sender);
  18.         void __fastcall Shape1MouseDown(TObject *Sender,
  19.           TMouseButton Button, TShiftState Shift, int X, int Y);
  20. private: // User declarations
  21. public: // User declarations
  22.         __fastcall TForm1(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TForm1 *Form1;
  26. //---------------------------------------------------------------------------
  27. #endif