Unit1.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <ComCtrls.hpp>
  11. #include "GLScene.hpp"
  12. #include "GLWin32Viewer.hpp"
  13. #include "GLObjects.hpp"
  14. #include "GLVectorFileObjects.hpp"
  15. #include "GLBaseClasses.hpp"
  16. #include "GLCoordinates.hpp"
  17. #include "GLCrossPlatform.hpp"
  18. #include "GLFileNURBS.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1:public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TPanel * Panel1;
  24. TTrackBar *TrackBar1;
  25. TLabel *Label1;
  26. TGLSceneViewer *GLSceneViewer1;
  27. TGLScene *GLScene1;
  28. TGLDummyCube *GLDummyCube1;
  29. TGLCamera *GLCamera1;
  30. TGLLightSource *GLLightSource1;
  31. TGLActor *GLActor1;
  32. TCheckBox *CheckBox1;
  33. void __fastcall GLSceneViewer1MouseDown(TObject * Sender, TMouseButton Button,
  34. TShiftState Shift, int X, int Y);
  35. void __fastcall TrackBar1Change(TObject * Sender);
  36. void __fastcall CheckBox1Click(TObject * Sender);
  37. void __fastcall GLSceneViewer1MouseMove(TObject *Sender, TShiftState Shift, int X,
  38. int Y);
  39. private: // User declarations
  40. public: // User declarations
  41. __fastcall TForm1(TComponent * Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern PACKAGE TForm1 *Form1;
  45. //---------------------------------------------------------------------------
  46. #endif