Sergey Linev
Sergey Linev
Backport of https://github.com/root-project/root/pull/15943
It will be central method to paint any primitive on specified pad. To support all kinds of old implementations in TObject class Paint() method will be implemented as: ``` void...
Canvas name was used as identifier to track HTML element. If new canvas with same name was created, old HTML name was overwritten. Therefore add unique ID (pointer) to the...
Following widgets will be web-based by default: 1. `TCanvas` 2. `TBrowser` 3. `TTreeViewer` 4. `TGeomPainter` Type of all these widgets can be configured via rootrc file: ``` # As options...
To reproduce error, just call: ``` TClass::GetClass("TTreeCache")->GetStreamerInfo() ``` Produces crash with output: ``` input_line_9:6:31: error: 'MissCache' is a protected member of 'TTreeCache' default_delete _1; ^ /home/linev/build/json/include/TTreeCache.h:85:11: note: declared protected here...
For all widgets default will be single connection. Each widget can be connected only once. Only when such default mode disabled, some widgets will be possible to connect multiple times
This PR provide possible solution for #312 To be able use `jsPDF.link()` method, one need to have valid bounding box for all child nodes of `a` element. Seems to be,...
Seems to be, `href` attribute is not supported in `a` element. Simple example [from developer.mozilla.org](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/href). ``` MDN Web Docs ``` As I can see, `a` element handled exactly in the...
There are several subdirs, which are handled fully independent now. Several common scripts like `compile.C` or `run.C` moved to directories where they used - `numeric_conversion` and `stl_conversions` Split several reference...
Try to avoid creation of many temporary files in source directory where macro is situated. Most significant drawback has on Windows when several files has to be moved or deleted...