Unit1.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 <Vcl.ExtCtrls.hpp>
  10. #include <Vcl.Grids.hpp>
  11. #include "GLScene.hpp"
  12. #include "GLBaseClasses.hpp"
  13. #include "GLCadencer.hpp"
  14. #include "GLCoordinates.hpp"
  15. #include "GLCrossPlatform.hpp"
  16. #include "GLMaterial.hpp"
  17. #include "GLObjects.hpp"
  18. #include "GLPortal.hpp"
  19. #include "GLVectorFileObjects.hpp"
  20. #include "GLWin32Viewer.hpp"
  21. #include "GLKeyboard.hpp"
  22. #include "JPeg.hpp"
  23. //---------------------------------------------------------------------------
  24. class TForm1 : public TForm
  25. {
  26. __published: // IDE-managed Components
  27. TLabel *Label1;
  28. TLabel *Label2;
  29. TLabel *Label3;
  30. TGLSceneViewer *GLSceneViewer1;
  31. TButton *BUForward;
  32. TButton *BUTurnLeft;
  33. TButton *BUTurnRight;
  34. TButton *BUBackward;
  35. TStringGrid *SGMap;
  36. TButton *BBProcess;
  37. TCheckBox *CBAuto;
  38. TCheckBox *CBFog;
  39. TGLScene *GLScene1;
  40. TGLLightSource *GLLightSource1;
  41. TGLDummyCube *DummyCube1;
  42. TGLCamera *GLCamera1;
  43. TGLPortal *Portal1;
  44. TGLMaterialLibrary *GLMaterialLibrary1;
  45. TTimer *Timer1;
  46. TGLCadencer *GLCadencer1;
  47. void __fastcall FormCreate(TObject *Sender);
  48. void __fastcall BBProcessClick(TObject *Sender);
  49. private: // User declarations
  50. int portalCount, triangleCount;
  51. public: // User declarations
  52. __published:
  53. __fastcall TForm1(TComponent* Owner);
  54. };
  55. //---------------------------------------------------------------------------
  56. extern PACKAGE TForm1 *Form1;
  57. //---------------------------------------------------------------------------
  58. #endif