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 AddExec(const char *name, const char *command) override;
172 virtual void AutoExec();
173 void Browse(TBrowser *b) override;
174 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*
175 TVirtualPad *cd(Int_t subpadnumber=0) override; // *MENU*
176 void Clear(Option_t *option="") override;
177 virtual Int_t Clip(Float_t *x, Float_t *y, Float_t xclipl, Float_t yclipb, Float_t xclipr, Float_t yclipt);
178 Int_t Clip(Double_t *x, Double_t *y, Double_t xclipl, Double_t yclipb, Double_t xclipr, Double_t yclipt) override;
179 virtual Int_t ClippingCode(Double_t x, Double_t y, Double_t xcl1, Double_t ycl1, Double_t xcl2, Double_t ycl2);
180 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);
181 void Close(Option_t *option="") override;
182 virtual void Closed() { Emit("Closed()"); } // *SIGNAL*
183 void CopyPixmap() override;
184 void CopyPixmaps() override;
185 void DeleteExec(const char *name) override;
186 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*
187 virtual void DivideSquare(Int_t n, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0);
188 void Draw(Option_t *option="") override;
189 void DrawClassObject(const TObject *obj, Option_t *option="") override;
190 static void DrawColorTable();
191 virtual void DrawCrosshair();
192 TH1F *DrawFrame(Double_t xmin, Double_t ymin, Double_t xmax, Double_t ymax, const char *title="") override;
193 void ExecuteEventAxis(Int_t event, Int_t px, Int_t py, TAxis *axis) override;
194 TObject *FindObject(const char *name) const override;
195 TObject *FindObject(const TObject *obj) const override;
196 void UseCurrentStyle() override; // *MENU*
197 Short_t GetBorderMode() const override { return fBorderMode;}
198 Short_t GetBorderSize() const override { return fBorderSize;}
199 Int_t GetCrosshair() const;
200 Int_t GetCanvasID() const override;
201 TCanvasImp *GetCanvasImp() const override;
202 TFrame *GetFrame() override;
203 Int_t GetEvent() const override;
204 Int_t GetEventX() const override;
205 Int_t GetEventY() const override;
206 Color_t GetHighLightColor() const override;
207 void GetRange(Double_t &x1, Double_t &y1, Double_t &x2, Double_t &y2) override;
209 void GetPadPar(Double_t &xlow, Double_t &ylow, Double_t &xup, Double_t &yup) override;
210 Double_t GetXlowNDC() const override { return fXlowNDC; }
211 Double_t GetYlowNDC() const override { return fYlowNDC; }
212 /// Get width of pad along X in Normalized Coordinates (NDC)
213 Double_t GetWNDC() const override { return fWNDC; }
214 /// Get height of pad along Y in Normalized Coordinates (NDC)
215 Double_t GetHNDC() const override { return fHNDC; }
216 UInt_t GetWw() const override;
217 UInt_t GetWh() const override;
218 Double_t GetAbsXlowNDC() const override { return fAbsXlowNDC; }
219 Double_t GetAbsYlowNDC() const override { return fAbsYlowNDC; }
220 Double_t GetAbsWNDC() const override { return fAbsWNDC; }
221 Double_t GetAbsHNDC() const override { return fAbsHNDC; }
222 Double_t GetAspectRatio() const override { return fAspectRatio; }
223 Double_t GetPhi() const override { return fPhi; }
224 Double_t GetTheta() const override { return fTheta; }
225 ///Returns the minimum x-coordinate value visible on the pad. If log axis the returned value is in decades.
226 Double_t GetUxmin() const override { return fUxmin; }
227 ///Returns the minimum y-coordinate value visible on the pad. If log axis the returned value is in decades.
228 Double_t GetUymin() const override { return fUymin; }
229 ///Returns the maximum x-coordinate value visible on the pad. If log axis the returned value is in decades.
230 Double_t GetUxmax() const override { return fUxmax; }
231 ///Returns the maximum y-coordinate value visible on the pad. If log axis the returned value is in decades.
232 Double_t GetUymax() const override { return fUymax; }
233 Bool_t GetGridx() const override { return fGridx; }
234 Bool_t GetGridy() const override { return fGridy; }
235 Int_t GetNumber() const override { return fNumber; }
236 Int_t GetTickx() const override { return fTickx; }
237 Int_t GetTicky() const override { return fTicky; }
238 Double_t GetX1() const override { return fX1; }
239 Double_t GetX2() const override { return fX2; }
240 Double_t GetY1() const override { return fY1; }
241 Double_t GetY2() const override { return fY2; }
242 static Int_t GetMaxPickDistance();
243 TList *GetListOfPrimitives() const override { return fPrimitives; }
244 TList *GetListOfExecs() const override { return fExecs; }
245 TObject *GetPrimitive(const char *name) const override; //obsolete, use FindObject instead
246 TObject *GetSelected() const override;
247 TVirtualPad *GetPad(Int_t subpadnumber) const override;
248 TObject *GetPadPointer() const override { return fPadPointer; }
249 TVirtualPad *GetPadSave() const override;
250 TVirtualPad *GetSelectedPad() const override;
251 Int_t GetGLDevice() override;
252 TView *GetView() const override { return fView; }
253 TObject *GetView3D() const override { return fPadView3D; }// Return 3D View of this TPad
254 Int_t GetLogx() const override { return fLogx; }
255 Int_t GetLogy() const override { return fLogy; }
256 Int_t GetLogz() const override { return fLogz; }
257 TVirtualPad *GetMother() const override { return fMother; }
258 const char *GetName() const override { return fName.Data(); }
259 const char *GetTitle() const override { return fTitle.Data(); }
260 TCanvas *GetCanvas() const override { return fCanvas; }
261 TVirtualPad *GetVirtCanvas() const override;
262 TVirtualPadPainter *GetPainter() override;
263 Int_t GetPadPaint() const override { return fPadPaint; }
264 Int_t GetPixmapID() const override { return fPixmapID; }
265 ULong_t Hash() const override { return fName.Hash(); }
266 Bool_t HasCrosshair() const override;
267 void HighLight(Color_t col=kRed, Bool_t set=kTRUE) override;
268 Bool_t HasFixedAspectRatio() const override { return fFixedAspectRatio; }
269 Bool_t IsBatch() const override;
270 Bool_t IsEditable() const override { return fEditable; }
271 Bool_t IsFolder() const override { return kTRUE; }
272 Bool_t IsModified() const override { return fModified; }
273 Bool_t IsRetained() const override;
274 Bool_t IsVertical() const override { return !TestBit(kHori); }
275 Bool_t IsWeb() const override;
276 void ls(Option_t *option="") const override;
277 void Modified(Bool_t flag=true) override; // *SIGNAL*
278 void ModifiedUpdate() override;
279 Bool_t OpaqueMoving() const override;
280 Bool_t OpaqueResizing() const override;
281 Double_t PadtoX(Double_t x) const override;
282 Double_t PadtoY(Double_t y) const override;
283 void Paint(Option_t *option="") override;
285 void PaintFillArea(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override; // Obsolete
286 void PaintFillArea(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
287 void PaintFillAreaNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
288 void PaintFillAreaHatches(Int_t n, Double_t *x, Double_t *y, Int_t FillStyle);
289 void PaintHatches(Double_t dy, Double_t angle, Int_t nn, Double_t *xx, Double_t *yy);
292 void PaintLineNDC(Double_t u1, Double_t v1,Double_t u2, Double_t v2) override;
293 void PaintLine3D(Float_t *p1, Float_t *p2) override;
294 void PaintLine3D(Double_t *p1, Double_t *p2) override;
295 void PaintPolyLine(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override;
296 void PaintPolyLine(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
297 void PaintPolyLine3D(Int_t n, Double_t *p) override;
298 void PaintPolyLineNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
299 void PaintPolyMarker(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override;
300 void PaintPolyMarker(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override;
301 void PaintModified() override;
302 void PaintText(Double_t x, Double_t y, const char *text) override;
303 void PaintText(Double_t x, Double_t y, const wchar_t *text) override;
304 void PaintTextNDC(Double_t u, Double_t v, const char *text) override;
305 void PaintTextNDC(Double_t u, Double_t v, const wchar_t *text) override;
306 virtual TPad *Pick(Int_t px, Int_t py, TObjLink *&pickobj);
307 Double_t PixeltoX(Int_t px) override;
308 Double_t PixeltoY(Int_t py) override;
309 virtual void PixeltoXY(Int_t xpixel, Int_t ypixel, Double_t &x, Double_t &y);
310 void Pop() override; // *MENU*
311 void Print(const char *filename="") const override;
312 void Print(const char *filename, Option_t *option) override;
313 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}
314 virtual void RangeChanged() { Emit("RangeChanged()"); } // *SIGNAL*
316 void RecursiveRemove(TObject *obj) override;
317 void RedrawAxis(Option_t *option="") override;
318 void ResetView3D(TObject *view=nullptr) override { fPadView3D=view; }
319 void ResizePad(Option_t *option="") override;
320 virtual void Resized() { Emit("Resized()"); } // *SIGNAL*
321 void SaveAs(const char *filename="",Option_t *option="") const override; // *MENU*
322 void SetBorderMode(Short_t bordermode) override { fBorderMode = bordermode; Modified(); } // *MENU*
323 void SetBorderSize(Short_t bordersize) override { fBorderSize = bordersize; Modified(); } // *MENU*
324 void SetCanvas(TCanvas *c) override { fCanvas = c; }
325 void SetCanvasSize(UInt_t ww, UInt_t wh) override;
326 void SetCrosshair(Int_t crhair=1) override; // *TOGGLE*
327 void SetCursor(ECursor cursor) override;
328 void SetDoubleBuffer(Int_t mode=1) override;
329 void SetDrawOption(Option_t * = "") override {}
330 void SetEditable(Bool_t mode=kTRUE) override; // *TOGGLE*
331 void SetFixedAspectRatio(Bool_t fixed = kTRUE) override; // *TOGGLE*
332 void SetGrid(Int_t valuex = 1, Int_t valuey = 1) override { fGridx = valuex; fGridy = valuey; Modified(); }
333 void SetGridx(Int_t value = 1) override { fGridx = value; Modified(); } // *TOGGLE*
334 void SetGridy(Int_t value = 1) override { fGridy = value; Modified(); } // *TOGGLE*
335 void SetFillStyle(Style_t fstyle) override;
336 void SetLogx(Int_t value = 1) override; // *TOGGLE*
337 void SetLogy(Int_t value = 1) override; // *TOGGLE*
338 void SetLogz(Int_t value = 1) override; // *TOGGLE*
339 virtual void SetNumber(Int_t number) { fNumber = number; }
340 void SetPad(const char *name, const char *title,
341 Double_t xlow, Double_t ylow, Double_t xup,
342 Double_t yup, Color_t color=35,
343 Short_t bordersize=5, Short_t bordermode=-1) override;
344 void SetPad(Double_t xlow, Double_t ylow, Double_t xup, Double_t yup) override;
345 void SetAttFillPS(Color_t color, Style_t style) override;
346 void SetAttLinePS(Color_t color, Style_t style, Width_t lwidth) override;
347 void SetAttMarkerPS(Color_t color, Style_t style, Size_t msize) override;
348 void SetAttTextPS(Int_t align, Float_t angle, Color_t color, Style_t font, Float_t tsize) override;
349 static void SetMaxPickDistance(Int_t maxPick=5);
350 void SetName(const char *name) override { fName = name; } // *MENU*
351 void SetSelected(TObject *obj) override;
352 void SetTicks(Int_t valuex = 1, Int_t valuey = 1) override { fTickx = valuex; fTicky = valuey; Modified(); }
353 void SetTickx(Int_t value = 1) override { fTickx = value; Modified(); } // *TOGGLE*
354 void SetTicky(Int_t value = 1) override { fTicky = value; Modified(); } // *TOGGLE*
355 void SetTitle(const char *title="") override { fTitle = title; }
356 void SetTheta(Double_t theta=30) override { fTheta = theta; Modified(); }
357 void SetPhi(Double_t phi=30) override { fPhi = phi; Modified(); }
358 void SetToolTipText(const char *text, Long_t delayms = 1000) override;
359 void SetVertical(Bool_t vert=kTRUE) override;
360 void SetView(TView *view = nullptr) override;
361 void SetViewer3D(TVirtualViewer3D *viewer3d) override { fViewer3D = viewer3d; }
362
363 virtual void SetGLDevice(Int_t dev) {fGLDevice = dev;}
364 void SetCopyGLDevice(Bool_t copy) override { fCopyGLDevice = copy; }
365
366 void ShowGuidelines(TObject *object, const Int_t event, const char mode = 'i', const bool cling = true) override;
367 void Update() override;
368 void UpdateAsync() override;
369
370 Int_t UtoAbsPixel(Double_t u) const override;
371 Int_t VtoAbsPixel(Double_t v) const override;
372 Int_t UtoPixel(Double_t u) const override;
373 Int_t VtoPixel(Double_t v) const override;
374 TObject *WaitPrimitive(const char *pname="", const char *emode="") override;
375 Int_t XtoAbsPixel(Double_t x) const override;
376 Int_t YtoAbsPixel(Double_t y) const override;
377 Double_t XtoPad(Double_t x) const override;
378 Double_t YtoPad(Double_t y) const override;
379 Int_t XtoPixel(Double_t x) const override;
380 Int_t YtoPixel(Double_t y) const override;
381 virtual void XYtoAbsPixel(Double_t x, Double_t y, Int_t &xpixel, Int_t &ypixel) const;
382 virtual void XYtoPixel(Double_t x, Double_t y, Int_t &xpixel, Int_t &ypixel) const;
383
384 TObject *CreateToolTip(const TBox *b, const char *text, Long_t delayms) override;
385 void DeleteToolTip(TObject *tip) override;
386 void ResetToolTip(TObject *tip) override;
387 void CloseToolTip(TObject *tip) override;
388
389 Int_t IncrementPaletteColor(Int_t i, TString opt) override;
390 Int_t NextPaletteColor() override;
391
392 void DrawCollideGrid();
393 Bool_t PlaceBox(TObject *o, Double_t w, Double_t h, Double_t &xl, Double_t &yb, Option_t* option = "lb") override;
394
395 virtual void x3d(Option_t *type=""); // Depreciated
396
397 TVirtualViewer3D *GetViewer3D(Option_t * type = "") override;
398 Bool_t HasViewer3D() const override { return fViewer3D != nullptr; }
399 void ReleaseViewer3D(Option_t * type = "") override;
400
401 Rectangle_t GetBBox() override;
402 TPoint GetBBoxCenter() override;
403 void SetBBoxCenter(const TPoint &p) override;
404 void SetBBoxCenterX(const Int_t x) override;
405 void SetBBoxCenterY(const Int_t y) override;
406 void SetBBoxX1(const Int_t x) override;
407 void SetBBoxX2(const Int_t x) override;
408 void SetBBoxY1(const Int_t y) override;
409 void SetBBoxY2(const Int_t y) override;
410
411 virtual void RecordPave(const TObject *obj); // *SIGNAL*
412 virtual void RecordLatex(const TObject *obj); // *SIGNAL*
413 virtual void EventPave() { Emit("EventPave()"); } // *SIGNAL*
414 virtual void StartEditing() { Emit("StartEditing()"); } // *SIGNAL*
415
416 ClassDefOverride(TPad,13) //A Graphics pad
417};
418
419#endif
420
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:89
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
short Color_t
Definition RtypesCore.h:92
float Size_t
Definition RtypesCore.h:96
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:91
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:100
const char Option_t
Definition RtypesCore.h:66
#define BIT(n)
Definition Rtypes.h:85
@ kRed
Definition Rtypes.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
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:621
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:201
The most important graphics class in the ROOT system.
Definition TPad.h:28
void SetGridx(Int_t value=1) override
Definition TPad.h:333
Short_t GetBorderMode() const override
Definition TPad.h:197
Bool_t OpaqueMoving() const override
Is pad moving in opaque mode ?
Definition TPad.cxx:2783
void SetBorderSize(Short_t bordersize) override
Definition TPad.h:323
void PaintTextNDC(Double_t u, Double_t v, const char *text) override
Paint text in CurrentPad NDC coordinates.
Definition TPad.cxx:4517
Int_t GetTicky() const override
Definition TPad.h:237
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:672
virtual void HideToolTip(Int_t event)
Hide tool tip depending on the event type.
Definition TPad.cxx:2751
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:6114
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:1245
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:2760
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:232
void AddExec(const char *name, const char *command) override
Add a new TExec object to the list of Execs.
Definition TPad.cxx:445
void SetViewer3D(TVirtualViewer3D *viewer3d) override
Definition TPad.h:361
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:350
Int_t NextPaletteColor() override
Get the next autocolor in the pad.
Definition TPad.cxx:3022
Int_t VtoPixel(Double_t v) const override
Convert Y NDC to pixel.
Definition TPad.cxx:7332
void PaintBorder(Color_t color, Bool_t tops)
Paint the pad border.
Definition TPad.cxx:3548
Double_t GetPhi() const override
Definition TPad.h:223
Bool_t IsEditable() const override
Definition TPad.h:270
void FillCollideGrid(TObject *o)
Initialise the grid used to find empty space when adding a box (Legend) in a pad.
Definition TPad.cxx:3038
void SetView(TView *view=nullptr) override
Set the current TView. Delete previous view if view=0.
Definition TPad.cxx:6082
TVirtualViewer3D * GetViewer3D(Option_t *type="") override
Create/obtain handle to 3D viewer.
Definition TPad.cxx:7037
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:4065
void PaintLine3D(Float_t *p1, Float_t *p2) override
Paint 3-D line in the CurrentPad.
Definition TPad.cxx:4260
static Int_t fgMaxPickDistance
Maximum Pick Distance.
Definition TPad.h:115
void ResizePad(Option_t *option="") override
Compute pad conversion coefficients.
Definition TPad.cxx:5511
void PaintPolyMarker(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override
Paint polymarker in CurrentPad World coordinates.
Definition TPad.cxx:4429
void SetGrid(Int_t valuex=1, Int_t valuey=1) override
Definition TPad.h:332
Double_t fPhi
phi angle to view as lego/surface
Definition TPad.h:80
Double_t GetAspectRatio() const override
Definition TPad.h:222
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:7140
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:244
void SetTickx(Int_t value=1) override
Definition TPad.h:353
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:355
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:3894
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:230
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:1153
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitives in this pad on the C++ source file out.
Definition TPad.cxx:5734
virtual void StartEditing()
Definition TPad.h:414
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:3455
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:7234
Int_t fTicky
Set to 1 if tick marks along Y.
Definition TPad.h:90
Int_t GetPixmapID() const override
Definition TPad.h:264
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:7301
TPad(const TPad &pad)=delete
Bool_t GetGridx() const override
Definition TPad.h:233
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:3107
void SetLogz(Int_t value=1) override
Set Lin/Log scale for Z.
Definition TPad.cxx:5998
Bool_t fEmbeddedGL
!
Definition TPad.h:87
Int_t UtoAbsPixel(Double_t u) const override
Convert X NDC to absolute pixel.
Definition TPad.cxx:7345
void Browse(TBrowser *b) override
Browse pad.
Definition TPad.cxx:470
Int_t XtoPixel(Double_t x) const override
Convert X coordinate to pixel.
Definition TPad.cxx:7372
void SetAttFillPS(Color_t color, Style_t style) override
Set postscript fill area attributes.
Definition TPad.cxx:6091
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:7204
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:3912
~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:241
void DeleteToolTip(TObject *tip) override
Delete tool tip object.
Definition TPad.cxx:6987
void Close(Option_t *option="") override
Delete all primitives in pad and pad itself.
Definition TPad.cxx:974
Int_t GetNumber() const override
Definition TPad.h:235
Double_t fAbsWNDC
Absolute Width of pad along X in NDC.
Definition TPad.h:71
UInt_t GetWw() const override
Get Ww.
Definition TPad.cxx:2741
void PaintModified() override
Traverse pad hierarchy and (re)paint only modified pads.
Definition TPad.cxx:3716
void SetEditable(Bool_t mode=kTRUE) override
Set pad editable yes/no If a pad is not editable:
Definition TPad.cxx:5942
const char * GetTitle() const override
Returns title of object.
Definition TPad.h:259
void PaintDate()
Paint the current date and time if the option Date is set on via gStyle->SetOptDate() Paint the curre...
Definition TPad.cxx:3654
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:6567
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:7225
void SetBBoxX1(const Int_t x) override
Set lefthandside of BoundingBox to a value (resize in x direction on left)
Definition TPad.cxx:7214
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:805
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:228
Double_t fX1
X of lower X coordinate.
Definition TPad.h:36
TList * GetListOfPrimitives() const override
Definition TPad.h:243
TObject * GetPadPointer() const override
Definition TPad.h:248
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:1582
Double_t fVtoPixel
ypixel = fVtoPixelk + fVtoPixel*vndc
Definition TPad.h:53
TCanvasImp * GetCanvasImp() const override
Get canvas implementation pointer if any.
Definition TPad.cxx:2650
Int_t GetEvent() const override
Get Event.
Definition TPad.cxx:2658
TObject * GetView3D() const override
Definition TPad.h:253
Double_t PadtoX(Double_t x) const override
Convert x from pad to X.
Definition TPad.cxx:3446
virtual void PixeltoXY(Int_t xpixel, Int_t ypixel, Double_t &x, Double_t &y)
Convert pixel to X/Y coordinates.
Definition TPad.cxx:7292
virtual void DrawCrosshair()
Function called to draw a crosshair in the canvas.
Definition TPad.cxx:1509
Double_t YtoPad(Double_t y) const override
Convert y from Y to pad.
Definition TPad.cxx:3476
virtual void RangeChanged()
Definition TPad.h:314
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:6058
Int_t GetCanvasID() const override
Get canvas identifier.
Definition TPad.cxx:2642
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:2851
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:6814
static Int_t GetMaxPickDistance()
Static function (see also TPad::SetMaxPickDistance)
Definition TPad.cxx:2698
Int_t VtoAbsPixel(Double_t v) const override
Convert Y NDC to absolute pixel.
Definition TPad.cxx:7353
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:5233
virtual void EventPave()
Definition TPad.h:413
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:272
Double_t fY1
Y of lower Y coordinate.
Definition TPad.h:37
Int_t GetEventY() const override
Get Y event.
Definition TPad.cxx:2674
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:6934
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:6126
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:502
virtual TPad * Pick(Int_t px, Int_t py, TObjLink *&pickobj)
Search for an object at pixel position px,py.
Definition TPad.cxx:4561
void Update() override
Update pad.
Definition TPad.cxx:2839
virtual void SetNumber(Int_t number)
Definition TPad.h:339
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:3969
Double_t PixeltoX(Int_t px) override
Convert pixel to X coordinate.
Definition TPad.cxx:7274
void SetPhi(Double_t phi=30) override
Definition TPad.h:357
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:626
Int_t YtoPixel(Double_t y) const override
Convert Y coordinate to pixel.
Definition TPad.cxx:7396
Int_t GetTickx() const override
Definition TPad.h:236
void PaintLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2) override
Paint line in CurrentPad World coordinates.
Definition TPad.cxx:4217
Int_t GetGLDevice() override
Get GL device.
Definition TPad.cxx:7124
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:7132
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:3644
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:5987
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:854
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:2265
void HighLight(Color_t col=kRed, Bool_t set=kTRUE) override
Highlight pad.
Definition TPad.cxx:2959
void SetBatch(Bool_t batch=kTRUE) override
Set pad in batch mode.
Definition TPad.cxx:2799
TCanvas * fCanvas
! Pointer to mother canvas
Definition TPad.h:106
TVirtualPad * GetMother() const override
Definition TPad.h:257
TVirtualViewer3D * fViewer3D
! Current 3D viewer
Definition TPad.h:123
virtual void x3d(Option_t *type="")
Deprecated: use TPad::GetViewer3D() instead.
Definition TPad.cxx:7019
Bool_t HasCrosshair() const override
Return kTRUE if the crosshair has been activated (via SetCrosshair).
Definition TPad.cxx:6529
Bool_t IsRetained() const override
Is pad retained ?
Definition TPad.cxx:2768
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:3083
Int_t GetPadPaint() const override
Definition TPad.h:263
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute distance from point px,py to a box.
Definition TPad.cxx:1078
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:3921
void Modified(Bool_t flag=true) override
Mark pad modified Will be repainted when TCanvas::Update() will be called next time.
Definition TPad.cxx:7255
void RecursiveRemove(TObject *obj) override
Recursively remove object from a pad and its sub-pads.
Definition TPad.cxx:5291
Bool_t HasFixedAspectRatio() const override
Definition TPad.h:268
void CloseToolTip(TObject *tip) override
Hide tool tip.
Definition TPad.cxx:7009
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:226
void SetToolTipText(const char *text, Long_t delayms=1000) override
Set tool tip text associated with this pad.
Definition TPad.cxx:6577
void PaintPolyLine(Int_t n, Float_t *x, Float_t *y, Option_t *option="") override
Paint polyline in CurrentPad World coordinates.
Definition TPad.cxx:4296
void ls(Option_t *option="") const override
List all primitives in pad.
Definition TPad.cxx:2994
TView * GetView() const override
Definition TPad.h:252
void ModifiedUpdate() override
Short cut to call Modified() and Update() in a single call.
Definition TPad.cxx:3434
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:2724
void SetAttLinePS(Color_t color, Style_t style, Width_t lwidth) override
Set postscript line attributes.
Definition TPad.cxx:6102
virtual void Resized()
Definition TPad.h:320
Bool_t IsFolder() const override
Returns kTRUE in case object contains browsable objects (like containers or lists of other objects).
Definition TPad.h:271
TVirtualPad * GetVirtCanvas() const override
Get virtual canvas.
Definition TPad.cxx:2682
void DeleteExec(const char *name) override
Remove TExec name from the list of Execs.
Definition TPad.cxx:1062
Bool_t HasViewer3D() const override
Definition TPad.h:398
void SetCanvas(TCanvas *c) override
Definition TPad.h:324
TString fTitle
Pad title.
Definition TPad.h:110
void CopyPixmaps() override
Copy the sub-pixmaps of the pad to the canvas.
Definition TPad.cxx:1047
void CopyPixmap() override
Copy the pixmap of the pad to the canvas.
Definition TPad.cxx:1033
Double_t GetY1() const override
Definition TPad.h:240
Int_t UtoPixel(Double_t u) const override
Convert X NDC to pixel.
Definition TPad.cxx:7319
TPoint GetBBoxCenter() override
Return the center of the Pad as TPoint in pixels.
Definition TPad.cxx:7171
void FillCollideGridTFrame(TObject *o)
Definition TPad.cxx:3238
Bool_t GetGridy() const override
Definition TPad.h:234
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:3178
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:7264
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:1690
void SetDrawOption(Option_t *="") override
Set drawing option for object.
Definition TPad.h:329
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:2807
Int_t GetLogz() const override
Definition TPad.h:256
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:7310
virtual void AutoExec()
Execute the list of Execs when a pad event occurs.
Definition TPad.cxx:455
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:3264
void SetFixedAspectRatio(Bool_t fixed=kTRUE) override
Fix pad aspect ratio to current value if fixed is true.
Definition TPad.cxx:5918
Short_t GetBorderSize() const override
Definition TPad.h:198
void RedrawAxis(Option_t *option="") override
Redraw the frame axis.
Definition TPad.cxx:5337
void DrawDist(Rectangle_t aBBox, Rectangle_t bBBox, char mode)
Draw Arrows to indicated equal distances of Objects with given BBoxes.
Definition TPad.cxx:6153
Int_t fLogx
(=0 if X linear scale, =1 if log scale)
Definition TPad.h:91
Double_t GetAbsWNDC() const override
Definition TPad.h:220
Int_t YtoAbsPixel(Double_t y) const override
Convert Y coordinate to absolute pixel.
Definition TPad.cxx:7385
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:4012
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:5271
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:6998
Double_t GetTheta() const override
Definition TPad.h:224
TList * fPrimitives
->List of primitives (subpads)
Definition TPad.h:107
UInt_t GetWh() const override
Get Wh.
Definition TPad.cxx:2733
TCanvas * GetCanvas() const override
Definition TPad.h:260
Short_t fBorderSize
pad bordersize in pixels
Definition TPad.h:97
void SetGridy(Int_t value=1) override
Definition TPad.h:334
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:7157
virtual void SetGLDevice(Int_t dev)
Definition TPad.h:363
void Paint(Option_t *option="") override
Paint all primitives in pad.
Definition TPad.cxx:3488
void FillCollideGridTBox(TObject *o)
Definition TPad.cxx:3221
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:3377
TString fName
Pad name.
Definition TPad.h:109
void SetVertical(Bool_t vert=kTRUE) override
Set pad vertical (default) or horizontal.
Definition TPad.cxx:6591
void FillCollideGridTH1(TObject *o)
Definition TPad.cxx:3295
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:2925
void PaintText(Double_t x, Double_t y, const char *text) override
Paint text in CurrentPad World coordinates.
Definition TPad.cxx:4491
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:1627
Double_t GetXlowNDC() const override
Definition TPad.h:210
void SaveAs(const char *filename="", Option_t *option="") const override
Save the pad content in a file.
Definition TPad.cxx:5671
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:211
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:2604
Color_t GetHighLightColor() const override
Get highlight color.
Definition TPad.cxx:2690
Bool_t OpaqueResizing() const override
Is pad resizing in opaque mode ?
Definition TPad.cxx:2791
Double_t fXUpNDC
Definition TPad.h:64
void ResetView3D(TObject *view=nullptr) override
Definition TPad.h:318
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:597
Int_t GetLogy() const override
Definition TPad.h:255
void PaintLineNDC(Double_t u1, Double_t v1, Double_t u2, Double_t v2) override
Paint line in normalized coordinates.
Definition TPad.cxx:4240
Double_t PixeltoY(Int_t py) override
Convert pixel to Y coordinate.
Definition TPad.cxx:7283
void Print(const char *filename="") const override
This method is equivalent to SaveAs("filename"). See TPad::SaveAs for details.
Definition TPad.cxx:4700
Int_t GetEventX() const override
Get X event.
Definition TPad.cxx:2666
TFrame * GetFrame() override
Get frame.
Definition TPad.cxx:2859
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:7148
virtual void Closed()
Definition TPad.h:182
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:6237
Int_t GetCrosshair() const
Return the crosshair type (from the mother canvas) crosshair type = 0 means no crosshair.
Definition TPad.cxx:6538
void GetRangeAxis(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) override
Return pad axis coordinates range.
Definition TPad.cxx:2947
void SetBorderMode(Short_t bordermode) override
Definition TPad.h:322
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:3800
void DrawClassObject(const TObject *obj, Option_t *option="") override
Draw class inheritance tree of the class to which obj belongs.
Definition TPad.cxx:1307
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:2887
Double_t fUxmin
Minimum value on the X axis.
Definition TPad.h:74
Double_t GetAbsHNDC() const override
Definition TPad.h:221
void SetTicks(Int_t valuex=1, Int_t valuey=1) override
Definition TPad.h:352
void SetBBoxCenter(const TPoint &p) override
Set center of the Pad.
Definition TPad.cxx:7185
Bool_t IsWeb() const override
Is web ?
Definition TPad.cxx:2775
void SetSelected(TObject *obj) override
Set selected.
Definition TPad.cxx:2831
TObject * GetSelected() const override
Get selected.
Definition TPad.cxx:2706
void GetRange(Double_t &x1, Double_t &y1, Double_t &x2, Double_t &y2) override
Return pad world coordinates range.
Definition TPad.cxx:2936
void PaintPolyLineNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="") override
Paint polyline in CurrentPad NDC coordinates.
Definition TPad.cxx:4394
Bool_t IsVertical() const override
Definition TPad.h:274
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:3008
void PaintPadFrame(Double_t xmin, Double_t ymin, Double_t xmax, Double_t ymax) override
Paint histogram/graph frame.
Definition TPad.cxx:3697
Double_t GetAbsYlowNDC() const override
Definition TPad.h:219
Double_t fUxmax
Maximum value on the X axis.
Definition TPad.h:76
void SetTicky(Int_t value=1) override
Definition TPad.h:354
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:2715
void PaintPolyLine3D(Int_t n, Double_t *p) override
Paint 3-D polyline in the CurrentPad.
Definition TPad.cxx:4415
TVirtualPad * GetPad(Int_t subpadnumber) const override
Get a pointer to subpadnumber of this pad.
Definition TPad.cxx:2904
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:5973
void ReleaseViewer3D(Option_t *type="") override
Release current (external) viewer.
Definition TPad.cxx:7108
void SetCrosshair(Int_t crhair=1) override
Set crosshair active/inactive.
Definition TPad.cxx:6551
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:7195
Int_t GetLogx() const override
Definition TPad.h:254
void SetCopyGLDevice(Bool_t copy) override
Definition TPad.h:364
TObject * fPadPointer
! free pointer
Definition TPad.h:113
Double_t GetX2() const override
Definition TPad.h:239
TObject * CreateToolTip(const TBox *b, const char *text, Long_t delayms) override
Create a tool tip and return its pointer.
Definition TPad.cxx:6977
@ 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:213
void Pop() override
Pop pad to the top of the stack.
Definition TPad.cxx:4680
Double_t GetAbsXlowNDC() const override
Definition TPad.h:218
ULong_t Hash() const override
Return hash value for this object.
Definition TPad.h:265
Double_t GetX1() const override
Definition TPad.h:238
Double_t GetHNDC() const override
Get height of pad along Y in Normalized Coordinates (NDC)
Definition TPad.h:215
TPad * fMother
! pointer to mother of the list
Definition TPad.h:105
void SetTheta(Double_t theta=30) override
Definition TPad.h:356
const char * GetName() const override
Returns name of object.
Definition TPad.h:258
Int_t XtoAbsPixel(Double_t x) const override
Convert X coordinate to absolute pixel.
Definition TPad.cxx:7361
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:7244
Double_t XtoPad(Double_t x) const override
Convert x from X to pad.
Definition TPad.cxx:3464
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()