fcMovements.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //---------------------------------------------------------------------------
  2. #ifndef fcMovementsH
  3. #define fcMovementsH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.ComCtrls.hpp>
  10. #include <Vcl.ExtCtrls.hpp>
  11. #include "fColumnC.h"
  12. #include "fEventsC.h"
  13. #include "fHierarchC.h"
  14. #include "fManualC.h"
  15. #include "fObjmoveC.h"
  16. #include "fPointtoC.h"
  17. #include "fPongC.h"
  18. #include "fSmoothNaviC.h"
  19. #include "fTweeningC.h"
  20. //---------------------------------------------------------------------------
  21. class TFormMovements : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TPanel *PanelLeft;
  25. TTreeView *tvMovements;
  26. TPageControl *PageControl;
  27. TTabSheet *tsMovements;
  28. void __fastcall FormCreate(TObject *Sender);
  29. void __fastcall tvMovementsClick(TObject *Sender);
  30. private: // User declarations
  31. public: // User declarations
  32. __fastcall TFormMovements(TComponent* Owner);
  33. };
  34. //---------------------------------------------------------------------------
  35. extern PACKAGE TFormMovements *FormMovements;
  36. //---------------------------------------------------------------------------
  37. #endif