#ifndef ROOT_TGLPadUtils
#define ROOT_TGLPadUtils
#include <vector>
#ifndef ROOT_RStipples
#include "RStipples.h"
#endif
#ifndef ROOT_TPoint
#include "TPoint.h"
#endif
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TGLPadPainter;
namespace Rgl {
namespace Pad {
class PolygonStippleSet {
friend class ::TGLPadPainter;
friend class FillAttribSet;
private:
std::vector<unsigned char> fStipples;
static const UInt_t fgBitSwap[];
static UInt_t SwapBits(UInt_t bits);
enum EGeometry {
kRowSize = 4,
kNRows = 32,
kStippleSize = kNRows * kRowSize
};
enum EBitMasks {
kLow4 = 0xf,
kUp4 = 0xf0,
k16Bits = 0xff
};
public:
PolygonStippleSet();
};
class FillAttribSet {
UInt_t fStipple;
public:
FillAttribSet(const PolygonStippleSet & set, Bool_t ignoreStipple);
~FillAttribSet();
};
extern const UShort_t gLineStipples[];
extern const UInt_t gMaxStipple;
class LineAttribSet {
private:
Bool_t fSmooth;
UInt_t fStipple;
Bool_t fSetWidth;
public:
LineAttribSet(Bool_t smooth, UInt_t stipple, Double_t maxWidth, Bool_t setWidth);
~LineAttribSet();
};
class MarkerPainter {
private:
mutable TPoint fStar[8];
mutable TPoint fCross[4];
mutable std::vector<TPoint> fCircle;
enum {
kSmallCirclePts = 80,
kLargeCirclePts = 150
};
public:
void DrawDot(UInt_t n, const TPoint *xy)const;
void DrawPlus(UInt_t n, const TPoint *xy)const;
void DrawStar(UInt_t n, const TPoint *xy)const;
void DrawX(UInt_t n, const TPoint *xy)const;
void DrawFullDotSmall(UInt_t n, const TPoint *xy)const;
void DrawFullDotMedium(UInt_t n, const TPoint *xy)const;
void DrawCircle(UInt_t n, const TPoint *xy)const;
void DrawFullDotLarge(UInt_t n, const TPoint *xy)const;
void DrawFullSquare(UInt_t n, const TPoint *xy)const;
void DrawFullTrianlgeUp(UInt_t n, const TPoint *xy)const;
void DrawFullTrianlgeDown(UInt_t n, const TPoint *xy)const;
void DrawDiamond(UInt_t n, const TPoint *xy)const;
void DrawCross(UInt_t n, const TPoint *xy)const;
void DrawFullStar(UInt_t n, const TPoint *xy)const;
void DrawOpenStar(UInt_t n, const TPoint *xy)const;
};
class Tesselator {
public:
Tesselator();
~Tesselator();
void *GetTess()const
{
return fTess;
}
private:
void *fTess;
};
class OffScreenDevice {
friend class ::TGLPadPainter;
public:
OffScreenDevice(UInt_t w, UInt_t h, UInt_t x, UInt_t y, Bool_t top);
private:
UInt_t fW;
UInt_t fH;
UInt_t fX;
UInt_t fY;
Bool_t fTop;
};
void ExtractRGB(Color_t colorIndex, Float_t * rgb);
class GLLimits {
public:
GLLimits();
Double_t GetMaxLineWidth()const;
Double_t GetMaxPointSize()const;
private:
mutable Double_t fMaxLineWidth;
mutable Double_t fMaxPointSize;
};
}
}
#endif