123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include "GLS.BaseClasses.hpp"
- #include "GLS.Cadencer.hpp"
- #include "GLS.Coordinates.hpp"
- #include "GLS.Extrusion.hpp"
- #include "GLS.FireFX.hpp"
- #include "GLS.GeomObjects.hpp"
- #include "GLS.Objects.hpp"
- #include "GLS.Scene.hpp"
- #include "GLS.SceneViewer.hpp"
- #include <Vcl.ComCtrls.hpp>
- #include <Vcl.ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TGLSceneViewer *GLSceneViewer1;
- TTrackBar *TrackBar1;
- TGLScene *GLScene1;
- TGLLightSource *GLLightSource1;
- TGLDummyCube *DummyCube1;
- TGLRevolutionSolid *RevolutionSolid1;
- TGLCylinder *Candle;
- TGLLines *Lines1;
- TGLDummyCube *DummyCube2;
- TGLPlane *Plane1;
- TGLProxyObject *GLProxyObject1;
- TGLProxyObject *GLProxyObject2;
- TGLCamera *GLCamera1;
- TGLFireFXManager *GLFireFXManager1;
- TGLCadencer *GLCadencer1;
- TTimer *Timer1;
- void __fastcall FormResize(TObject *Sender);
- void __fastcall GLSceneViewer1MouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
- int X, int Y);
- void __fastcall TrackBar1Change(TObject *Sender);
- void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
- int Y);
- void __fastcall Timer1Timer(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|