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{
29public:
31
32private:
33 REveViewer(const REveViewer&) = delete;
34 REveViewer& operator=(const REveViewer&) = delete;
35
37
38public:
39 REveViewer(const std::string &n="REveViewer", const std::string &t="");
40 virtual ~REveViewer();
41
42 void Redraw(Bool_t resetCameras=kFALSE);
43
44 virtual void AddScene(REveScene* scene);
45 // XXX Missing RemoveScene() ????
46
49
50 void RemoveElementLocal(REveElement *el) override;
51 void RemoveElementsLocal() override;
52 Int_t WriteCoreJson(nlohmann::json &cj, Int_t rnr_offset) override;
53};
54
55
56////////////////////////////////////////////////////////////////////////////////
57/// REveViewerList
58/// List of Viewers providing common operations on REveViewer collections.
59////////////////////////////////////////////////////////////////////////////////
60
62{
63private:
66
67protected:
69
72
73 void HandleTooltip();
74
75public:
76 REveViewerList(const std::string &n="REveViewerList", const std::string &t="");
77 virtual ~REveViewerList();
78
79 void AddElement(REveElement* el) override;
80 void RemoveElementLocal(REveElement* el) override;
81 void RemoveElementsLocal() override;
82
83 // --------------------------------
84
85 virtual void Connect();
86 virtual void Disconnect();
87
88 void RepaintChangedViewers(Bool_t resetCameras, Bool_t dropLogicals);
89 void RepaintAllViewers(Bool_t resetCameras, Bool_t dropLogicals);
90 void DeleteAnnotations();
91
92 void SceneDestructing(REveScene* scene);
93
94 // --------------------------------
95
96 void OnMouseOver(TObject* obj, UInt_t state);
97 void OnReMouseOver(TObject* obj, UInt_t state);
98 void OnUnMouseOver(TObject* obj, UInt_t state);
99 void OnClicked(TObject *obj, UInt_t button, UInt_t state);
100 void OnReClicked(TObject *obj, UInt_t button, UInt_t state);
101 void OnUnClicked(TObject *obj, UInt_t button, UInt_t state);
102
103 // --------------------------------
104
107
110
112 void SwitchColorSet();
113};
114
115} // namespace Experimental
116} // namespace ROOT
117
118#endif
#define b(i)
Definition RSha256.hxx:100
bool Bool_t
Definition RtypesCore.h:63
float Float_t
Definition RtypesCore.h:57
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t button
Eve representation of TGLScene.
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
void SetCameraType(ECameraType t)
REveViewer & operator=(const REveViewer &)=delete
Int_t WriteCoreJson(nlohmann::json &cj, Int_t rnr_offset) override
Stream Camera Info.
ECameraType GetCameraType() const
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:41
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.
basic_json<> json