12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #include <tchar.h>
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include "GLBaseClasses.hpp"
- #include "GLCadencer.hpp"
- #include "GLCoordinates.hpp"
- #include "GLCrossPlatform.hpp"
- #include "GLObjects.hpp"
- #include "GLScene.hpp"
- #include "GLWin32Viewer.hpp"
- #include <Vcl.ComCtrls.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TGLSceneViewer *GLSceneViewer1;
- TTrackBar *TrackBar;
- TCheckBox *CBPlay;
- TGLScene *GLScene1;
- TGLCube *Cube1;
- TGLDummyCube *DummyCube1;
- TGLCube *Cube2;
- TGLDummyCube *DummyCube2;
- TGLCube *Cube3;
- TGLLightSource *GLLightSource1;
- TGLCamera *GLCamera1;
- TGLCadencer *GLCadencer1;
- void __fastcall TrackBarChange(TObject *Sender);
- void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
- void __fastcall FormResize(TObject *Sender);
- void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|