"Delegating" part of TGLPadPainter.
Line/fill/etc. attributes can be set inside TPad, but not only there: many of them are set by base sub-objects of 2d primitives (2d primitives usually inherit TAttLine or TAttFill etc.). And these sub-objects call gVirtualX->SetLineWidth ... etc. So, if I save some attributes in my painter, it will be mess - at any moment I do not know, where to take line attribute - from gVirtualX or from my own member. So! All attributed, ALL go to/from gVirtualX.
Definition at line 28 of file TGLPadPainter.h.
Public Member Functions | |
TGLPadPainter () | |
void | ClearDrawable () |
Not required at the moment. More... | |
void | CopyDrawable (Int_t device, Int_t px, Int_t py) |
Not required at the moment. More... | |
Int_t | CreateDrawable (UInt_t w, UInt_t h) |
Not required at the moment. More... | |
void | DestroyDrawable (Int_t device) |
Not required at the moment. More... | |
void | DrawBox (Double_t x1, Double_t y1, Double_t x2, Double_t y2, EBoxMode mode) |
Draw filled or hollow box. More... | |
void | DrawFillArea (Int_t n, const Double_t *x, const Double_t *y) |
Draw tesselated polygon (probably, outline only). More... | |
void | DrawFillArea (Int_t n, const Float_t *x, const Float_t *y) |
Draw tesselated polygon (never called, probably, since TPad::PaintFillArea for floats is deprecated). More... | |
void | DrawLine (Double_t x1, Double_t y1, Double_t x2, Double_t y2) |
Draw line segment. More... | |
void | DrawLineNDC (Double_t u1, Double_t v1, Double_t u2, Double_t v2) |
Draw line segment in NDC coordinates. More... | |
void | DrawPixels (const unsigned char *pixelData, UInt_t width, UInt_t height, Int_t dstX, Int_t dstY, Bool_t enableBlending) |
void | DrawPolyLine (Int_t n, const Double_t *x, const Double_t *y) |
Draw poly-line in user coordinates. More... | |
void | DrawPolyLine (Int_t n, const Float_t *x, const Float_t *y) |
Never called? More... | |
void | DrawPolyLineNDC (Int_t n, const Double_t *u, const Double_t *v) |
Poly line in NDC. More... | |
void | DrawPolyMarker (Int_t n, const Double_t *x, const Double_t *y) |
Poly-marker. More... | |
void | DrawPolyMarker (Int_t n, const Float_t *x, const Float_t *y) |
Poly-marker. More... | |
void | DrawText (Double_t x, Double_t y, const char *text, ETextMode mode) |
Draw text. More... | |
void | DrawText (Double_t, Double_t, const wchar_t *, ETextMode) |
Draw text. More... | |
template<class Char > | |
void | DrawTextHelper (Double_t x, Double_t y, const Char *text, ETextMode) |
void | DrawTextNDC (Double_t x, Double_t y, const char *text, ETextMode mode) |
Draw text in NDC. More... | |
void | DrawTextNDC (Double_t, Double_t, const wchar_t *, ETextMode) |
Draw text in NDC. More... | |
Color_t | GetFillColor () const |
Delegate to gVirtualX. More... | |
Style_t | GetFillStyle () const |
Delegate to gVirtualX. More... | |
Color_t | GetLineColor () const |
Delegate to gVirtualX. More... | |
Style_t | GetLineStyle () const |
Delegate to gVirtualX. More... | |
Width_t | GetLineWidth () const |
Delegate to gVirtualX. More... | |
Short_t | GetTextAlign () const |
Delegate to gVirtualX. More... | |
Float_t | GetTextAngle () const |
Delegate to gVirtualX. More... | |
Color_t | GetTextColor () const |
Delegate to gVirtualX. More... | |
Font_t | GetTextFont () const |
Delegate to gVirtualX. More... | |
Float_t | GetTextMagnitude () const |
Delegate to gVirtualX. More... | |
Float_t | GetTextSize () const |
Delegate to gVirtualX. More... | |
void | InitPainter () |
Init gl-pad painter: More... | |
void | InvalidateCS () |
When TPad::Range for gPad is called, projection must be changed in OpenGL. More... | |
Bool_t | IsTransparent () const |
Delegate to gVirtualX. More... | |
void | LockPainter () |
Locked state of painter means, that GL context can be invalid, so no GL calls can be executed. More... | |
void | SaveImage (TVirtualPad *pad, const char *fileName, Int_t type) const |
Using TImage save frame-buffer contents as a picture. More... | |
void | SelectDrawable (Int_t device) |
For gVirtualX this means select pixmap (or window) and all subsequent drawings will go into this pixmap. More... | |
void | SetFillColor (Color_t fcolor) |
Delegate to gVirtualX. More... | |
void | SetFillStyle (Style_t fstyle) |
Delegate to gVirtualX. More... | |
void | SetLineColor (Color_t lcolor) |
Delegate to gVirtualX. More... | |
void | SetLineStyle (Style_t lstyle) |
Delegate to gVirtualX. More... | |
void | SetLineWidth (Width_t lwidth) |
Delegate to gVirtualX. More... | |
void | SetOpacity (Int_t percent) |
Delegate to gVirtualX. More... | |
void | SetTextAlign (Short_t align) |
Delegate to gVirtualX. More... | |
void | SetTextAngle (Float_t tangle) |
Delegate to gVirtualX. More... | |
void | SetTextColor (Color_t tcolor) |
Delegate to gVirtualX. More... | |
void | SetTextFont (Font_t tfont) |
Delegate to gVirtualX. More... | |
void | SetTextSize (Float_t tsize) |
Delegate to gVirtualX. More... | |
void | SetTextSizePixels (Int_t npixels) |
Delegate to gVirtualX. More... | |
Public Member Functions inherited from TVirtualPadPainter | |
virtual | ~TVirtualPadPainter () |
Virtual dtor. More... | |
virtual void | ClearDrawable ()=0 |
virtual void | CopyDrawable (Int_t device, Int_t px, Int_t py)=0 |
virtual Int_t | CreateDrawable (UInt_t w, UInt_t h)=0 |
virtual void | DestroyDrawable (Int_t device)=0 |
virtual void | DrawBox (Double_t x1, Double_t y1, Double_t x2, Double_t y2, EBoxMode mode)=0 |
virtual void | DrawFillArea (Int_t n, const Double_t *x, const Double_t *y)=0 |
virtual void | DrawFillArea (Int_t n, const Float_t *x, const Float_t *y)=0 |
virtual void | DrawLine (Double_t x1, Double_t y1, Double_t x2, Double_t y2)=0 |
virtual void | DrawLineNDC (Double_t u1, Double_t v1, Double_t u2, Double_t v2)=0 |
virtual void | DrawPixels (const unsigned char *pixelData, UInt_t width, UInt_t height, Int_t dstX, Int_t dstY, Bool_t enableAlphaBlending)=0 |
virtual void | DrawPolyLine (Int_t n, const Double_t *x, const Double_t *y)=0 |
virtual void | DrawPolyLine (Int_t n, const Float_t *x, const Float_t *y)=0 |
virtual void | DrawPolyLineNDC (Int_t n, const Double_t *u, const Double_t *v)=0 |
virtual void | DrawPolyMarker (Int_t n, const Double_t *x, const Double_t *y)=0 |
virtual void | DrawPolyMarker (Int_t n, const Float_t *x, const Float_t *y)=0 |
virtual void | DrawText (Double_t x, Double_t y, const char *text, ETextMode mode)=0 |
virtual void | DrawText (Double_t x, Double_t y, const wchar_t *text, ETextMode mode)=0 |
virtual void | DrawTextNDC (Double_t u, Double_t v, const char *text, ETextMode mode)=0 |
virtual void | DrawTextNDC (Double_t u, Double_t v, const wchar_t *text, ETextMode mode)=0 |
virtual Color_t | GetFillColor () const =0 |
virtual Style_t | GetFillStyle () const =0 |
virtual Color_t | GetLineColor () const =0 |
virtual Style_t | GetLineStyle () const =0 |
virtual Width_t | GetLineWidth () const =0 |
virtual Short_t | GetTextAlign () const =0 |
virtual Float_t | GetTextAngle () const =0 |
virtual Color_t | GetTextColor () const =0 |
virtual Font_t | GetTextFont () const =0 |
virtual Float_t | GetTextMagnitude () const =0 |
virtual Float_t | GetTextSize () const =0 |
virtual void | InitPainter () |
Empty definition. More... | |
virtual void | InvalidateCS () |
Empty definition. More... | |
virtual Bool_t | IsTransparent () const =0 |
virtual void | LockPainter () |
Empty definition. More... | |
virtual void | SaveImage (TVirtualPad *pad, const char *fileName, Int_t type) const =0 |
virtual void | SelectDrawable (Int_t device)=0 |
virtual void | SetFillColor (Color_t fcolor)=0 |
virtual void | SetFillStyle (Style_t fstyle)=0 |
virtual void | SetLineColor (Color_t lcolor)=0 |
virtual void | SetLineStyle (Style_t lstyle)=0 |
virtual void | SetLineWidth (Width_t lwidth)=0 |
virtual void | SetOpacity (Int_t percent)=0 |
virtual void | SetTextAlign (Short_t align=11)=0 |
virtual void | SetTextAngle (Float_t tangle=0)=0 |
virtual void | SetTextColor (Color_t tcolor=1)=0 |
virtual void | SetTextFont (Font_t tfont=62)=0 |
virtual void | SetTextSize (Float_t tsize=1)=0 |
virtual void | SetTextSizePixels (Int_t npixels)=0 |
Private Member Functions | |
TGLPadPainter (const TGLPadPainter &rhs) | |
void | DrawGradient (const TLinearGradient *gradient, Int_t n, const Double_t *x, const Double_t *y) |
void | DrawGradient (const TRadialGradient *gradient, Int_t n, const Double_t *x, const Double_t *y) |
void | DrawPolygonWithGradient (Int_t n, const Double_t *x, const Double_t *y) |
At the moment I assume both linear and radial gradients will work the same way - using a stencil buffer and some big rectangle(s) to fill with a gradient. More... | |
void | DrawPolyMarker () |
Poly-marker. More... | |
void | DrawTesselation (Int_t n, const Double_t *x, const Double_t *y) |
template<class Char_t > | |
void | DrawTextHelper (Double_t x, Double_t y, const Char_t *text, ETextMode mode) |
TGLPadPainter & | operator= (const TGLPadPainter &rhs) |
void | RestoreModelviewMatrix () const |
Restore the modelview matrix. More... | |
void | RestoreProjectionMatrix () const |
Restore the projection matrix. More... | |
void | RestoreViewport () |
Restore the saved viewport. More... | |
void | SaveModelviewMatrix () const |
Save the modelview matrix. More... | |
void | SaveProjectionMatrix () const |
Save the projection matrix. More... | |
void | SaveViewport () |
Extract and save the current viewport. More... | |
Private Attributes | |
TGLFont | fF |
TGLFontManager | fFM |
Bool_t | fIsHollowArea |
Rgl::Pad::GLLimits | fLimits |
Bool_t | fLocked |
Rgl::Pad::MarkerPainter | fMarker |
std::vector< TPoint > | fPoly |
Rgl::Pad::PolygonStippleSet | fSSet |
Rgl::Pad::Tesselator | fTess |
Int_t | fVp [4] |
std::vector< Double_t > | fVs |
Additional Inherited Members | |
Public Types inherited from TVirtualPadPainter | |
enum | EBoxMode { kHollow , kFilled } |
enum | ETextMode { kClear , kOpaque } |
Static Public Member Functions inherited from TVirtualPadPainter | |
static TVirtualPadPainter * | PadPainter (Option_t *opt="") |
Create a pad painter of specified type. More... | |
#include <TGLPadPainter.h>
TGLPadPainter::TGLPadPainter | ( | ) |
Definition at line 58 of file TGLPadPainter.cxx.
|
private |
|
virtual |
Not required at the moment.
Implements TVirtualPadPainter.
Definition at line 274 of file TGLPadPainter.cxx.
Not required at the moment.
Implements TVirtualPadPainter.
Definition at line 281 of file TGLPadPainter.cxx.
Not required at the moment.
Implements TVirtualPadPainter.
Definition at line 266 of file TGLPadPainter.cxx.
Not required at the moment.
Implements TVirtualPadPainter.
Definition at line 288 of file TGLPadPainter.cxx.
|
virtual |
Draw filled or hollow box.
Implements TVirtualPadPainter.
Definition at line 466 of file TGLPadPainter.cxx.
Draw tesselated polygon (probably, outline only).
Implements TVirtualPadPainter.
Definition at line 493 of file TGLPadPainter.cxx.
Draw tesselated polygon (never called, probably, since TPad::PaintFillArea for floats is deprecated).
Implements TVirtualPadPainter.
Definition at line 523 of file TGLPadPainter.cxx.
|
private |
Definition at line 1337 of file TGLPadPainter.cxx.
|
private |
Definition at line 1158 of file TGLPadPainter.cxx.
Draw line segment in NDC coordinates.
Implements TVirtualPadPainter.
Definition at line 449 of file TGLPadPainter.cxx.
|
virtual |
Implements TVirtualPadPainter.
Definition at line 1026 of file TGLPadPainter.cxx.
|
private |
At the moment I assume both linear and radial gradients will work the same way - using a stencil buffer and some big rectangle(s) to fill with a gradient.
Thus I have a 'common' part - the part responsible for a stencil test.
Definition at line 1104 of file TGLPadPainter.cxx.
Draw poly-line in user coordinates.
Implements TVirtualPadPainter.
Definition at line 555 of file TGLPadPainter.cxx.
|
private |
Poly-marker.
Definition at line 664 of file TGLPadPainter.cxx.
Definition at line 1458 of file TGLPadPainter.cxx.
Draw text.
This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).
Implements TVirtualPadPainter.
Definition at line 856 of file TGLPadPainter.cxx.
|
virtual |
Draw text.
This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).
Implements TVirtualPadPainter.
Definition at line 872 of file TGLPadPainter.cxx.
void TGLPadPainter::DrawTextHelper | ( | Double_t | x, |
Double_t | y, | ||
const Char * | text, | ||
ETextMode | |||
) |
Definition at line 811 of file TGLPadPainter.cxx.
|
private |
|
virtual |
Draw text in NDC.
This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).
Implements TVirtualPadPainter.
Definition at line 888 of file TGLPadPainter.cxx.
|
virtual |
Draw text in NDC.
This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).
Implements TVirtualPadPainter.
Definition at line 903 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 117 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 125 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 69 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 77 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 85 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 166 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 174 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 182 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 190 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 206 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 198 of file TGLPadPainter.cxx.
|
virtual |
Init gl-pad painter:
Reimplemented from TVirtualPadPainter.
Definition at line 341 of file TGLPadPainter.cxx.
|
virtual |
When TPad::Range for gPad is called, projection must be changed in OpenGL.
Reimplemented from TVirtualPadPainter.
Definition at line 371 of file TGLPadPainter.cxx.
|
virtual |
Delegate to gVirtualX.
IsTransparent is implemented as inline function in TAttFill.
Implements TVirtualPadPainter.
Definition at line 134 of file TGLPadPainter.cxx.
|
virtual |
Locked state of painter means, that GL context can be invalid, so no GL calls can be executed.
Reimplemented from TVirtualPadPainter.
Definition at line 388 of file TGLPadPainter.cxx.
|
private |
|
private |
Restore the modelview matrix.
Attention! GL_MODELVIEW will become the current matrix after this call!
Definition at line 950 of file TGLPadPainter.cxx.
|
private |
Restore the projection matrix.
Attention! GL_PROJECTION will become the current matrix after this call!
Definition at line 928 of file TGLPadPainter.cxx.
|
private |
Restore the saved viewport.
Definition at line 967 of file TGLPadPainter.cxx.
|
virtual |
Using TImage save frame-buffer contents as a picture.
Implements TVirtualPadPainter.
Definition at line 975 of file TGLPadPainter.cxx.
|
private |
Save the modelview matrix.
Attention! GL_MODELVIEW will become the current matrix after this call!
Definition at line 939 of file TGLPadPainter.cxx.
|
private |
Save the projection matrix.
Attention! GL_PROJECTION will become the current matrix after this call!
Definition at line 917 of file TGLPadPainter.cxx.
|
private |
Extract and save the current viewport.
Definition at line 959 of file TGLPadPainter.cxx.
For gVirtualX this means select pixmap (or window) and all subsequent drawings will go into this pixmap.
For OpenGL this means the change of coordinate system and viewport.
Implements TVirtualPadPainter.
Definition at line 298 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 142 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 150 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 93 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 101 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 109 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 158 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 214 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 222 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 230 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 238 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 246 of file TGLPadPainter.cxx.
Delegate to gVirtualX.
Implements TVirtualPadPainter.
Definition at line 254 of file TGLPadPainter.cxx.
|
private |
Definition at line 38 of file TGLPadPainter.h.
|
private |
Definition at line 37 of file TGLPadPainter.h.
|
private |
Definition at line 43 of file TGLPadPainter.h.
|
private |
Definition at line 33 of file TGLPadPainter.h.
|
private |
Definition at line 45 of file TGLPadPainter.h.
|
private |
Definition at line 32 of file TGLPadPainter.h.
|
private |
Definition at line 42 of file TGLPadPainter.h.
|
private |
Definition at line 30 of file TGLPadPainter.h.
|
private |
Definition at line 31 of file TGLPadPainter.h.
|
private |
Definition at line 40 of file TGLPadPainter.h.
|
private |
Definition at line 35 of file TGLPadPainter.h.