Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TPad.h
Go to the documentation of this file.
1// @(#)root/gpad:$Id$
2// Author: Rene Brun 12/12/94
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, 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 ROOT_TPad
13#define ROOT_TPad
14
15#include "TVirtualPad.h"
16#include "TAttBBox2D.h"
17#include <vector>
18
21class TBrowser;
22class TBox;
23class TLegend;
24class TArrow;
25class TPoint;
26class TWebCanvas;
27
28class TPad : public TVirtualPad, public TAttBBox2D {
29
30friend class TWebCanvas;
31
32private:
33 TObject *fTip{nullptr}; ///<! tool tip associated with box
34
35protected:
36 Double_t fX1; ///< X of lower X coordinate
37 Double_t fY1; ///< Y of lower Y coordinate
38 Double_t fX2; ///< X of upper X coordinate
39 Double_t fY2; ///< Y of upper Y coordinate
40
41 Double_t fXtoAbsPixelk; ///< Conversion coefficient for X World to absolute pixel
42 Double_t fXtoPixelk; ///< Conversion coefficient for X World to pixel
43 Double_t fXtoPixel; ///< xpixel = fXtoPixelk + fXtoPixel*xworld
44 Double_t fYtoAbsPixelk; ///< Conversion coefficient for Y World to absolute pixel
45 Double_t fYtoPixelk; ///< Conversion coefficient for Y World to pixel
46 Double_t fYtoPixel; ///< ypixel = fYtoPixelk + fYtoPixel*yworld
47
48 Double_t fUtoAbsPixelk; ///< Conversion coefficient for U NDC to absolute pixel
49 Double_t fUtoPixelk; ///< Conversion coefficient for U NDC to pixel
50 Double_t fUtoPixel; ///< xpixel = fUtoPixelk + fUtoPixel*undc
51 Double_t fVtoAbsPixelk; ///< Conversion coefficient for V NDC to absolute pixel
52 Double_t fVtoPixelk; ///< Conversion coefficient for V NDC to pixel
53 Double_t fVtoPixel; ///< ypixel = fVtoPixelk + fVtoPixel*vndc
54
55 Double_t fAbsPixeltoXk; ///< Conversion coefficient for absolute pixel to X World
56 Double_t fPixeltoXk; ///< Conversion coefficient for pixel to X World
57 Double_t fPixeltoX; ///< xworld = fPixeltoXk + fPixeltoX*xpixel
58 Double_t fAbsPixeltoYk; ///< Conversion coefficient for absolute pixel to Y World
59 Double_t fPixeltoYk; ///< Conversion coefficient for pixel to Y World
60 Double_t fPixeltoY; ///< yworld = fPixeltoYk + fPixeltoY*ypixel
61
62 Double_t fXlowNDC; ///< X bottom left corner of pad in NDC [0,1]
63 Double_t fYlowNDC; ///< Y bottom left corner of pad in NDC [0,1]
66 Double_t fWNDC; ///< Width of pad along X in Normalized Coordinates (NDC)
67 Double_t fHNDC; ///< Height of pad along Y in Normalized Coordinates (NDC)
68
69 Double_t fAbsXlowNDC; ///< Absolute X top left corner of pad in NDC [0,1]
70 Double_t fAbsYlowNDC; ///< Absolute Y top left corner of pad in NDC [0,1]
71 Double_t fAbsWNDC; ///< Absolute Width of pad along X in NDC
72 Double_t fAbsHNDC; ///< Absolute Height of pad along Y in NDC
73
74 Double_t fUxmin; ///< Minimum value on the X axis
75 Double_t fUymin; ///< Minimum value on the Y axis
76 Double_t fUxmax; ///< Maximum value on the X axis
77 Double_t fUymax; ///< Maximum value on the Y axis
78
79 Double_t fTheta; ///< theta angle to view as lego/surface
80 Double_t fPhi; ///< phi angle to view as lego/surface
81
82 Double_t fAspectRatio; ///< ratio of w/h in case of fixed ratio
83
84 Int_t fPixmapID; ///<! Off-screen pixmap identifier
85 Int_t fGLDevice; ///<! OpenGL off-screen pixmap identifier
88 Int_t fNumber; ///< pad number identifier
89 Int_t fTickx; ///< Set to 1 if tick marks along X
90 Int_t fTicky; ///< Set to 1 if tick marks along Y
91 Int_t fLogx; ///< (=0 if X linear scale, =1 if log scale)
92 Int_t fLogy; ///< (=0 if Y linear scale, =1 if log scale)
93 Int_t fLogz; ///< (=0 if Z linear scale, =1 if log scale)
94 Int_t fPadPaint; ///< Set to 1 while painting the pad
95 Int_t fCrosshair; ///< Crosshair type (0 if no crosshair requested)
96 Int_t fCrosshairPos; ///< Position of crosshair
97 Short_t fBorderSize; ///< pad bordersize in pixels
98 Short_t fBorderMode; ///< Bordermode (-1=down, 0 = no border, 1=up)
99 Bool_t fModified; ///< Set to true when pad is modified
100 Bool_t fGridx; ///< Set to true if grid along X
101 Bool_t fGridy; ///< Set to true if grid along Y
102 Bool_t fAbsCoord; ///< Use absolute coordinates
103 Bool_t fEditable; ///< True if canvas is editable
104 Bool_t fFixedAspectRatio; ///< True if fixed aspect ratio
105 TPad *fMother{nullptr}; ///<! pointer to mother of the list
106 TCanvas *fCanvas{nullptr}; ///<! Pointer to mother canvas
107 TList *fPrimitives{nullptr};///<->List of primitives (subpads)
108 TList *fExecs{nullptr}; ///< List of commands to be executed when a pad event occurs
109 TString fName; ///< Pad name
110 TString fTitle; ///< Pad title
111 TFrame *fFrame{nullptr}; ///<! Pointer to 2-D frame (if one exists)
112 TView *fView{nullptr}; ///<! Pointer to 3-D view (if one exists)
113 TObject *fPadPointer{nullptr};///<! free pointer
114 TObject *fPadView3D{nullptr};///<! 3D View of this TPad
115 static Int_t fgMaxPickDistance; ///< Maximum Pick Distance
116 Int_t fNumPaletteColor; ///< Number of objects with an automatic color
117 Int_t fNextPaletteColor; ///< Next automatic color
118 std::vector<Bool_t> fCollideGrid;///<! Grid used to find empty space when adding a box (Legend) in a pad
119 Int_t fCGnx; ///<! Size of the collide grid along x
120 Int_t fCGny; ///<! Size of the collide grid along y
121
122 // 3D Viewer support
123 TVirtualViewer3D *fViewer3D{nullptr};///<! Current 3D viewer
124
126 Int_t DistancetoPrimitive(Int_t px, Int_t py) override;
127 void ExecuteEvent(Int_t event, Int_t px, Int_t py) override;
128 virtual void HideToolTip(Int_t event);
129 void PaintBorder(Color_t color, Bool_t tops);
130 void PaintBorderPS(Double_t xl,Double_t yl,Double_t xt,Double_t yt,Int_t bmode,Int_t bsize,Int_t dark,Int_t light) override;
131 void PaintDate();
132 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
133 void SetBatch(Bool_t batch=kTRUE) override;
134
135private:
136 TPad(const TPad &pad) = delete;
137 TPad &operator=(const TPad &rhs) = delete;
138
140 void CopyBackgroundPixmaps(TPad *start, TPad *stop, Int_t x, Int_t y);
141 void DrawDist(Rectangle_t aBBox, Rectangle_t bBBox, char mode);
142
144 void FillCollideGrid(TObject *o);
150
151public:
152 // TPad status bits
153 enum {
154 kFraming = BIT(6), ///< Frame is requested
155 kHori = BIT(9), ///< Pad is horizontal
156 kClipFrame = BIT(10), ///< Clip on frame
157 kPrintingPS = BIT(11), ///< PS Printing
158 kCannotMove = BIT(12), ///< Fixed position
159 kClearAfterCR = BIT(14) ///< Clear after CR
160 };
161
162 TPad();
163 TPad(const char *name, const char *title, Double_t xlow,
164 Double_t ylow, Double_t xup, Double_t yup,
165 Color_t color=-1, Short_t bordersize=-1, Short_t bordermode=-2);
166 ~TPad() override;
167 void AbsCoordinates(Bool_t set) override { fAbsCoord = set; }
168 Double_t AbsPixeltoX(Int_t px) override { return fAbsPixeltoXk + px*fPixeltoX; }
169 Double_t AbsPixeltoY(Int_t py) override { return fAbsPixeltoYk + py*fPixeltoY; }
170 virtual void AbsPixeltoXY(Int_t xpixel, Int_t ypixel, Double_t &x, Double_t &y);
171 void Add(TObject *obj, Option_t *opt = "", Bool_t modified = kTRUE) override;
172 void AddFirst(TObject *obj, Option_t *opt = "", Bool_t modified = kTRUE) override;
173 void AddExec(const char *name, const char *command) override;
174 virtual void AutoExec();
175 void Browse(TBrowser *b) override;
176 TLegend *BuildLegend(Double_t x1=0.3, Double_t y1=0.21, Double_t x2=0.3, Double_t y2=0.21, const char *title="", Option_t *option = "") override; // *MENU*
177 TVirtualPad *cd(Int_t subpadnumber=0) override; // *MENU*
178 void Clear(Option_t *option="") override;
179 virtual Int_t Clip(Float_t *x, Float_t *y, Float_t xclipl, Float_t yclipb, Float_t xclipr, Float_t yclipt);
180 Int_t Clip(Double_t *x, Double_t *y, Double_t xclipl, Double_t yclipb, Double_t xclipr, Double_t yclipt) override;
181 virtual Int_t ClippingCode(Double_t x, Double_t y, Double_t xcl1, Double_t ycl1, Double_t xcl2, Double_t ycl2);
182 virtual Int_t ClipPolygon(Int_t n, Double_t *x, Double_t *y, Int_t nn, Double_t *xc, Double_t *yc, Double_t xclipl, Double_t yclipb, Double_t xclipr, Double_t yclipt);
183 void Close(Option_t *option="") override;
184 virtual void Closed() { Emit("Closed()"); } // *SIGNAL*
185 void CopyPixmap() override;
186 void CopyPixmaps() override;
187 void DeleteExec(const char *name) override;
188 void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0) override; // *MENU*
189 virtual void DivideSquare(Int_t n, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0);
190 void Draw(Option_t *option="") override;
191 void DrawClassObject(const TObject *obj, Option_t *option="") override;
192 static void DrawColorTable();
193 virtual void DrawCrosshair();
194 TH1F *DrawFrame(Double_t xmin, Double_t ymin, Double_t xmax, Double_t ymax, const char *title="") override;
195 void ExecuteEventAxis(Int_t event, Int_t px, Int_t py, TAxis *axis) override;
196 TObject *FindObject(const char *name) const override;
197 TObject *FindObject(const TObject *obj) const override;
198 void UseCurrentStyle() override; // *MENU*
199 Short_t GetBorderMode() const override { return fBorderMode;}
200 Short_t GetBorderSize() const override { return fBorderSize;}
201 Int_t GetCrosshair() const;
202 Int_t GetCanvasID() const override;
203 TCanvasImp *GetCanvasImp() const override;
204 TFrame *GetFrame() override;
205 Int_t GetEvent() const override;
206 Int_t GetEventX() const override;
207 Int_t GetEventY() const override;
208 Color_t GetHighLightColor() const override;
209 void GetRange(Double_t &x1, Double_t &y1, Double_t &x2, Double_t &y2) override;
211 void GetPadPar(Double_t &xlow, Double_t &ylow, Double_t &xup, Double_t &yup) override;
212 Double_t GetXlowNDC() const override { return fXlowNDC; }
213 Double_t GetYlowNDC() const override { return fYlowNDC; }
214 /// Get width of pad along X in Normalized Coordinates (NDC)
215 Double_t GetWNDC() const override { return fWNDC; }
216 /// Get height of pad along Y in Normalized Coordinates (NDC)
217 Double_t GetHNDC() const override { return fHNDC; }
218 UInt_t GetWw() const override;
219 UInt_t GetWh() const override;
220 Double_t GetAbsXlowNDC() const override { return fAbsXlowNDC; }
221 Double_t GetAbsYlowNDC() const override { return fAbsYlowNDC; }
222 Double_t GetAbsWNDC() const override { return fAbsWNDC; }
223 Double_t GetAbsHNDC() const override { return fAbsHNDC; }
224 Double_t GetAspectRatio() const override { return fAspectRatio; }
225 Double_t GetPhi() const override { return fPhi; }
226 Double_t GetTheta() const override { return fTheta; }
227 ///Returns the minimum x-coordinate value visible on the pad. If log axis the returned value is in decades.
228 Double_t GetUxmin() const override { return fUxmin; }
229 ///Returns the minimum y-coordinate value visible on the pad. If log axis the returned value is in decades.
230 Double_t GetUymin() const override { return fUymin; }
231 ///Returns the maximum x-coordinate value visible on the pad. If log axis the returned value is in decades.
232 Double_t GetUxmax() const override { return fUxmax; }
233 ///Returns the maximum y-coordinate value visible on the pad. If log axis the returned value is in decades.
234 Double_t GetUymax() const override { return fUymax; }
235 Bool_t GetGridx() const override { return fGridx; }
236 Bool_t GetGridy() const override { return fGridy; }
237 Int_t GetNumber() const override { return fNumber; }
238 Int_t GetTickx() const override { return fTickx; }
239 Int_t GetTicky() const override { return fTicky; }
240 Double_t GetX1() const override { return fX1; }
241 Double_t GetX2() const override { return fX2; }
242 Double_t GetY1() const override { return fY1; }
243 Double_t GetY2() const override { return fY2; }
244 static Int_t GetMaxPickDistance();
245 TList *GetListOfPrimitives() const override { return fPrimitives; }
246 TList *GetListOfExecs() const override { return fExecs; }
247 TObject *GetPrimitive(const char *name) const override; //obsolete, use FindObject instead
248 TObject *GetSelected() const override;
249 TVirtualPad *GetPad(Int_t subpadnumber) const override;
250 TObject *GetPadPointer() const override { return fPadPointer; }
251 TVirtualPad *GetPadSave() const override;
252 TVirtualPad *GetSelectedPad() const override;
253 Int_t GetGLDevice() override;
254 TView *GetView() const override { return fView; }
255 TObject *GetView3D() const override { return fPadView3D; }// Return 3D View of this TPad
256 Int_t GetLogx() const override { return fLogx; }
257 Int_t GetLogy() const override { return fLogy; }
258 Int_t GetLogz() const override { return fLogz; }
259 TVirtualPad *GetMother() const override { return fMother; }
260 const char *GetName() const override { return fName.Data(); }
261 const char *GetTitle() const override { return fTitle.Data(); }
262 TCanvas *GetCanvas() const override { return fCanvas; }
263 TVirtualPad *GetVirtCanvas() const override;
264 TVirtualPadPainter *GetPainter() override;
265 Int_t GetPadPaint() const override { return fPadPaint; }
266 Int_t GetPixmapID() const override { return fPixmapID; }
267 ULong_t Hash() const override { return fName.Hash(); }
268 Bool_t HasCrosshair() const override;
269 void HighLight(Color_t col=kRed, Bool_t set=kTRUE) override;
270 Bool_t HasFixedAspectRatio() const override { return fFixedAspectRatio; }
271 Bool_t IsBatch() const override;
272 Bool_t IsEditable() const override { return fEditable; }
273 Bool_t IsFolder() const override { return kTRUE; }
274 Bool_t IsModified() const override { return fModified; }
275 Bool_t IsRetained() const override;
276 Bool_t IsVertical() const override { return !TestBit(kHori); }
277 Bool_t IsWeb() const override;
278 void ls(Option_t *option="") const override;
279 void Modified(Bool_t flag=true) override; // *SIGNAL*
280 void ModifiedUpdate() override;
281 Bool_t OpaqueMoving() const override;
282 Bool_t OpaqueResizing() const override;
283 Double_t PadtoX(Double_t x) const override;
284 Double_t PadtoY(Double_t y) const override;
285 void Paint(Option_t *option="") override;
287 void PaintFillArea(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override; // Obsolete
288 void PaintFillArea(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
289 void PaintFillAreaNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
290 void PaintFillAreaHatches(Int_t n, Double_t *x, Double_t *y, Int_t FillStyle);
291 void PaintHatches(Double_t dy, Double_t angle, Int_t nn, Double_t *xx, Double_t *yy);
294 void PaintLineNDC(Double_t u1, Double_t v1,Double_t u2, Double_t v2) override;
295 void PaintLine3D(Float_t *p1, Float_t *p2) override;
296 void PaintLine3D(Double_t *p1, Double_t *p2) override;
297 void PaintPolyLine(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override;
298 void PaintPolyLine(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
299 void PaintPolyLine3D(Int_t n, Double_t *p) override;
300 void PaintPolyLineNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
301 void PaintPolyMarker(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override;
302 void PaintPolyMarker(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
303 void PaintModified() override;
304 void PaintText(Double_t x, Double_t y, const char *text) override;
305 void PaintText(Double_t x, Double_t y, const wchar_t *text) override;
306 void PaintTextNDC(Double_t u, Double_t v, const char *text) override;
307 void PaintTextNDC(Double_t u, Double_t v, const wchar_t *text) override;
308 virtual TPad *Pick(Int_t px, Int_t py, TObjLink *&pickobj);
309 Double_t PixeltoX(Int_t px) override;
310 Double_t PixeltoY(Int_t py) override;
311 virtual void PixeltoXY(Int_t xpixel, Int_t ypixel, Double_t &x, Double_t &y);
312 void Pop() override; // *MENU*
313 void Print(const char *filename="") const override;
314 void Print(const char *filename, Option_t *option) override;
315 void Range(Double_t x1, Double_t y1, Double_t x2, Double_t y2) override; // *MENU* *ARGS={x1=>fX1,y1=>fY1,x2=>fX2,y2=>fY2}
316 virtual void RangeChanged() { Emit("RangeChanged()"); } // *SIGNAL*
318 void RecursiveRemove(TObject *obj) override;
319 TObject *Remove(TObject *obj, Bool_t modified = kTRUE) override;
320 void RedrawAxis(Option_t *option="") override;
321 void ResetView3D(TObject *view=nullptr) override { fPadView3D=view; }
322 void ResizePad(Option_t *option="") override;
323 virtual void Resized() { Emit("Resized()"); } // *SIGNAL*
324 void SaveAs(const char *filename="",Option_t *option="") const override; // *MENU*
325 void SetBorderMode(Short_t bordermode) override { fBorderMode = bordermode; Modified(); } // *MENU*
326 void SetBorderSize(Short_t bordersize) override { fBorderSize = bordersize; Modified(); } // *MENU*
327 void SetCanvas(TCanvas *c) override { fCanvas = c; }
328 void SetCanvasSize(UInt_t ww, UInt_t wh) override;
329 void SetCrosshair(Int_t crhair=1) override; // *TOGGLE*
330 void SetCursor(ECursor cursor) override;
331 void SetDoubleBuffer(Int_t mode=1) override;
332 void SetDrawOption(Option_t * = "") override {}
333 void SetEditable(Bool_t mode=kTRUE) override; // *TOGGLE*
334 void SetFixedAspectRatio(Bool_t fixed = kTRUE) override; // *TOGGLE*
335 void SetGrid(Int_t valuex = 1, Int_t valuey = 1) override { fGridx = valuex; fGridy = valuey; Modified(); }
336 void SetGridx(Int_t value = 1) override { fGridx = value; Modified(); } // *TOGGLE*
337 void SetGridy(Int_t value = 1) override { fGridy = value; Modified(); } // *TOGGLE*
338 void SetFillStyle(Style_t fstyle) override;
339 void SetLogx(Int_t value = 1) override; // *TOGGLE*
340 void SetLogy(Int_t value = 1) override; // *TOGGLE*
341 void SetLogz(Int_t value = 1) override; // *TOGGLE*
342 virtual void SetNumber(Int_t number) { fNumber = number; }
343 void SetPad(const char *name, const char *title,
344 Double_t xlow, Double_t ylow, Double_t xup,
345 Double_t yup, Color_t color=35,
346 Short_t bordersize=5, Short_t bordermode=-1) override;
347 void SetPad(Double_t xlow, Double_t ylow, Double_t xup, Double_t yup) override;
348 void SetAttFillPS(Color_t color, Style_t style) override;
349 void SetAttLinePS(Color_t color, Style_t style, Width_t lwidth) override;
350 void SetAttMarkerPS(Color_t color, Style_t style, Size_t msize) override;
351 void SetAttTextPS(Int_t align, Float_t angle, Color_t color, Style_t font, Float_t tsize) override;
352 static void SetMaxPickDistance(Int_t maxPick=5);
353 void SetName(const char *name) override { fName = name; } // *MENU*
354 void SetSelected(TObject *obj) override;
355 void SetTicks(Int_t valuex = 1, Int_t valuey = 1) override { fTickx = valuex; fTicky = valuey; Modified(); }
356 void SetTickx(Int_t value = 1) override { fTickx = value; Modified(); } // *TOGGLE*
357 void SetTicky(Int_t value = 1) override { fTicky = value; Modified(); } // *TOGGLE*
358 void SetTitle(const char *title="") override { fTitle = title; }
359 void SetTheta(Double_t theta=30) override { fTheta = theta; Modified(); }
360 void SetPhi(Double_t phi=30) override { fPhi = phi; Modified(); }
361 void SetToolTipText(const char *text, Long_t delayms = 1000) override;
362 void SetVertical(Bool_t vert=kTRUE) override;
363 void SetView(TView *view = nullptr) override;
364 void SetViewer3D(TVirtualViewer3D *viewer3d) override { fViewer3D = viewer3d; }
365
366 virtual void SetGLDevice(Int_t dev) {fGLDevice = dev;}
367 void SetCopyGLDevice(Bool_t copy) override { fCopyGLDevice = copy; }
368
369 void ShowGuidelines(TObject *object, const Int_t event, const char mode = 'i', const bool cling = true) override;
370 void Update() override;
371 void UpdateAsync() override;
372
373 Int_t UtoAbsPixel(Double_t u) const override;
374 Int_t VtoAbsPixel(Double_t v) const override;
375 Int_t UtoPixel(Double_t u) const override;
376 Int_t VtoPixel(Double_t v) const override;
377 TObject *WaitPrimitive(const char *pname="", const char *emode="") override;
378 Int_t XtoAbsPixel(Double_t x) const override;
379 Int_t YtoAbsPixel(Double_t y) const override;
380 Double_t XtoPad(Double_t x) const override;
381 Double_t YtoPad(Double_t y) const override;
382 Int_t XtoPixel(Double_t x) const override;
383 Int_t YtoPixel(Double_t y) const override;
384 virtual void XYtoAbsPixel(Double_t x, Double_t y, Int_t &xpixel, Int_t &ypixel) const;
385 virtual void XYtoPixel(Double_t x, Double_t y, Int_t &xpixel, Int_t &ypixel) const;
386
387 TObject *CreateToolTip(const TBox *b, const char *text, Long_t delayms) override;
388 void DeleteToolTip(TObject *tip) override;
389 void ResetToolTip(TObject *tip) override;
390 void CloseToolTip(TObject *tip) override;
391
392 Int_t IncrementPaletteColor(Int_t i, TString opt) override;
393 Int_t NextPaletteColor() override;
394
395 void DrawCollideGrid();
396 Bool_t PlaceBox(TObject *o, Double_t w, Double_t h, Double_t &xl, Double_t &yb, Option_t* option = "lb") override;
397
398 virtual void x3d(Option_t *type=""); // Depreciated
399
400 TVirtualViewer3D *GetViewer3D(Option_t * type = "") override;
401 Bool_t HasViewer3D() const override { return fViewer3D != nullptr; }
402 void ReleaseViewer3D(Option_t * type = "") override;
403
404 Rectangle_t GetBBox() override;
405 TPoint GetBBoxCenter() override;
406 void SetBBoxCenter(const TPoint &p) override;
407 void SetBBoxCenterX(const Int_t x) override;
408 void SetBBoxCenterY(const Int_t y) override;
409 void SetBBoxX1(const Int_t x) override;
410 void SetBBoxX2(const Int_t x) override;
411 void SetBBoxY1(const Int_t y) override;
412 void SetBBoxY2(const Int_t y) override;
413
414 virtual void RecordPave(const TObject *obj); // *SIGNAL*
415 virtual void RecordLatex(const TObject *obj); // *SIGNAL*
416 virtual void EventPave() { Emit("EventPave()"); } // *SIGNAL*
417 virtual void StartEditing() { Emit("StartEditing()"); } // *SIGNAL*
418
419 ClassDefOverride(TPad,13) //A Graphics pad
420};
421
422#endif
423
ECursor
Definition GuiTypes.h:372
#define b(i)
Definition RSha256.hxx:100
#define c(i)
Definition RSha256.hxx:101
#define h(i)
Definition RSha256.hxx:106
short Style_t
Definition RtypesCore.h:82
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
short Color_t
Definition RtypesCore.h:85
float Size_t
Definition RtypesCore.h:89
unsigned long ULong_t
Definition RtypesCore.h:55
long Long_t
Definition RtypesCore.h:54
unsigned int UInt_t
Definition RtypesCore.h:46
short Width_t
Definition RtypesCore.h:84
float Float_t
Definition RtypesCore.h:57
short Short_t
Definition RtypesCore.h:39
double Double_t
Definition RtypesCore.h:59
constexpr Bool_t kTRUE
Definition RtypesCore.h:93
const char Option_t
Definition RtypesCore.h:66
#define BIT(n)
Definition Rtypes.h:90
@ kRed
Definition Rtypes.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:346
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t cursor
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void SetDoubleBuffer
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
Option_t Option_t SetFillStyle
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Option_t Option_t TPoint TPoint const char x2
Option_t Option_t TPoint TPoint const char x1
Option_t Option_t TPoint TPoint angle
Option_t Option_t TPoint TPoint const char mode
Option_t Option_t TPoint TPoint const char y2
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void SetCursor
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
Option_t Option_t style
Option_t Option_t TPoint TPoint const char text
Option_t Option_t TPoint TPoint const char y1
char name[80]
Definition TGX11.cxx:110
float xmin
float ymin
float xmax
float ymax
Draw all kinds of Arrows.
Definition TArrow.h:29
Abstract base class for elements drawn in the editor.
Definition TAttBBox2D.h:19
Class to manage histogram axis.
Definition TAxis.h:31
Create a Box.
Definition TBox.h:22
Using a TBrowser one can browse all ROOT objects.
Definition TBrowser.h:37
ABC describing GUI independent main window (with menubar, scrollbars and a drawing area).
Definition TCanvasImp.h:30
The Canvas class.
Definition TCanvas.h:23
Define a Frame.
Definition TFrame.h:19
1-D histogram with a float per channel (see TH1 documentation)
Definition TH1.h:622
This class displays a legend box (TPaveText) containing several legend entries.
Definition TLegend.h:23
A doubly linked list.
Definition TList.h:38
Mother of all ROOT objects.
Definition TObject.h:41
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition TObject.h:199
The most important graphics class in the ROOT system.
Definition TPad.h:28
void SetGridx(Int_t value=1) override
Definition TPad.h:336
Short_t GetBorderMode() const override
Definition TPad.h:199
Bool_t OpaqueMoving() const override
Is pad moving in opaque mode ?
Definition TPad.cxx:2879
void SetBorderSize(Short_t bordersize) override
Definition TPad.h:326
void PaintTextNDC(Double_t u, Double_t v, const char *text) override
Paint text in CurrentPad NDC coordinates.
Definition TPad.cxx:4613
Int_t GetTicky() const override
Definition TPad.h:239
virtual Int_t Clip(Float_t *x, Float_t *y, Float_t xclipl, Float_t yclipb, Float_t xclipr, Float_t yclipt)
Clipping routine: Cohen Sutherland algorithm.
Definition TPad.cxx:768
virtual void HideToolTip(Int_t event)
Hide tool tip depending on the event type.
Definition TPad.cxx:2847
Double_t fAbsYlowNDC
Absolute Y top left corner of pad in NDC [0,1].
Definition TPad.h:70
Double_t fXtoAbsPixelk
Conversion coefficient for X World to absolute pixel.
Definition TPad.h:41
void SetAttMarkerPS(Color_t color, Style_t style, Size_t msize) override
Set postscript marker attributes.
Definition TPad.cxx:6227
virtual void DivideSquare(Int_t n, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
"n" is the total number of sub-pads.
Definition TPad.cxx:1341
void AbsCoordinates(Bool_t set) override
Definition TPad.h:167
Double_t AbsPixeltoY(Int_t py) override
Definition TPad.h:169
Bool_t IsBatch() const override
Is pad in batch mode ?
Definition TPad.cxx:2856
Double_t GetUymax() const override
Returns the maximum y-coordinate value visible on the pad. If log axis the returned value is in decad...
Definition TPad.h:234
void AddExec(const char *name, const char *command) override
Add a new TExec object to the list of Execs.
Definition TPad.cxx:498
void SetViewer3D(TVirtualViewer3D *viewer3d) override
Definition TPad.h:364
Double_t fWNDC
Width of pad along X in Normalized Coordinates (NDC)
Definition TPad.h:66
void SetName(const char *name) override
Definition TPad.h:353
Int_t NextPaletteColor() override
Get the next autocolor in the pad.
Definition TPad.cxx:3118
Int_t VtoPixel(Double_t v) const override
Convert Y NDC to pixel.
Definition TPad.cxx:7465
void PaintBorder(Color_t color, Bool_t tops)
Paint the pad border.
Definition TPad.cxx:3644
Double_t GetPhi() const override
Definition TPad.h:225
Bool_t IsEditable() const override
Definition TPad.h:272
void FillCollideGrid(TObject *o)
Initialise the grid used to find empty space when adding a box (Legend) in a pad.
Definition TPad.cxx:3134
void SetView(TView *view=nullptr) override
Set the current TView. Delete previous view if view=0.
Definition TPad.cxx:6195
TVirtualViewer3D * GetViewer3D(Option_t *type="") override
Create/obtain handle to 3D viewer.
Definition TPad.cxx:7151
Double_t fPixeltoYk
Conversion coefficient for pixel to Y World.
Definition TPad.h:59
void PaintHatches(Double_t dy, Double_t angle, Int_t nn, Double_t *xx, Double_t *yy)
This routine draw hatches inclined with the angle "angle" and spaced of "dy" in normalized device coo...
Definition TPad.cxx:4161
void PaintLine3D(Float_t *p1, Float_t *p2) override
Paint 3-D line in the CurrentPad.
Definition TPad.cxx:4356
static Int_t fgMaxPickDistance
Maximum Pick Distance.
Definition TPad.h:115
void ResizePad(Option_t *option="") override
Compute pad conversion coefficients.
Definition TPad.cxx:5624
void PaintPolyMarker(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override
Paint polymarker in CurrentPad World coordinates.
Definition TPad.cxx:4525
void SetGrid(Int_t valuex=1, Int_t valuey=1) override
Definition TPad.h:335
Double_t fPhi
phi angle to view as lego/surface
Definition TPad.h:80
Double_t GetAspectRatio() const override
Definition TPad.h:224
void DestroyExternalViewer3D()
Double_t fPixeltoY
yworld = fPixeltoYk + fPixeltoY*ypixel
Definition TPad.h:60
virtual void RecordLatex(const TObject *obj)
Emit RecordLatex() signal.
Definition TPad.cxx:7254
Double_t fAbsXlowNDC
Absolute X top left corner of pad in NDC [0,1].
Definition TPad.h:69
TList * GetListOfExecs() const override
Definition TPad.h:246
void SetTickx(Int_t value=1) override
Definition TPad.h:356
Double_t fVtoPixelk
Conversion coefficient for V NDC to pixel.
Definition TPad.h:52
Bool_t fGridx
Set to true if grid along X.
Definition TPad.h:100
TObject * fPadView3D
! 3D View of this TPad
Definition TPad.h:114
void SetTitle(const char *title="") override
Definition TPad.h:358
void CopyBackgroundPixmaps(TPad *start, TPad *stop, Int_t x, Int_t y)
Copy pixmaps of pads laying below pad "stop" into pad "stop".
Definition TPad.cxx:3990
Double_t GetUxmax() const override
Returns the maximum x-coordinate value visible on the pad. If log axis the returned value is in decad...
Definition TPad.h:232
void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0) override
Automatic pad generation by division.
Definition TPad.cxx:1249
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitives in this pad on the C++ source file out.
Definition TPad.cxx:5847
virtual void StartEditing()
Definition TPad.h:417
Double_t fXtoPixel
xpixel = fXtoPixelk + fXtoPixel*xworld
Definition TPad.h:43
TList * fExecs
List of commands to be executed when a pad event occurs.
Definition TPad.h:108
Double_t PadtoY(Double_t y) const override
Convert y from pad to Y.
Definition TPad.cxx:3551
Int_t fTickx
Set to 1 if tick marks along X.
Definition TPad.h:89
void SetBBoxY1(const Int_t y) override
Set top of BoundingBox to a value (resize in y direction on top)
Definition TPad.cxx:7363
Int_t fTicky
Set to 1 if tick marks along Y.
Definition TPad.h:90
Int_t GetPixmapID() const override
Definition TPad.h:266
virtual void XYtoAbsPixel(Double_t x, Double_t y, Int_t &xpixel, Int_t &ypixel) const
Convert X/Y into absolute pixel coordinates.
Definition TPad.cxx:7434
TPad(const TPad &pad)=delete
Bool_t GetGridx() const override
Definition TPad.h:235
Double_t fX2
X of upper X coordinate.
Definition TPad.h:38
Bool_t PlaceBox(TObject *o, Double_t w, Double_t h, Double_t &xl, Double_t &yb, Option_t *option="lb") override
Place a box in NDC space.
Definition TPad.cxx:3203
void SetLogz(Int_t value=1) override
Set Lin/Log scale for Z.
Definition TPad.cxx:6111
Bool_t fEmbeddedGL
!
Definition TPad.h:87
Int_t UtoAbsPixel(Double_t u) const override
Convert X NDC to absolute pixel.
Definition TPad.cxx:7478
void Browse(TBrowser *b) override
Browse pad.
Definition TPad.cxx:523
Int_t XtoPixel(Double_t x) const override
Convert X coordinate to pixel.
Definition TPad.cxx:7505
void SetAttFillPS(Color_t color, Style_t style) override
Set postscript fill area attributes.
Definition TPad.cxx:6204
Int_t fCGnx
! Size of the collide grid along x
Definition TPad.h:119
void SetBBoxCenterY(const Int_t y) override
Set Y coordinate of the center of the Pad.
Definition TPad.cxx:7327
Double_t fPixeltoX
xworld = fPixeltoXk + fPixeltoX*xpixel
Definition TPad.h:57
void CopyBackgroundPixmap(Int_t x, Int_t y)
Copy pixmap of this pad as background of the current pad.
Definition TPad.cxx:4008
~TPad() override
Pad destructor.
Definition TPad.cxx:379
Bool_t fCopyGLDevice
!
Definition TPad.h:86
Double_t fYtoPixel
ypixel = fYtoPixelk + fYtoPixel*yworld
Definition TPad.h:46
Double_t GetY2() const override
Definition TPad.h:243
void DeleteToolTip(TObject *tip) override
Delete tool tip object.
Definition TPad.cxx:7101
void Close(Option_t *option="") override
Delete all primitives in pad and pad itself.
Definition TPad.cxx:1070
Int_t GetNumber() const override
Definition TPad.h:237
Double_t fAbsWNDC
Absolute Width of pad along X in NDC.
Definition TPad.h:71
TObject * Remove(TObject *obj, Bool_t modified=kTRUE) override
Remove object from list of primitives When.
Definition TPad.cxx:5407
UInt_t GetWw() const override
Get Ww.
Definition TPad.cxx:2837
void PaintModified() override
Traverse pad hierarchy and (re)paint only modified pads.
Definition TPad.cxx:3812
void SetEditable(Bool_t mode=kTRUE) override
Set pad editable yes/no If a pad is not editable:
Definition TPad.cxx:6055
const char * GetTitle() const override
Returns title of object.
Definition TPad.h:261
void PaintDate()
Paint the current date and time if the option Date is set on via gStyle->SetOptDate() Paint the curre...
Definition TPad.cxx:3750
static void SetMaxPickDistance(Int_t maxPick=5)
static function to set the maximum Pick Distance fgMaxPickDistance This parameter is used in TPad::Pi...
Definition TPad.cxx:6680
void SetBBoxX2(const Int_t x) override
Set right hand side of BoundingBox to a value (resize in x direction on right)
Definition TPad.cxx:7352
void SetBBoxX1(const Int_t x) override
Set lefthandside of BoundingBox to a value (resize in x direction on left)
Definition TPad.cxx:7339
virtual Int_t ClippingCode(Double_t x, Double_t y, Double_t xcl1, Double_t ycl1, Double_t xcl2, Double_t ycl2)
Compute the endpoint codes for TPad::Clip.
Definition TPad.cxx:901
Double_t GetUymin() const override
Returns the minimum y-coordinate value visible on the pad. If log axis the returned value is in decad...
Definition TPad.h:230
Double_t fX1
X of lower X coordinate.
Definition TPad.h:36
TList * GetListOfPrimitives() const override
Definition TPad.h:245
TObject * GetPadPointer() const override
Definition TPad.h:250
TH1F * DrawFrame(Double_t xmin, Double_t ymin, Double_t xmax, Double_t ymax, const char *title="") override
Draw an empty pad frame with X and Y axis.
Definition TPad.cxx:1678
Double_t fVtoPixel
ypixel = fVtoPixelk + fVtoPixel*vndc
Definition TPad.h:53
TCanvasImp * GetCanvasImp() const override
Get canvas implementation pointer if any.
Definition TPad.cxx:2746
Int_t GetEvent() const override
Get Event.
Definition TPad.cxx:2754
TObject * GetView3D() const override
Definition TPad.h:255
Double_t PadtoX(Double_t x) const override
Convert x from pad to X.
Definition TPad.cxx:3542
virtual void PixeltoXY(Int_t xpixel, Int_t ypixel, Double_t &x, Double_t &y)
Convert pixel to X/Y coordinates.
Definition TPad.cxx:7425
virtual void DrawCrosshair()
Function called to draw a crosshair in the canvas.
Definition TPad.cxx:1605
Double_t YtoPad(Double_t y) const override
Convert y from Y to pad.
Definition TPad.cxx:3572
virtual void RangeChanged()
Definition TPad.h:316
Double_t fUymin
Minimum value on the Y axis.
Definition TPad.h:75
void SetPad(const char *name, const char *title, Double_t xlow, Double_t ylow, Double_t xup, Double_t yup, Color_t color=35, Short_t bordersize=5, Short_t bordermode=-1) override
Set all pad parameters.
Definition TPad.cxx:6171
Int_t GetCanvasID() const override
Get canvas identifier.
Definition TPad.cxx:2738
Int_t fLogz
(=0 if Z linear scale, =1 if log scale)
Definition TPad.h:93
Double_t fYtoPixelk
Conversion coefficient for Y World to pixel.
Definition TPad.h:45
void UpdateAsync() override
Asynchronous pad update.
Definition TPad.cxx:2947
TPad()
Pad default constructor.
Definition TPad.cxx:132
Double_t AbsPixeltoX(Int_t px) override
Definition TPad.h:168
void UseCurrentStyle() override
Force a copy of current style for all objects in pad.
Definition TPad.cxx:6927
static Int_t GetMaxPickDistance()
Static function (see also TPad::SetMaxPickDistance)
Definition TPad.cxx:2794
Int_t VtoAbsPixel(Double_t v) const override
Convert Y NDC to absolute pixel.
Definition TPad.cxx:7486
void Range(Double_t x1, Double_t y1, Double_t x2, Double_t y2) override
Set world coordinate system for the pad.
Definition TPad.cxx:5331
virtual void EventPave()
Definition TPad.h:416
Double_t fUtoPixelk
Conversion coefficient for U NDC to pixel.
Definition TPad.h:49
Double_t fPixeltoXk
Conversion coefficient for pixel to X World.
Definition TPad.h:56
Bool_t IsModified() const override
Definition TPad.h:274
Double_t fY1
Y of lower Y coordinate.
Definition TPad.h:37
Int_t GetEventY() const override
Get Y event.
Definition TPad.cxx:2770
Int_t fGLDevice
! OpenGL off-screen pixmap identifier
Definition TPad.h:85
Double_t fYlowNDC
Y bottom left corner of pad in NDC [0,1].
Definition TPad.h:63
TObject * WaitPrimitive(const char *pname="", const char *emode="") override
Loop and sleep until a primitive with name=pname is found in the pad.
Definition TPad.cxx:7047
TPad & operator=(const TPad &rhs)=delete
void SetAttTextPS(Int_t align, Float_t angle, Color_t color, Style_t font, Float_t tsize) override
Set postscript text attributes.
Definition TPad.cxx:6239
Bool_t fModified
Set to true when pad is modified.
Definition TPad.h:99
TLegend * BuildLegend(Double_t x1=0.3, Double_t y1=0.21, Double_t x2=0.3, Double_t y2=0.21, const char *title="", Option_t *option="") override
Build a legend from the graphical objects in the pad.
Definition TPad.cxx:555
virtual TPad * Pick(Int_t px, Int_t py, TObjLink *&pickobj)
Search for an object at pixel position px,py.
Definition TPad.cxx:4657
void Update() override
Update pad.
Definition TPad.cxx:2935
virtual void SetNumber(Int_t number)
Definition TPad.h:342
Int_t fNumber
pad number identifier
Definition TPad.h:88
void PaintFillAreaNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override
Paint fill area in CurrentPad NDC coordinates.
Definition TPad.cxx:4065
Double_t PixeltoX(Int_t px) override
Convert pixel to X coordinate.
Definition TPad.cxx:7407
void SetPhi(Double_t phi=30) override
Definition TPad.h:360
Double_t fAbsPixeltoXk
Conversion coefficient for absolute pixel to X World.
Definition TPad.h:55
void Clear(Option_t *option="") override
Delete all pad primitives.
Definition TPad.cxx:722
Int_t YtoPixel(Double_t y) const override
Convert Y coordinate to pixel.
Definition TPad.cxx:7529
Int_t GetTickx() const override
Definition TPad.h:238
void PaintLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2) override
Paint line in CurrentPad World coordinates.
Definition TPad.cxx:4313
Int_t GetGLDevice() override
Get GL device.
Definition TPad.cxx:7238
Double_t fAspectRatio
ratio of w/h in case of fixed ratio
Definition TPad.h:82
virtual void RecordPave(const TObject *obj)
Emit RecordPave() signal.
Definition TPad.cxx:7246
void PaintBorderPS(Double_t xl, Double_t yl, Double_t xt, Double_t yt, Int_t bmode, Int_t bsize, Int_t dark, Int_t light) override
Paint a frame border with Postscript.
Definition TPad.cxx:3740
Double_t fUymax
Maximum value on the Y axis.
Definition TPad.h:77
void SetLogy(Int_t value=1) override
Set Lin/Log scale for Y.
Definition TPad.cxx:6100
virtual Int_t ClipPolygon(Int_t n, Double_t *x, Double_t *y, Int_t nn, Double_t *xc, Double_t *yc, Double_t xclipl, Double_t yclipb, Double_t xclipr, Double_t yclipt)
Clip polygon using the Sutherland-Hodgman algorithm.
Definition TPad.cxx:950
void ExecuteEventAxis(Int_t event, Int_t px, Int_t py, TAxis *axis) override
Execute action corresponding to one event for a TAxis object (called by TAxis::ExecuteEvent....
Definition TPad.cxx:2361
void HighLight(Color_t col=kRed, Bool_t set=kTRUE) override
Highlight pad.
Definition TPad.cxx:3055
void SetBatch(Bool_t batch=kTRUE) override
Set pad in batch mode.
Definition TPad.cxx:2895
TCanvas * fCanvas
! Pointer to mother canvas
Definition TPad.h:106
TVirtualPad * GetMother() const override
Definition TPad.h:259
TVirtualViewer3D * fViewer3D
! Current 3D viewer
Definition TPad.h:123
virtual void x3d(Option_t *type="")
Deprecated: use TPad::GetViewer3D() instead.
Definition TPad.cxx:7133
Bool_t HasCrosshair() const override
Return kTRUE if the crosshair has been activated (via SetCrosshair).
Definition TPad.cxx:6642
Bool_t IsRetained() const override
Is pad retained ?
Definition TPad.cxx:2864
Bool_t Collide(Int_t i, Int_t j, Int_t w, Int_t h)
Check if a box of size w and h collide some primitives in the pad at position i,j.
Definition TPad.cxx:3179
Int_t GetPadPaint() const override
Definition TPad.h:265
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute distance from point px,py to a box.
Definition TPad.cxx:1174
Bool_t fFixedAspectRatio
True if fixed aspect ratio.
Definition TPad.h:104
void PaintFillArea(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override
Definition TPad.cxx:4017
void Modified(Bool_t flag=true) override
Mark pad modified Will be repainted when TCanvas::Update() will be called next time.
Definition TPad.cxx:7388
void RecursiveRemove(TObject *obj) override
Recursively remove object from a pad and its sub-pads.
Definition TPad.cxx:5389
Bool_t HasFixedAspectRatio() const override
Definition TPad.h:270
void CloseToolTip(TObject *tip) override
Hide tool tip.
Definition TPad.cxx:7123
Double_t GetUxmin() const override
Returns the minimum x-coordinate value visible on the pad. If log axis the returned value is in decad...
Definition TPad.h:228
void SetToolTipText(const char *text, Long_t delayms=1000) override
Set tool tip text associated with this pad.
Definition TPad.cxx:6690
void PaintPolyLine(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override
Paint polyline in CurrentPad World coordinates.
Definition TPad.cxx:4392
void ls(Option_t *option="") const override
List all primitives in pad.
Definition TPad.cxx:3090
TView * GetView() const override
Definition TPad.h:254
void ModifiedUpdate() override
Short cut to call Modified() and Update() in a single call.
Definition TPad.cxx:3530
Double_t fVtoAbsPixelk
Conversion coefficient for V NDC to absolute pixel.
Definition TPad.h:51
TVirtualPad * GetPadSave() const override
Get save pad.
Definition TPad.cxx:2820
void SetAttLinePS(Color_t color, Style_t style, Width_t lwidth) override
Set postscript line attributes.
Definition TPad.cxx:6215
virtual void Resized()
Definition TPad.h:323
Bool_t IsFolder() const override
Returns kTRUE in case object contains browsable objects (like containers or lists of other objects).
Definition TPad.h:273
TVirtualPad * GetVirtCanvas() const override
Get virtual canvas.
Definition TPad.cxx:2778
void DeleteExec(const char *name) override
Remove TExec name from the list of Execs.
Definition TPad.cxx:1158
Bool_t HasViewer3D() const override
Definition TPad.h:401
void SetCanvas(TCanvas *c) override
Definition TPad.h:327
TString fTitle
Pad title.
Definition TPad.h:110
void CopyPixmaps() override
Copy the sub-pixmaps of the pad to the canvas.
Definition TPad.cxx:1143
void CopyPixmap() override
Copy the pixmap of the pad to the canvas.
Definition TPad.cxx:1129
Double_t GetY1() const override
Definition TPad.h:242
Int_t UtoPixel(Double_t u) const override
Convert X NDC to pixel.
Definition TPad.cxx:7452
TPoint GetBBoxCenter() override
Return the center of the Pad as TPoint in pixels.
Definition TPad.cxx:7288
void FillCollideGridTFrame(TObject *o)
Definition TPad.cxx:3334
Bool_t GetGridy() const override
Definition TPad.h:236
void LineNotFree(Int_t x1, Int_t x2, Int_t y1, Int_t y2)
Mark as "not free" the cells along a line.
Definition TPad.cxx:3274
virtual void AbsPixeltoXY(Int_t xpixel, Int_t ypixel, Double_t &x, Double_t &y)
Convert absolute pixel into X/Y coordinates.
Definition TPad.cxx:7397
Double_t fAbsHNDC
Absolute Height of pad along Y in NDC.
Definition TPad.h:72
void ExecuteEvent(Int_t event, Int_t px, Int_t py) override
Execute action corresponding to one event.
Definition TPad.cxx:1786
void SetDrawOption(Option_t *="") override
Set drawing option for object.
Definition TPad.h:332
TObject * fTip
! tool tip associated with box
Definition TPad.h:33
void SetCanvasSize(UInt_t ww, UInt_t wh) override
Set canvas size.
Definition TPad.cxx:2903
Int_t GetLogz() const override
Definition TPad.h:258
virtual void XYtoPixel(Double_t x, Double_t y, Int_t &xpixel, Int_t &ypixel) const
Convert X/Y into pixel coordinates.
Definition TPad.cxx:7443
virtual void AutoExec()
Execute the list of Execs when a pad event occurs.
Definition TPad.cxx:508
Bool_t fAbsCoord
Use absolute coordinates.
Definition TPad.h:102
Int_t fNumPaletteColor
Number of objects with an automatic color.
Definition TPad.h:116
Int_t fCrosshairPos
Position of crosshair.
Definition TPad.h:96
void FillCollideGridTGraph(TObject *o)
Definition TPad.cxx:3360
void SetFixedAspectRatio(Bool_t fixed=kTRUE) override
Fix pad aspect ratio to current value if fixed is true.
Definition TPad.cxx:6031
Short_t GetBorderSize() const override
Definition TPad.h:200
void RedrawAxis(Option_t *option="") override
Redraw the frame axis.
Definition TPad.cxx:5450
void DrawDist(Rectangle_t aBBox, Rectangle_t bBBox, char mode)
Draw Arrows to indicated equal distances of Objects with given BBoxes.
Definition TPad.cxx:6266
Int_t fLogx
(=0 if X linear scale, =1 if log scale)
Definition TPad.h:91
Double_t GetAbsWNDC() const override
Definition TPad.h:222
Int_t YtoAbsPixel(Double_t y) const override
Convert Y coordinate to absolute pixel.
Definition TPad.cxx:7518
Double_t fUtoPixel
xpixel = fUtoPixelk + fUtoPixel*undc
Definition TPad.h:50
Int_t fCrosshair
Crosshair type (0 if no crosshair requested)
Definition TPad.h:95
void PaintFillAreaHatches(Int_t n, Double_t *x, Double_t *y, Int_t FillStyle)
This function paints hatched fill area according to the FillStyle value The convention for the Hatch ...
Definition TPad.cxx:4108
void RangeAxis(Double_t xmin, Double_t ymin, Double_t xmax, Double_t ymax) override
Set axis coordinate system for the pad.
Definition TPad.cxx:5369
Double_t fUtoAbsPixelk
Conversion coefficient for U NDC to absolute pixel.
Definition TPad.h:48
void ResetToolTip(TObject *tip) override
Reset tool tip, i.e.
Definition TPad.cxx:7112
Double_t GetTheta() const override
Definition TPad.h:226
TList * fPrimitives
->List of primitives (subpads)
Definition TPad.h:107
UInt_t GetWh() const override
Get Wh.
Definition TPad.cxx:2829
TCanvas * GetCanvas() const override
Definition TPad.h:262
Short_t fBorderSize
pad bordersize in pixels
Definition TPad.h:97
void Add(TObject *obj, Option_t *opt="", Bool_t modified=kTRUE) override
Add an object to list of primitives with speicified draw option When.
Definition TPad.cxx:418
void SetGridy(Int_t value=1) override
Definition TPad.h:337
TView * fView
! Pointer to 3-D view (if one exists)
Definition TPad.h:112
Rectangle_t GetBBox() override
Return the bounding Box of the Pad.
Definition TPad.cxx:7271
virtual void SetGLDevice(Int_t dev)
Definition TPad.h:366
void Paint(Option_t *option="") override
Paint all primitives in pad.
Definition TPad.cxx:3584
void FillCollideGridTBox(TObject *o)
Definition TPad.cxx:3317
Double_t fTheta
theta angle to view as lego/surface
Definition TPad.h:79
void DrawCollideGrid()
This method draws the collide grid on top of the canvas.
Definition TPad.cxx:3473
TString fName
Pad name.
Definition TPad.h:109
void SetVertical(Bool_t vert=kTRUE) override
Set pad vertical (default) or horizontal.
Definition TPad.cxx:6704
void FillCollideGridTH1(TObject *o)
Definition TPad.cxx:3391
void GetPadPar(Double_t &xlow, Double_t &ylow, Double_t &xup, Double_t &yup) override
Return lower and upper bounds of the pad in NDC coordinates.
Definition TPad.cxx:3021
void PaintText(Double_t x, Double_t y, const char *text) override
Paint text in CurrentPad World coordinates.
Definition TPad.cxx:4587
Int_t fPadPaint
Set to 1 while painting the pad.
Definition TPad.h:94
static void DrawColorTable()
Static function to Display Color Table in a pad.
Definition TPad.cxx:1723
Double_t GetXlowNDC() const override
Definition TPad.h:212
void SaveAs(const char *filename="", Option_t *option="") const override
Save the pad content in a file.
Definition TPad.cxx:5784
Int_t fPixmapID
! Off-screen pixmap identifier
Definition TPad.h:84
Bool_t fEditable
True if canvas is editable.
Definition TPad.h:103
Double_t GetYlowNDC() const override
Definition TPad.h:213
TObject * FindObject(const char *name) const override
Search if object named name is inside this pad or in pads inside this pad.
Definition TPad.cxx:2700
Color_t GetHighLightColor() const override
Get highlight color.
Definition TPad.cxx:2786
Bool_t OpaqueResizing() const override
Is pad resizing in opaque mode ?
Definition TPad.cxx:2887
Double_t fXUpNDC
Definition TPad.h:64
void ResetView3D(TObject *view=nullptr) override
Definition TPad.h:321
std::vector< Bool_t > fCollideGrid
! Grid used to find empty space when adding a box (Legend) in a pad
Definition TPad.h:118
TVirtualPad * cd(Int_t subpadnumber=0) override
Set Current pad.
Definition TPad.cxx:693
Int_t GetLogy() const override
Definition TPad.h:257
void PaintLineNDC(Double_t u1, Double_t v1, Double_t u2, Double_t v2) override
Paint line in normalized coordinates.
Definition TPad.cxx:4336
Double_t PixeltoY(Int_t py) override
Convert pixel to Y coordinate.
Definition TPad.cxx:7416
void Print(const char *filename="") const override
This method is equivalent to SaveAs("filename"). See TPad::SaveAs for details.
Definition TPad.cxx:4798
Int_t GetEventX() const override
Get X event.
Definition TPad.cxx:2762
TFrame * GetFrame() override
Get frame.
Definition TPad.cxx:2955
Double_t fYUpNDC
Definition TPad.h:65
Double_t fYtoAbsPixelk
Conversion coefficient for Y World to absolute pixel.
Definition TPad.h:44
Double_t fXtoPixelk
Conversion coefficient for X World to pixel.
Definition TPad.h:42
Int_t fLogy
(=0 if Y linear scale, =1 if log scale)
Definition TPad.h:92
TFrame * fFrame
! Pointer to 2-D frame (if one exists)
Definition TPad.h:111
TVirtualPadPainter * GetPainter() override
Get pad painter from TCanvas.
Definition TPad.cxx:7262
virtual void Closed()
Definition TPad.h:184
Double_t fHNDC
Height of pad along Y in Normalized Coordinates (NDC)
Definition TPad.h:67
void ShowGuidelines(TObject *object, const Int_t event, const char mode='i', const bool cling=true) override
Shows lines to indicate if a TAttBBox2D object is aligned to the center or to another object,...
Definition TPad.cxx:6350
Int_t GetCrosshair() const
Return the crosshair type (from the mother canvas) crosshair type = 0 means no crosshair.
Definition TPad.cxx:6651
void GetRangeAxis(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) override
Return pad axis coordinates range.
Definition TPad.cxx:3043
void SetBorderMode(Short_t bordermode) override
Definition TPad.h:325
void PaintBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2, Option_t *option="") override
Paint box in CurrentPad World coordinates.
Definition TPad.cxx:3896
void DrawClassObject(const TObject *obj, Option_t *option="") override
Draw class inheritance tree of the class to which obj belongs.
Definition TPad.cxx:1403
Int_t fCGny
! Size of the collide grid along y
Definition TPad.h:120
Double_t fXlowNDC
X bottom left corner of pad in NDC [0,1].
Definition TPad.h:62
TObject * GetPrimitive(const char *name) const override
Get primitive.
Definition TPad.cxx:2983
Double_t fUxmin
Minimum value on the X axis.
Definition TPad.h:74
Double_t GetAbsHNDC() const override
Definition TPad.h:223
void SetTicks(Int_t valuex=1, Int_t valuey=1) override
Definition TPad.h:355
void SetBBoxCenter(const TPoint &p) override
Set center of the Pad.
Definition TPad.cxx:7303
Bool_t IsWeb() const override
Is web ?
Definition TPad.cxx:2871
void SetSelected(TObject *obj) override
Set selected.
Definition TPad.cxx:2927
TObject * GetSelected() const override
Get selected.
Definition TPad.cxx:2802
void GetRange(Double_t &x1, Double_t &y1, Double_t &x2, Double_t &y2) override
Return pad world coordinates range.
Definition TPad.cxx:3032
void PaintPolyLineNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override
Paint polyline in CurrentPad NDC coordinates.
Definition TPad.cxx:4490
Bool_t IsVertical() const override
Definition TPad.h:276
Int_t IncrementPaletteColor(Int_t i, TString opt) override
Increment (i==1) or set (i>1) the number of autocolor in the pad.
Definition TPad.cxx:3104
void PaintPadFrame(Double_t xmin, Double_t ymin, Double_t xmax, Double_t ymax) override
Paint histogram/graph frame.
Definition TPad.cxx:3793
Double_t GetAbsYlowNDC() const override
Definition TPad.h:221
Double_t fUxmax
Maximum value on the X axis.
Definition TPad.h:76
void AddFirst(TObject *obj, Option_t *opt="", Bool_t modified=kTRUE) override
Add an object as first in list of primitives with speicified draw option When.
Definition TPad.cxx:439
void SetTicky(Int_t value=1) override
Definition TPad.h:357
Double_t fY2
Y of upper Y coordinate.
Definition TPad.h:39
Double_t fAbsPixeltoYk
Conversion coefficient for absolute pixel to Y World.
Definition TPad.h:58
TVirtualPad * GetSelectedPad() const override
Get selected pad.
Definition TPad.cxx:2811
void PaintPolyLine3D(Int_t n, Double_t *p) override
Paint 3-D polyline in the CurrentPad.
Definition TPad.cxx:4511
TVirtualPad * GetPad(Int_t subpadnumber) const override
Get a pointer to subpadnumber of this pad.
Definition TPad.cxx:3000
Short_t fBorderMode
Bordermode (-1=down, 0 = no border, 1=up)
Definition TPad.h:98
void SetLogx(Int_t value=1) override
Set Lin/Log scale for X.
Definition TPad.cxx:6086
void ReleaseViewer3D(Option_t *type="") override
Release current (external) viewer.
Definition TPad.cxx:7222
void SetCrosshair(Int_t crhair=1) override
Set crosshair active/inactive.
Definition TPad.cxx:6664
Int_t fNextPaletteColor
Next automatic color.
Definition TPad.h:117
void SetBBoxCenterX(const Int_t x) override
Set X coordinate of the center of the Pad.
Definition TPad.cxx:7316
Int_t GetLogx() const override
Definition TPad.h:256
void SetCopyGLDevice(Bool_t copy) override
Definition TPad.h:367
TObject * fPadPointer
! free pointer
Definition TPad.h:113
Double_t GetX2() const override
Definition TPad.h:241
TObject * CreateToolTip(const TBox *b, const char *text, Long_t delayms) override
Create a tool tip and return its pointer.
Definition TPad.cxx:7091
@ kCannotMove
Fixed position.
Definition TPad.h:158
@ kClearAfterCR
Clear after CR.
Definition TPad.h:159
@ kHori
Pad is horizontal.
Definition TPad.h:155
@ kClipFrame
Clip on frame.
Definition TPad.h:156
@ kPrintingPS
PS Printing.
Definition TPad.h:157
@ kFraming
Frame is requested.
Definition TPad.h:154
Double_t GetWNDC() const override
Get width of pad along X in Normalized Coordinates (NDC)
Definition TPad.h:215
void Pop() override
Pop pad to the top of the stack.
Definition TPad.cxx:4776
Double_t GetAbsXlowNDC() const override
Definition TPad.h:220
ULong_t Hash() const override
Return hash value for this object.
Definition TPad.h:267
Double_t GetX1() const override
Definition TPad.h:240
Double_t GetHNDC() const override
Get height of pad along Y in Normalized Coordinates (NDC)
Definition TPad.h:217
TPad * fMother
! pointer to mother of the list
Definition TPad.h:105
void SetTheta(Double_t theta=30) override
Definition TPad.h:359
const char * GetName() const override
Returns name of object.
Definition TPad.h:260
Int_t XtoAbsPixel(Double_t x) const override
Convert X coordinate to absolute pixel.
Definition TPad.cxx:7494
Bool_t fGridy
Set to true if grid along Y.
Definition TPad.h:101
void SetBBoxY2(const Int_t y) override
Set bottom of BoundingBox to a value (resize in y direction on bottom)
Definition TPad.cxx:7375
Double_t XtoPad(Double_t x) const override
Convert x from X to pad.
Definition TPad.cxx:3560
void Emit(const char *signal, const T &arg)
Activate signal with single parameter.
Definition TQObject.h:164
Basic string class.
Definition TString.h:139
const char * Data() const
Definition TString.h:376
UInt_t Hash(ECaseCompare cmp=kExact) const
Return hash value.
Definition TString.cxx:677
See TView3D.
Definition TView.h:25
To make it possible to use GL for 2D graphic in a TPad/TCanvas.
TVirtualPad is an abstract base class for the Pad and Canvas classes.
Definition TVirtualPad.h:51
Abstract 3D shapes viewer.
Basic TCanvasImp ABI implementation for Web-based Graphics Provides painting of main ROOT classes in ...
Definition TWebCanvas.h:35
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
Rectangle structure (maps to the X11 XRectangle structure)
Definition GuiTypes.h:361
th1 Draw()