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