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
0002
0003
0004
0005
0006
0007
0008
0009
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
0023
0024
0025
0026
0027
0028 class TGLSAFrame : public TGMainFrame
0029 {
0030 private:
0031 TGLSAViewer & fViewer;
0032
0033
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)
0046 };
0047
0048 #endif