123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <System.Classes.hpp>
- #include <Vcl.Controls.hpp>
- #include <Vcl.StdCtrls.hpp>
- #include <Vcl.Forms.hpp>
- #include <Vcl.ComCtrls.hpp>
- #include <Vcl.Dialogs.hpp>
- #include <Vcl.ExtCtrls.hpp>
- #include <Vcl.ExtDlgs.hpp>
- #include "GLBaseClasses.hpp"
- #include "GLCoordinates.hpp"
- #include "GLCrossPlatform.hpp"
- #include "GLMaterial.hpp"
- #include "GLObjects.hpp"
- #include "GLScene.hpp"
- #include "GLWin32Viewer.hpp"
- #include "Jpeg.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TImage *Image1;
- TImage *Image2;
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TGLSceneViewer *GLSceneViewer1;
- TTrackBar *TrackBar1;
- TCheckBox *CBClampTex2;
- TGLScene *GLScene1;
- TGLPlane *Plane1;
- TGLCamera *GLCamera1;
- TGLMaterialLibrary *GLMaterialLibrary1;
- TOpenPictureDialog *OpenPictureDialog1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall Image1Click(TObject *Sender);
- void __fastcall Image2Click(TObject *Sender);
- void __fastcall TrackBar1Change(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|