//--------------------------------------------------------------------------- #ifndef fcGLSViewerH #define fcGLSViewerH //--------------------------------------------------------------------------- #include #include #include #include #include "GLS.AsyncTimer.hpp" #include "GLS.BaseClasses.hpp" #include "GLS.Cadencer.hpp" #include "GLS.Coordinates.hpp" #include "GLS.Graph.hpp" #include "GLS.Material.hpp" #include "GLS.Objects.hpp" #include "GLS.Scene.hpp" #include "GLS.SceneViewer.hpp" #include "GLS.SimpleNavigation.hpp" #include "GLS.VectorFileObjects.hpp" #include #include #include #include #include #include #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- class TFormViewer : public TForm { __published: // IDE-managed Components TStatusBar *StatusBar; TGLSceneViewer *snViewer; TControlBar *ControlBar; TActionToolBar *atbTools; TActionToolBar *atbView; TActionToolBar *atbFile; TActionMainMenuBar *amMenuBar; TPanel *PanelLeft; TTreeView *tvScene; TGLScene *Scene; TGLCamera *Camera; TGLLightSource *LightSource; TGLXYZGrid *XYZGrid; TGLCube *CubeLines; TGLDummyCube *dcObject; TGLFreeForm *ffObject; TGLDummyCube *dcAxis; TGLDummyCube *dcWorld; TGLPoints *GLPoints; TGLMaterialLibrary *MaterialLib; TGLCadencer *Cadencer; TTimer *Timer; TActionManager *ActionManager; TAction *acOptimizeMesh; TAction *acProcessInvertNormals; TAction *acReverseRendering; TAction *acConvertToTriangles; TAction *acProcessStripify; TAction *acToolsOptions; TAction *acToolsFaceCulling; TAction *acToolsTexturing; TAction *acToolsLighting; TAction *acToolsNaviCube; TCustomizeActionBars *acToolsCustomize; TAction *acToolsShowFPS; TAction *acViewSmoothShading; TAction *acViewFlatShading; TAction *acViewFlatLines; TAction *acViewHiddenLines; TAction *acViewWireFrame; TAction *acViewZoomIn; TAction *acViewZoomOut; TAction *acViewReset; TAction *acFileOpen; TAction *acFilePick; TAction *acFileOpenTexLib; TAction *acFileSaveAs; TAction *acFileSaveTextures; TAction *acSaveTreeView; TAction *acLoadTreeView; TAction *acFileExit; THelpContents *acHelpContents; THelpTopicSearch *acHelpTopicSearch; TAction *acHelpGLSHomePage; TAction *acHelpAbout; TAction *acAADefault; TAction *acAA2X; TAction *acAA4X; TEditUndo *acEditUndo; TEditCut *acEditCut; TEditCopy *acEditCopy; TEditPaste *acEditPaste; TEditSelectAll *acEditSelectAll; TEditDelete *acEditDelete; TAction *acAA8X; TAction *acAA16X; TAction *acCSA8X; TAction *acCSA16X; TAction *acPoints; TAction *acToolsInfo; TAction *acSpheres; TImageList *ImageListMenu; TGLAsyncTimer *AsyncTimer; TGLSimpleNavigation *GLSimpleNavigation; TImageList *ImageListObjects; TOpenDialog *OpenDialog; TSaveDialog *SaveDialog; void __fastcall tvSceneClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TFormViewer(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TFormViewer *FormViewer; //--------------------------------------------------------------------------- #endif