Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TGLSAFrame.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/gl:$Id$
0002 // Author:  Richard Maunder  10/08/2005
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TGLSAFrame
0013 #define ROOT_TGLSAFrame
0014 
0015 #include "Rtypes.h"
0016 #include "TGFrame.h"
0017 
0018 class TGLSAViewer;
0019 
0020 //////////////////////////////////////////////////////////////////////////
0021 //                                                                      //
0022 // TGLSAFrame                                                           //
0023 //                                                                      //
0024 // Standalone GL Viewer GUI main frame. Is aggregated in TGLSAViewer -  //
0025 // top level standalone viewer object.                                  //
0026 //////////////////////////////////////////////////////////////////////////
0027 
0028 class TGLSAFrame : public TGMainFrame
0029 {
0030 private:
0031    TGLSAViewer & fViewer;
0032 
0033    // non-copyable class
0034    TGLSAFrame(const TGLSAFrame &);
0035    TGLSAFrame & operator = (const TGLSAFrame &);
0036 
0037 public:
0038    TGLSAFrame(TGLSAViewer &viewer);
0039    TGLSAFrame(const TGWindow *parent, TGLSAViewer &viewer);
0040    ~TGLSAFrame() override;
0041 
0042    Bool_t ProcessMessage(Longptr_t msg, Longptr_t parm1, Longptr_t parm2) override;
0043    void   CloseWindow() override;
0044 
0045    ClassDefOverride(TGLSAFrame, 0) // GUI frame for standalone viewer
0046 };
0047 
0048 #endif