Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TPadPainter.h
Go to the documentation of this file.
1 // @(#)root/gpad:$Id$
2 // Author: Olivier Couet, Timur Pocheptsov 06/05/2009
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2009, 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_TPadPainter
13 #define ROOT_TPadPainter
14 
15 #include "TVirtualPadPainter.h"
16 
17 /*
18 TVirtualPadPainter is an attempt to abstract
19 painting operation furthermore. gVirtualX can
20 be X11 or GDI, but pad painter can be gVirtualX (X11 or GDI),
21 or gl pad painter.
22 */
23 
24 class TVirtualPad;
25 
26 class TPadPainter : public TVirtualPadPainter {
27 public:
28  TPadPainter();
29  //Final overriders for TVirtualPadPainter pure virtual functions.
30  //1. Part, which simply delegates to TVirtualX.
31  //Line attributes.
32  Color_t GetLineColor() const;
33  Style_t GetLineStyle() const;
34  Width_t GetLineWidth() const;
35 
36  void SetLineColor(Color_t lcolor);
37  void SetLineStyle(Style_t lstyle);
38  void SetLineWidth(Width_t lwidth);
39  //Fill attributes.
40  Color_t GetFillColor() const;
41  Style_t GetFillStyle() const;
42  Bool_t IsTransparent() const;
43 
44  void SetFillColor(Color_t fcolor);
45  void SetFillStyle(Style_t fstyle);
46  void SetOpacity(Int_t percent);
47  //Text attributes.
48  Short_t GetTextAlign() const;
49  Float_t GetTextAngle() const;
50  Color_t GetTextColor() const;
51  Font_t GetTextFont() const;
52  Float_t GetTextSize() const;
53  Float_t GetTextMagnitude() const;
54 
55  void SetTextAlign(Short_t align);
56  void SetTextAngle(Float_t tangle);
57  void SetTextColor(Color_t tcolor);
58  void SetTextFont(Font_t tfont);
59  void SetTextSize(Float_t tsize);
60  void SetTextSizePixels(Int_t npixels);
61  //2. "Off-screen management" part.
62  Int_t CreateDrawable(UInt_t w, UInt_t h);
63  void ClearDrawable();
64  void CopyDrawable(Int_t device, Int_t px, Int_t py);
65  void DestroyDrawable(Int_t device);
66  void SelectDrawable(Int_t device);
67 
68  //TASImage support (noop for a non-gl pad).
69  void DrawPixels(const unsigned char *pixelData, UInt_t width, UInt_t height,
70  Int_t dstX, Int_t dstY, Bool_t enableAlphaBlending);
71 
72 
73  void DrawLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2);
74  void DrawLineNDC(Double_t u1, Double_t v1, Double_t u2, Double_t v2);
75 
76  void DrawBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2, EBoxMode mode);
77  //TPad needs double and float versions.
78  void DrawFillArea(Int_t n, const Double_t *x, const Double_t *y);
79  void DrawFillArea(Int_t n, const Float_t *x, const Float_t *y);
80 
81  //TPad needs both double and float versions of DrawPolyLine.
82  void DrawPolyLine(Int_t n, const Double_t *x, const Double_t *y);
83  void DrawPolyLine(Int_t n, const Float_t *x, const Float_t *y);
84  void DrawPolyLineNDC(Int_t n, const Double_t *u, const Double_t *v);
85 
86  //TPad needs both versions.
87  void DrawPolyMarker(Int_t n, const Double_t *x, const Double_t *y);
88  void DrawPolyMarker(Int_t n, const Float_t *x, const Float_t *y);
89 
90  void DrawText(Double_t x, Double_t y, const char *text, ETextMode mode);
91  void DrawText(Double_t x, Double_t y, const wchar_t *text, ETextMode mode);
92  void DrawTextNDC(Double_t u, Double_t v, const char *text, ETextMode mode);
93  void DrawTextNDC(Double_t u, Double_t v, const wchar_t *text, ETextMode mode);
94 
95  //jpg, png, bmp, gif output.
96  void SaveImage(TVirtualPad *pad, const char *fileName, Int_t type) const;
97 
98 private:
99  //Let's make this clear:
100  TPadPainter(const TPadPainter &rhs) = delete;
101  TPadPainter(TPadPainter && rhs) = delete;
102  TPadPainter & operator = (const TPadPainter &rhs) = delete;
103  TPadPainter & operator = (TPadPainter && rhs) = delete;
104 
105  ClassDef(TPadPainter, 0) //Abstract interface for painting in TPad
106 };
107 
108 #endif