Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGLManipSet.h
Go to the documentation of this file.
1// @(#)root/gl:$Id$
2// Author: Matevz Tadel, Feb 2007
3
4/*************************************************************************
5 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TGLManipSet
13#define ROOT_TGLManipSet
14
15#include "TGLOverlay.h"
16#include "TGLPShapeRef.h"
17
18class TGLManip;
19
21 public TGLPShapeRef
22{
23public:
25
26private:
27 TGLManipSet(const TGLManipSet&) = delete;
29
30protected:
31 TGLManip *fManip[3]; //! manipulator store
32 EManip fType; //! current manipulator
33
34 Bool_t fDrawBBox; //! also draw bounding-box around physical
35
36public:
38 ~TGLManipSet() override;
39
40 void SetPShape(TGLPhysicalShape* shape) override;
41
42 Bool_t MouseEnter(TGLOvlSelectRecord& selRec) override;
44 Event_t* event) override;
45 void MouseLeave() override;
46
47 void Render(TGLRnrCtx& rnrCtx) override;
48
49 TGLManip* GetCurrentManip() const { return fManip[fType]; }
50
51 Int_t GetManipType() const { return fType; }
53 Bool_t GetDrawBBox() const { return fDrawBBox; }
54 void SetDrawBBox(Bool_t bb) { fDrawBBox = bb; }
55
56 ClassDefOverride(TGLManipSet, 0); // A collection of available manipulators.
57}; // endclass TGLManipSet
58
59
60#endif
int Int_t
Definition RtypesCore.h:45
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
Combine all available manipulators in a collection.
Definition TGLManipSet.h:22
void MouseLeave() override
Mouse has left the element.
Bool_t Handle(TGLRnrCtx &rnrCtx, TGLOvlSelectRecord &selRec, Event_t *event) override
Handle overlay event.
TGLManip * fManip[3]
Definition TGLManipSet.h:31
TGLManipSet(const TGLManipSet &)=delete
Bool_t MouseEnter(TGLOvlSelectRecord &selRec) override
Mouse has entered this element.
Int_t GetManipType() const
Definition TGLManipSet.h:51
Bool_t GetDrawBBox() const
Definition TGLManipSet.h:53
EManip fType
manipulator store
Definition TGLManipSet.h:32
void SetManipType(Int_t type)
Set manipulator type, range checked.
void SetDrawBBox(Bool_t bb)
Definition TGLManipSet.h:54
TGLManipSet()
also draw bounding-box around physical
Bool_t fDrawBBox
current manipulator
Definition TGLManipSet.h:34
TGLManipSet & operator=(const TGLManipSet &)=delete
void Render(TGLRnrCtx &rnrCtx) override
Render the manipulator and bounding-box.
~TGLManipSet() override
Destructor.
TGLManip * GetCurrentManip() const
Definition TGLManipSet.h:49
void SetPShape(TGLPhysicalShape *shape) override
Set phys-shape, override of virtual from TGLPShapeRef.
Abstract base class for viewer manipulators, which allow direct in viewer manipulation of a (TGlPhysi...
Definition TGLManip.h:29
An overlay element.
Definition TGLOverlay.h:23
Selection record for overlay objects.
Base class for references to TGLPysicalShape that need to be notified when the shape is destroyed.
Concrete physical shape - a GL drawable.
The TGLRnrCtx class aggregates data for a given redering context as needed by various parts of the RO...
Definition TGLRnrCtx.h:41
Event structure.
Definition GuiTypes.h:174