Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
REveViewer.hxx
Go to the documentation of this file.
1// @(#)root/eve7:$Id$
2// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007, 2018
3
4/*************************************************************************
5 * Copyright (C) 1995-2019, 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 ROOT7_REveViewer
13#define ROOT7_REveViewer
14
15#include <ROOT/REveElement.hxx>
16
17namespace ROOT {
18namespace Experimental {
19
20class REveScene;
21
22////////////////////////////////////////////////////////////////////////////////
23/// REveViewer
24/// Reve representation of TGLViewer.
25////////////////////////////////////////////////////////////////////////////////
26
27class REveViewer : public REveElement
28{
29private:
30 REveViewer(const REveViewer&) = delete;
31 REveViewer& operator=(const REveViewer&) = delete;
32
33public:
34 REveViewer(const std::string &n="REveViewer", const std::string &t="");
35 virtual ~REveViewer();
36
37 void Redraw(Bool_t resetCameras=kFALSE);
38
39 virtual void AddScene(REveScene* scene);
40 // XXX Missing RemoveScene() ????
41
42 void RemoveElementLocal(REveElement *el) override;
43 void RemoveElementsLocal() override;
44};
45
46
47////////////////////////////////////////////////////////////////////////////////
48/// REveViewerList
49/// List of Viewers providing common operations on REveViewer collections.
50////////////////////////////////////////////////////////////////////////////////
51
53{
54private:
57
58protected:
60
63
64 void HandleTooltip();
65
66public:
67 REveViewerList(const std::string &n="REveViewerList", const std::string &t="");
68 virtual ~REveViewerList();
69
70 void AddElement(REveElement* el) override;
71 void RemoveElementLocal(REveElement* el) override;
72 void RemoveElementsLocal() override;
73
74 // --------------------------------
75
76 virtual void Connect();
77 virtual void Disconnect();
78
79 void RepaintChangedViewers(Bool_t resetCameras, Bool_t dropLogicals);
80 void RepaintAllViewers(Bool_t resetCameras, Bool_t dropLogicals);
81 void DeleteAnnotations();
82
83 void SceneDestructing(REveScene* scene);
84
85 // --------------------------------
86
87 void OnMouseOver(TObject* obj, UInt_t state);
88 void OnReMouseOver(TObject* obj, UInt_t state);
89 void OnUnMouseOver(TObject* obj, UInt_t state);
90 void OnClicked(TObject *obj, UInt_t button, UInt_t state);
91 void OnReClicked(TObject *obj, UInt_t button, UInt_t state);
92 void OnUnClicked(TObject *obj, UInt_t button, UInt_t state);
93
94 // --------------------------------
95
98
101
103 void SwitchColorSet();
104};
105
106} // namespace Experimental
107} // namespace ROOT
108
109#endif
#define b(i)
Definition RSha256.hxx:100
const Bool_t kFALSE
Definition RtypesCore.h:92
float Float_t
Definition RtypesCore.h:57
REveViewerList List of Viewers providing common operations on REveViewer collections.
void RemoveElementsLocal() override
Decompoundofy children, call base-class version.
void OnUnClicked(TObject *obj, UInt_t button, UInt_t state)
Slot for global TGLViewer::UnClicked().
REveViewerList & operator=(const REveViewerList &)=delete
void AddElement(REveElement *el) override
Call base-class implementation.
void OnReClicked(TObject *obj, UInt_t button, UInt_t state)
Slot for global TGLViewer::ReClicked().
void OnClicked(TObject *obj, UInt_t button, UInt_t state)
Slot for global TGLViewer::Clicked().
void HandleTooltip()
Show / hide tooltip for various MouseOver events.
void SceneDestructing(REveScene *scene)
Callback done from a REveScene destructor allowing proper removal of the scene from affected viewers.
void OnMouseOver(TObject *obj, UInt_t state)
Slot for global TGLViewer::MouseOver() signal.
void SetColorBrightness(Float_t b)
Set color brightness.
void RepaintAllViewers(Bool_t resetCameras, Bool_t dropLogicals)
Repaint all viewers.
void OnUnMouseOver(TObject *obj, UInt_t state)
Slot for global TGLViewer::UnMouseOver().
virtual void Disconnect()
Disconnect from TGLViewer class-signals.
void RepaintChangedViewers(Bool_t resetCameras, Bool_t dropLogicals)
Repaint viewers that are tagged as changed.
void OnReMouseOver(TObject *obj, UInt_t state)
Slot for global TGLViewer::ReMouseOver().
virtual ~REveViewerList()
Destructor.
void SwitchColorSet()
Switch background color.
REveViewerList(const REveViewerList &)=delete
virtual void Connect()
Connect to TGLViewer class-signals.
void DeleteAnnotations()
Delete annotations from all viewers.
void RemoveElementLocal(REveElement *el) override
Decompoundofy el, call base-class version.
REveViewer Reve representation of TGLViewer.
void RemoveElementLocal(REveElement *el) override
Remove element 'el' from the list of children and also remove appropriate GLScene from GLViewer's lis...
void RemoveElementsLocal() override
Remove all children, forwarded to GLViewer.
virtual ~REveViewer()
Destructor.
REveViewer(const REveViewer &)=delete
REveViewer & operator=(const REveViewer &)=delete
void Redraw(Bool_t resetCameras=kFALSE)
Redraw viewer immediately.
virtual void AddScene(REveScene *scene)
Add 'scene' to the list of scenes.
Mother of all ROOT objects.
Definition TObject.h:37
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...