12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <tchar.h>
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include <Vcl.ExtCtrls.hpp>
- #include "GLS.Scene.hpp"
- #include "GLS.Objects.hpp"
- #include "GLS.Cadencer.hpp"
- #include "GLLensFlare.hpp"
- #include "GLS.SceneViewer.hpp"
- #include "GLS.Texture.hpp"
- #include "GLS.SkyDome.hpp"
- #include "GLS.VectorGeometry.hpp"
- #include "GLAtmosphere.hpp"
- #include "GLS.SimpleNavigation.hpp"
- #include "GLS.Behaviours.hpp"
- #include "JPeg.hpp"
- #include "GLS.Coordinates.hpp"
- #include "GLS.BaseClasses.hpp"
- #include "GLS.Color.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TGLSceneViewer *GLSceneViewer1;
- TPanel *Panel1;
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TButton *Button1;
- TButton *Button4;
- TButton *Button5;
- TButton *Button2;
- TButton *Button3;
- TButton *Button9;
- TButton *Button10;
- TGLScene *GLScene1;
- TGLSkyDome *GLSkyDome1;
- TGLDummyCube *CameraTarget;
- TGLDummyCube *World;
- TGLSphere *Not_a_planet;
- TGLDummyCube *GLDummyCube1;
- TGLSphere *GLSphere1;
- TGLLensFlare *GLLensFlare1;
- TGLLightSource *GLLightSource1;
- TGLCamera *GLCamera1;
- TGLCadencer *GLCadencer1;
- TGLSimpleNavigation *GLSimpleNavigation1;
- TButton *Button8;
- TButton *Button6;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- void __fastcall Button1Click(TObject *Sender);
- void __fastcall Button2Click(TObject *Sender);
- void __fastcall Button3Click(TObject *Sender);
- void __fastcall Button4Click(TObject *Sender);
- void __fastcall Button5Click(TObject *Sender);
- void __fastcall Button6Click(TObject *Sender);
- void __fastcall Button8Click(TObject *Sender);
- void __fastcall Button10Click(TObject *Sender);
- void __fastcall Button9Click(TObject *Sender);
- void __fastcall GLCadencer1Progress(TObject *Sender, const double deltaTime, const double newTime);
- private: // User declarations
- TGLAtmosphere *Atmosphere;
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|