Unit1.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.ComCtrls.hpp>
  10. #include <Vcl.Dialogs.hpp>
  11. #include <Vcl.ExtCtrls.hpp>
  12. #include <Vcl.ExtDlgs.hpp>
  13. #include "GLS.BaseClasses.hpp"
  14. #include "GLS.Coordinates.hpp"
  15. #include "GLS.Material.hpp"
  16. #include "GLS.Objects.hpp"
  17. #include "GLS.Scene.hpp"
  18. #include "GLS.SceneViewer.hpp"
  19. #include "Jpeg.hpp"
  20. //---------------------------------------------------------------------------
  21. class TForm1 : public TForm
  22. {
  23. __published: // IDE-managed Components
  24. TImage *Image1;
  25. TImage *Image2;
  26. TLabel *Label1;
  27. TLabel *Label2;
  28. TLabel *Label3;
  29. TLabel *Label4;
  30. TGLSceneViewer *GLSceneViewer1;
  31. TTrackBar *TrackBar1;
  32. TCheckBox *CBClampTex2;
  33. TGLScene *GLScene1;
  34. TGLPlane *Plane1;
  35. TGLCamera *GLCamera1;
  36. TGLMaterialLibrary *GLMaterialLibrary1;
  37. TOpenPictureDialog *OpenPictureDialog1;
  38. void __fastcall FormCreate(TObject *Sender);
  39. void __fastcall Image1Click(TObject *Sender);
  40. void __fastcall Image2Click(TObject *Sender);
  41. void __fastcall TrackBar1Change(TObject *Sender);
  42. private: // User declarations
  43. public: // User declarations
  44. __fastcall TForm1(TComponent* Owner);
  45. };
  46. //---------------------------------------------------------------------------
  47. extern PACKAGE TForm1 *Form1;
  48. //---------------------------------------------------------------------------
  49. #endif