fReflectC.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //---------------------------------------------------------------------------
  2. #ifndef fReflectCH
  3. #define fReflectCH
  4. //---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include "GLS.CgShader.hpp"
  10. #include "GLS.BaseClasses.hpp"
  11. #include "GLS.Cadencer.hpp"
  12. #include "GLS.Coordinates.hpp"
  13. #include "GLS.GeomObjects.hpp"
  14. #include "GLS.Material.hpp"
  15. #include "GLS.Objects.hpp"
  16. #include "GLS.Scene.hpp"
  17. #include "GLS.SceneViewer.hpp"
  18. #include "GLS.VectorFileObjects.hpp"
  19. #include <Vcl.ComCtrls.hpp>
  20. #include <Vcl.ExtCtrls.hpp>
  21. //---------------------------------------------------------------------------
  22. class TFormRef : public TForm
  23. {
  24. __published: // IDE-managed Components
  25. TSplitter *Splitter1;
  26. TPanel *Panel1;
  27. TPageControl *PageControl1;
  28. TTabSheet *TabSheet1;
  29. TSplitter *Splitter3;
  30. TPanel *Panel2;
  31. TLabel *LabelVertProfile;
  32. TCheckBox *CBVertexProgram;
  33. TPanel *Panel11;
  34. TPanel *Panel12;
  35. TMemo *MemoVertCode;
  36. TPanel *Panel13;
  37. TButton *ButtonApplyVP;
  38. TPanel *Panel5;
  39. TLabel *Label2;
  40. TMemo *Memo1;
  41. TButton *Button1;
  42. TButton *Button4;
  43. TTabSheet *TabSheet2;
  44. TSplitter *Splitter2;
  45. TPanel *Panel4;
  46. TLabel *LabelFragProfile;
  47. TCheckBox *CheckBox1;
  48. TPanel *Panel6;
  49. TPanel *Panel7;
  50. TMemo *MemoFragCode;
  51. TPanel *Panel3;
  52. TButton *ButtonApplyFP;
  53. TPanel *Panel8;
  54. TLabel *Label1;
  55. TMemo *Memo3;
  56. TButton *Button2;
  57. TButton *Button3;
  58. TTabSheet *TabSheet3;
  59. TTrackBar *TrackBar1;
  60. TPanel *Panel9;
  61. TPanel *Panel10;
  62. TGLSceneViewer *GLSceneViewer1;
  63. TGLScene *GLScene1;
  64. TGLLightSource *GLLightSource1;
  65. TGLDummyCube *GLDummyCube1;
  66. TGLPlane *bottom;
  67. TGLPlane *back;
  68. TGLPlane *left;
  69. TGLPlane *right;
  70. TGLPlane *front;
  71. TGLPlane *top;
  72. TGLDummyCube *GLDummyCube2;
  73. TGLSphere *GLSphere1;
  74. TGLTorus *GLTorus1;
  75. TGLFreeForm *plane;
  76. TGLCamera *GLCamera2;
  77. TGLCamera *GLCamera1;
  78. TGLMaterialLibrary *GLMaterialLibrary1;
  79. TGLCadencer *GLCadencer1;
  80. TCgShader *CgShader1;
  81. TTimer *Timer1;
  82. TGLMemoryViewer *GLMemoryViewer1;
  83. private: // User declarations
  84. public: // User declarations
  85. int mx, my;
  86. __fastcall TFormRef(TComponent* Owner);
  87. };
  88. //---------------------------------------------------------------------------
  89. extern PACKAGE TFormRef *FormRef;
  90. //---------------------------------------------------------------------------
  91. #endif