// @(#)root/gl:$Id: TGLEmbeddedViewer.h 23318 2008-04-18 16:38:57Z matevz $ // Author: Bertrand Bellenot 23/01/2008 /************************************************************************* * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TGLEmbeddedViewer #define ROOT_TGLEmbeddedViewer #ifndef ROOT_TGFrame #include "TGFrame.h" #endif #ifndef ROOT_TGLViewer #include "TGLViewer.h" #endif class TGLRenderArea; class TGLEventHandler; class TGLEmbeddedViewer : public TGLViewer { private: // GUI components TGCompositeFrame *fFrame; void CreateFrames(); TGLEmbeddedViewer(const TGLEmbeddedViewer&); // Not implemented TGLEmbeddedViewer& operator=(const TGLEmbeddedViewer&); // Not implemented public: TGLEmbeddedViewer(const TGWindow *parent, TVirtualPad *pad = 0); ~TGLEmbeddedViewer(); virtual const char *GetName() const { return "GLViewer"; } TGCompositeFrame* GetFrame() const { return fFrame; } TGLOrthoCamera *GetOrthoXOYCamera() { return &fOrthoXOYCamera; } TGLOrthoCamera *GetOrthoXOZCamera() { return &fOrthoXOZCamera; } TGLOrthoCamera *GetOrthoZOYCamera() { return &fOrthoZOYCamera; } ClassDef(TGLEmbeddedViewer, 0); // Embedded GL viewer. }; #endif