// @(#)root/gl:$Id: TGLWidget.h 26250 2008-11-17 20:56:44Z matevz $ // Author: Timur Pocheptsov, Jun 2007 /************************************************************************* * Copyright (C) 1995-2004, 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_TGLWidget #define ROOT_TGLWidget #include #include #include #ifndef ROOT_TGLContext #include "TGLContext.h" #endif #ifndef ROOT_TVirtualGL #include "TVirtualGL.h" #endif #ifndef ROOT_TGLFormat #include "TGLFormat.h" #endif #ifndef ROOT_TGFrame #include "TGFrame.h" #endif class TGLWidget; class TGEventHandler; class TGLWidget : public TGFrame, public TGLPaintDevice { friend class TGLContext; private: TGLContext *fGLContext; //fInnerData is for X11 - pair. std::pair fInnerData; Int_t fWindowIndex; TGLFormat fGLFormat; //fFromCtor checks that SetFormat was called only from ctor. Bool_t fFromInit; std::set fValidContexts; TGEventHandler *fEventHandler; public: static TGLWidget* Create(const TGWindow* parent, Bool_t selectInput, Bool_t shareDefault, const TGLPaintDevice *shareDevice, UInt_t width, UInt_t height); static TGLWidget* Create(const TGLFormat &format, const TGWindow* parent, Bool_t selectInput, Bool_t shareDefault, const TGLPaintDevice *shareDevice, UInt_t width, UInt_t height); ~TGLWidget(); virtual void InitGL(); virtual void PaintGL(); Bool_t MakeCurrent(); Bool_t ClearCurrent(); void SwapBuffers(); const TGLContext *GetContext()const; const TGLFormat *GetPixelFormat()const; //This function is public _ONLY_ for calls //via gInterpreter. Do not call it directly. void SetFormat(); //To repaint gl-widget without GUI events. void ExtractViewport(Int_t *vp)const; TGEventHandler *GetEventHandler() const { return fEventHandler; } void SetEventHandler(TGEventHandler *eh); Bool_t HandleButton(Event_t *ev); Bool_t HandleDoubleClick(Event_t *ev); Bool_t HandleConfigureNotify(Event_t *ev); Bool_t HandleKey(Event_t *ev); Bool_t HandleMotion(Event_t *ev); Bool_t HandleFocusChange(Event_t *); Bool_t HandleCrossing(Event_t *); void DoRedraw(); private: TGLWidget(const TGLWidget &); // Not implemented. TGLWidget &operator = (const TGLWidget &); // Not implemented. protected: TGLWidget(Window_t glw, const TGWindow* parent, Bool_t selectInput); static Window_t CreateWindow(const TGWindow* parent, const TGLFormat &format, UInt_t width, UInt_t height, std::pair& innerData); void AddContext(TGLContext *ctx); void RemoveContext(TGLContext *ctx); std::pair GetInnerData()const; ClassDef(TGLWidget, 0); //Window (widget) version of TGLPaintDevice }; #endif