Unit1.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLBaseClasses.hpp"
  10. #include "GLCoordinates.hpp"
  11. #include "GLCrossPlatform.hpp"
  12. #include "GLObjects.hpp"
  13. #include "GLScene.hpp"
  14. #include "GLVectorFileObjects.hpp"
  15. #include "GLWin32Viewer.hpp"
  16. #include <Vcl.ComCtrls.hpp>
  17. #include <Vcl.ExtCtrls.hpp>
  18. //---------------------------------------------------------------------------
  19. class TForm1 : public TForm
  20. {
  21. __published: // IDE-managed Components
  22. TGLSceneViewer *GLSceneViewer1;
  23. TTrackBar *TrackBar1;
  24. TPanel *Panel1;
  25. TLabel *Label1;
  26. TLabel *Label2;
  27. TLabel *Label3;
  28. TGLScene *GLScene1;
  29. TGLDummyCube *DummyCube3;
  30. TGLFreeForm *FreeForm3;
  31. TGLDummyCube *DummyCube2;
  32. TGLFreeForm *FreeForm2;
  33. TGLDummyCube *DummyCube1;
  34. TGLFreeForm *FreeForm1;
  35. TGLLightSource *GLLightSource1;
  36. TGLDummyCube *DCCamera;
  37. TGLCamera *GLCamera1;
  38. void __fastcall FormCreate(TObject *Sender);
  39. void __fastcall TrackBar1Change(TObject *Sender);
  40. private: // User declarations
  41. public: // User declarations
  42. __fastcall TForm1(TComponent* Owner);
  43. };
  44. //---------------------------------------------------------------------------
  45. extern PACKAGE TForm1 *Form1;
  46. //---------------------------------------------------------------------------
  47. #endif