Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
RBrowserTreeWidget.cxx
Go to the documentation of this file.
1// Author: Sergey Linev <S.Linev@gsi.de>
2// Date: 2022-10-07
3// Warning: This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
4
5/*************************************************************************
6 * Copyright (C) 1995-2022, Rene Brun and Fons Rademakers. *
7 * All rights reserved. *
8 * *
9 * For the licensing terms see $ROOTSYS/LICENSE. *
10 * For the list of contributors see $ROOTSYS/README/CREDITS. *
11 *************************************************************************/
12
13#include "RBrowserWidget.hxx"
14
15#include "ROOT/RTreeViewer.hxx"
16#include "ROOT/RBrowser.hxx"
18#include "TTree.h"
19#include "TBranch.h"
20#include "TBranchBrowsable.h"
21#include "TLeaf.h"
22
23using namespace ROOT;
24
25using namespace std::string_literals;
26
27
30 std::unique_ptr<Browsable::RHolder> fObject; // tree object
31 std::string fTitle;
32
33public:
34
36 {
39 fViewer.SetCallback([this](const std::string &canvas_name) {
41 });
42 }
43
44 virtual ~RBrowserTreeWidget() = default;
45
46 std::string GetKind() const override { return "tree"s; }
47 std::string GetTitle() override { return fTitle; }
48 std::shared_ptr<RWebWindow> GetWindow() override { return fViewer.GetWindow(); }
49
50 bool DrawElement(std::shared_ptr<Browsable::RElement> &elem, const std::string & = "") override
51 {
52 if (!elem->IsCapable(Browsable::RElement::kActTree))
53 return false;
54
55 auto obj = elem->GetObject();
56 if (!obj)
57 return false;
58
59 auto tree = obj->Get<TTree>();
60 if (tree) {
61 fObject = std::move(obj);
62 fTitle = tree->GetName();
63 fViewer.SetTree(const_cast<TTree *>(tree));
64 return true;
65 }
66
67 tree = fObject ? fObject->Get<TTree>() : nullptr;
68
69 TTree *new_tree = nullptr;
70 std::string expr = elem->GetContent("tree");
71
72 auto branch = obj->Get<TBranch>();
73 auto leaf = obj->Get<TLeaf>();
74 auto browsable = obj->Get<TVirtualBranchBrowsable>();
75
76 if (branch) {
77 new_tree = branch->GetTree();
78 if (expr.empty())
79 expr = branch->GetFullName().Data();
80 } else if (leaf) {
81 new_tree = leaf->GetBranch()->GetTree();
82 if (expr.empty())
83 expr = leaf->GetFullName().Data();
84 } else if (browsable) {
85 new_tree = browsable->GetBranch()->GetTree();
86 if (expr.empty())
87 expr = browsable->GetBranch()->GetFullName().Data();
88 }
89
90 if (!new_tree || expr.empty())
91 return false;
92
93 if (new_tree != tree) {
94 fObject = std::make_unique<Browsable::TObjectHolder>(new_tree);
95 fTitle = new_tree->GetName();
97 }
98
100 }
101
102 std::string SendWidgetContent() override { return SendWidgetTitle(); }
103
104};
105
106// ======================================================================
107
109protected:
110 std::shared_ptr<RBrowserWidget> Create(const std::string &name) final
111 {
112 return std::make_shared<RBrowserTreeWidget>(name);
113 }
114public:
RBrowserTreeProvider sRBrowserTreeProvider
char name[80]
Definition TGX11.cxx:110
~RBrowserTreeProvider()=default
std::shared_ptr< RBrowserWidget > Create(const std::string &name) final
virtual ~RBrowserTreeWidget()=default
std::unique_ptr< Browsable::RHolder > fObject
std::string GetKind() const override
bool DrawElement(std::shared_ptr< Browsable::RElement > &elem, const std::string &="") override
std::string SendWidgetContent() override
std::shared_ptr< RWebWindow > GetWindow() override
std::string GetTitle() override
RBrowserTreeWidget(const std::string &name)
@ kActTree
can be shown in tree viewer
Definition RElement.hxx:58
Abstract Web-based widget, which can be used in the RBrowser Used to embed canvas,...
RBrowser * GetBrowser() const
std::string SendWidgetTitle()
Returns string which can be send to browser client to set/change title of the widget tab.
bool ActivateWidget(const std::string &title, const std::string &kind="")
Activate widget in RBrowser One should specify title and (optionally) kind of widget like "tcanvas" o...
Definition RBrowser.cxx:974
Web-based ROOT TTree viewer.
std::shared_ptr< ROOT::RWebWindow > GetWindow()
void SetTree(TTree *tree)
assign new TTree to the viewer
bool SuggestExpression(const std::string &expr)
Suggest to use expression in the gui Normally just assign as last edited expression.
void SetCallback(PerformDrawCallback_t func)
void SetTitle(const std::string &title)
void SetShowHierarchy(bool on=true)
Configures default hierarchy browser visibility, only has effect before showing web window.
A TTree is a list of TBranches.
Definition TBranch.h:93
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition TLeaf.h:57
A TTree represents a columnar dataset.
Definition TTree.h:79
TVirtualBranchBrowsable is a base class (not really abstract, but useless by itself) for helper objec...
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...