// @(#)root/eve:$Id: TEveStraightLineSetGL.h 21653 2008-01-11 20:23:15Z matevz $
// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007

/*************************************************************************
 * Copyright (C) 1995-2007, 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_TEveStraightLineSetGL
#define ROOT_TEveStraightLineSetGL

#include "TGLObject.h"

class TGLViewer;
class TGLScene;

class TEveStraightLineSet;

class TEveStraightLineSetGL : public TGLObject
{
private:
   TEveStraightLineSetGL(const TEveStraightLineSetGL&);            // Not implemented
   TEveStraightLineSetGL& operator=(const TEveStraightLineSetGL&); // Not implemented

protected:
   TEveStraightLineSet* fM; // fModel dynamic-casted to TEveStraightLineSetGL

public:
   TEveStraightLineSetGL();
   virtual ~TEveStraightLineSetGL() {}

   virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0);
   virtual void   SetBBox();
   virtual void   DirectDraw(TGLRnrCtx& rnrCtx) const;

   // To support two-level selectionvirtual
   Bool_t IgnoreSizeForOfInterest() const { return kTRUE; }

   virtual Bool_t ShouldDLCache(const TGLRnrCtx& rnrCtx) const;
   virtual Bool_t SupportsSecondarySelect() const { return kTRUE; }
   virtual void ProcessSelection(TGLRnrCtx& rnrCtx, TGLSelectRecord& rec);

   ClassDef(TEveStraightLineSetGL, 0); // GL-renderer for TEveStraightLineSet class.
};

#endif

Last change: Wed Jun 25 08:38:09 2008
Last generated: 2008-06-25 08:38

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.