Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RCanvas.hxx
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (C) 1995-2015, Rene Brun and Fons Rademakers. *
3 * All rights reserved. *
4 * *
5 * For the licensing terms see $ROOTSYS/LICENSE. *
6 * For the list of contributors see $ROOTSYS/README/CREDITS. *
7 *************************************************************************/
8
9#ifndef ROOT7_RCanvas
10#define ROOT7_RCanvas
11
12#include "ROOT/RPadBase.hxx"
15
16#include <memory>
17#include <string>
18#include <vector>
19#include <list>
20
21namespace ROOT {
22namespace Experimental {
23
25 std::vector<std::string> ids; ///< array of ids
26 std::vector<std::string> names; ///< array of attribute names
27 std::vector<std::unique_ptr<RAttrMap::Value_t>> values; ///< array of values
28 bool update{true}; ///< update canvas at the end
29 bool fNeedUpdate{false}; ///<! is canvas update required
32public:
33 RChangeAttrRequest() = default; // for I/O
34 virtual ~RChangeAttrRequest() = default;
35 std::unique_ptr<RDrawableReply> Process() override;
36 bool NeedCanvasUpdate() const override { return fNeedUpdate; }
37};
38
39/** \class RCanvas
40\ingroup GpadROOT7
41\brief A window's topmost `RPad`.
42\author Axel Naumann <axel@cern.ch>
43\date 2015-07-08
44\warning This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
45*/
46
47class RCanvas: public RPadBase {
48friend class RPadBase; /// use for ID generation
49friend class RCanvasPainter; /// used for primitives drawing
50friend class RChangeAttrRequest; /// to apply attributes changes
51private:
52 /// Title of the canvas.
53 std::string fTitle;
54
55 /// Size of the canvas in pixels,
56 std::array<RPadLength::Pixel, 2> fSize;
57
58 /// Modify counter, incremented every time canvas is changed
60
61 /// The painter of this canvas, bootstrapping the graphics connection.
62 /// Unmapped canvases (those that never had `Draw()` invoked) might not have
63 /// a painter.
64 std::unique_ptr<Internal::RVirtualCanvasPainter> fPainter; ///<!
65
66 /// Disable copy construction for now.
67 RCanvas(const RCanvas &) = delete;
68
69 /// Disable assignment for now.
70 RCanvas &operator=(const RCanvas &) = delete;
71
72 // Increment modify counter
73 uint64_t IncModified() { return ++fModified; }
74
75public:
76 static std::shared_ptr<RCanvas> Create(const std::string &title);
77
78 /// Create a temporary RCanvas; for long-lived ones please use Create().
79 RCanvas() = default;
80
81 ~RCanvas() = default;
82
83 const RCanvas *GetCanvas() const override { return this; }
84
85 /// Access to the top-most canvas, if any (non-const version).
86 RCanvas *GetCanvas() override { return this; }
87
88 /// Return canvas pixel size as array with two elements - width and height
89 const std::array<RPadLength::Pixel, 2> &GetSize() const { return fSize; }
90
91 /// Set canvas pixel size as array with two elements - width and height
92 RCanvas &SetSize(const std::array<RPadLength::Pixel, 2> &sz)
93 {
94 fSize = sz;
95 return *this;
96 }
97
98 /// Set canvas pixel size - width and height
100 {
101 fSize[0] = width;
102 fSize[1] = height;
103 return *this;
104 }
105
106 /// Display the canvas.
107 void Show(const std::string &where = "");
108
109 /// Returns window name used to display canvas
110 std::string GetWindowAddr() const;
111
112 /// Hide all canvas displays
113 void Hide();
114
115 /// Remove canvas from global canvas lists, will be destroyed when shared_ptr will be removed
116 void Remove();
117
118 /// Insert panel into the canvas, canvas should be shown at this moment
119 template <class PANEL>
120 bool AddPanel(std::shared_ptr<PANEL> &panel)
121 {
122 if (!fPainter) return false;
123 return fPainter->AddPanel(panel->GetWindow());
124 }
125
126 // Get modify counter
127 uint64_t GetModified() const { return fModified; }
128
129 // Set newest version to all primitives
131
132 // Return if canvas was modified and not yet updated
133 bool IsModified() const;
134
135 /// update drawing
136 void Update(bool async = false, CanvasCallback_t callback = nullptr);
137
138 /// Run canvas functionality for given time (in seconds)
139 void Run(double tm = 0.);
140
141 /// Save canvas in image file
142 bool SaveAs(const std::string &filename);
143
144 /// Get the canvas's title.
145 const std::string &GetTitle() const { return fTitle; }
146
147 /// Set the canvas's title.
148 RCanvas &SetTitle(const std::string &title)
149 {
150 fTitle = title;
151 return *this;
152 }
153
154 void ResolveSharedPtrs();
155
156 /// Convert a `Pixel` position to Canvas-normalized positions.
157 std::array<RPadLength::Normal, 2> PixelsToNormal(const std::array<RPadLength::Pixel, 2> &pos) const final
158 {
159 return {{pos[0] / fSize[0], pos[1] / fSize[1]}};
160 }
161
162 static const std::vector<std::shared_ptr<RCanvas>> GetCanvases();
163
164 static void ReleaseHeldCanvases();
165};
166
167} // namespace Experimental
168} // namespace ROOT
169
170#endif
include TDocParser_001 C image html pict1_TDocParser_001 png width
A window's topmost RPad.
Definition RCanvas.hxx:47
static const std::vector< std::shared_ptr< RCanvas > > GetCanvases()
Returns list of created canvases.
Definition RCanvas.cxx:44
RCanvas(const RCanvas &)=delete
Disable copy construction for now.
static void ReleaseHeldCanvases()
Release list of held canvases pointers If no other shared pointers exists on the canvas,...
Definition RCanvas.cxx:55
RCanvas * GetCanvas() override
Access to the top-most canvas, if any (non-const version).
Definition RCanvas.hxx:86
const std::string & GetTitle() const
Get the canvas's title.
Definition RCanvas.hxx:145
bool SaveAs(const std::string &filename)
Save canvas in image file.
Definition RCanvas.cxx:184
RCanvas & SetSize(const RPadLength::Pixel &width, const RPadLength::Pixel &height)
Set canvas pixel size - width and height.
Definition RCanvas.hxx:99
RCanvas & SetTitle(const std::string &title)
Set the canvas's title.
Definition RCanvas.hxx:148
RCanvas & SetSize(const std::array< RPadLength::Pixel, 2 > &sz)
Set canvas pixel size as array with two elements - width and height.
Definition RCanvas.hxx:92
Version_t fModified
Modify counter, incremented every time canvas is changed.
Definition RCanvas.hxx:59
std::array< RPadLength::Normal, 2 > PixelsToNormal(const std::array< RPadLength::Pixel, 2 > &pos) const final
Convert a Pixel position to Canvas-normalized positions.
Definition RCanvas.hxx:157
std::array< RPadLength::Pixel, 2 > fSize
Size of the canvas in pixels,.
Definition RCanvas.hxx:56
bool IsModified() const
Returns true is canvas was modified since last painting.
Definition RCanvas.cxx:69
const std::array< RPadLength::Pixel, 2 > & GetSize() const
Return canvas pixel size as array with two elements - width and height.
Definition RCanvas.hxx:89
RCanvas & operator=(const RCanvas &)=delete
Disable assignment for now.
void Show(const std::string &where="")
Display the canvas.
Definition RCanvas.cxx:136
std::string GetWindowAddr() const
Returns window name used to display canvas.
Definition RCanvas.cxx:162
void Remove()
Remove canvas from global canvas lists, will be destroyed when shared_ptr will be removed.
Definition RCanvas.cxx:201
void ResolveSharedPtrs()
To resolve problem with storing of shared pointers Call this method when reading canvas from the file...
Definition RCanvas.cxx:266
void Run(double tm=0.)
Run canvas functionality for given time (in seconds)
Definition RCanvas.cxx:252
uint64_t GetModified() const
Definition RCanvas.hxx:127
std::string fTitle
to apply attributes changes
Definition RCanvas.hxx:53
std::unique_ptr< Internal::RVirtualCanvasPainter > fPainter
The painter of this canvas, bootstrapping the graphics connection.
Definition RCanvas.hxx:64
static std::shared_ptr< RCanvas > Create(const std::string &title)
Create new canvas instance.
Definition RCanvas.cxx:103
RCanvas()=default
Create a temporary RCanvas; for long-lived ones please use Create().
const RCanvas * GetCanvas() const override
Access to the top-most canvas, if any (const version).
Definition RCanvas.hxx:83
friend class RCanvasPainter
use for ID generation
Definition RCanvas.hxx:49
bool AddPanel(std::shared_ptr< PANEL > &panel)
Insert panel into the canvas, canvas should be shown at this moment.
Definition RCanvas.hxx:120
void Hide()
Hide all canvas displays.
Definition RCanvas.cxx:174
std::vector< std::unique_ptr< RAttrMap::Value_t > > values
array of values
Definition RCanvas.hxx:27
std::vector< std::string > names
array of attribute names
Definition RCanvas.hxx:26
std::vector< std::string > ids
array of ids
Definition RCanvas.hxx:25
bool NeedCanvasUpdate() const override
Definition RCanvas.hxx:36
bool fNeedUpdate
! is canvas update required
Definition RCanvas.hxx:29
RChangeAttrRequest & operator=(const RChangeAttrRequest &)=delete
bool update
update canvas at the end
Definition RCanvas.hxx:28
std::unique_ptr< RDrawableReply > Process() override
Apply attributes changes to the drawable Return mask with actions which were really applied.
Definition RCanvas.cxx:294
RChangeAttrRequest(const RChangeAttrRequest &)=delete
Base class for requests which can be submitted from the clients.
Base class for graphic containers for RDrawable-s.
Definition RPadBase.hxx:37
void SetDrawableVersion(Version_t vers) override
Assign drawable version - for pad itself and all primitives.
Definition RPadBase.cxx:366
std::function< void(bool)> CanvasCallback_t
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...