12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <ComCtrls.hpp>
- #include "GLScene.hpp"
- #include "GLWin32Viewer.hpp"
- #include "GLObjects.hpp"
- #include "GLVectorFileObjects.hpp"
- #include "GLBaseClasses.hpp"
- #include "GLCoordinates.hpp"
- #include "GLCrossPlatform.hpp"
- #include "GLFileNURBS.hpp"
- //---------------------------------------------------------------------------
- class TForm1:public TForm
- {
- __published: // IDE-managed Components
- TPanel * Panel1;
- TTrackBar *TrackBar1;
- TLabel *Label1;
- TGLSceneViewer *GLSceneViewer1;
- TGLScene *GLScene1;
- TGLDummyCube *GLDummyCube1;
- TGLCamera *GLCamera1;
- TGLLightSource *GLLightSource1;
- TGLActor *GLActor1;
- TCheckBox *CheckBox1;
- void __fastcall GLSceneViewer1MouseDown(TObject * Sender, TMouseButton Button,
- TShiftState Shift, int X, int Y);
- void __fastcall TrackBar1Change(TObject * Sender);
- void __fastcall CheckBox1Click(TObject * Sender);
- void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
- int Y);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent * Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|