// @(#)root/x11:$Id$
// Author: Rene Brun, Olivier Couet, Fons Rademakers   28/11/94

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TGX11
#define ROOT_TGX11


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TGX11                                                                //
//                                                                      //
// Interface to low level X11 (Xlib). This class gives access to basic  //
// X11 graphics, pixmap, text and font handling routines.               //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TVirtualX
#include "TVirtualX.h"
#endif

#if !defined(__CINT__)

#ifdef Status
// Convert Status from a CPP macro to a typedef:
typedef Status X11Status_t;
#undef Status
typedef X11Status_t Status;
#endif

#ifdef None
// Convert None from a CPP macro to a static const int:
static const unsigned long gX11None = None;
#undef None
static const unsigned long None = gX11None;
#endif

#endif

typedef unsigned long XID;
typedef XID Drawable;
typedef XID Cursor;
typedef XID Colormap;
typedef XID Window;

struct RXGCValues;
struct RXColor;
struct RXImage;
struct RXPoint;
struct RXpmAttributes;
struct RXSetWindowAttributes;
struct RXVisualInfo;
struct RVisual;

struct XWindow_t {
   Int_t    fOpen;                // 1 if the window is open, 0 if not
   Int_t    fDoubleBuffer;        // 1 if the double buffer is on, 0 if not
   Int_t    fIsPixmap;            // 1 if pixmap, 0 if not
   Drawable fDrawing;             // drawing area, equal to window or buffer
   Drawable fWindow;              // X11 window
   Drawable fBuffer;              // pixmap used for double buffer
   UInt_t   fWidth;               // width of the window
   UInt_t   fHeight;              // height of the window
   Int_t    fClip;                // 1 if the clipping is on
   Int_t    fXclip;               // x coordinate of the clipping rectangle
   Int_t    fYclip;               // y coordinate of the clipping rectangle
   UInt_t   fWclip;               // width of the clipping rectangle
   UInt_t   fHclip;               // height of the clipping rectangle
   ULong_t *fNewColors;           // new image colors (after processing)
   Int_t    fNcolors;             // number of different colors
   Bool_t   fShared;              // notify when window is shared
};

struct XColor_t {
   ULong_t  fPixel;               // color pixel value
   UShort_t fRed;                 // red value in range [0,kBIGGEST_RGB_VALUE]
   UShort_t fGreen;               // green value
   UShort_t fBlue;                // blue value
   Bool_t   fDefined;             // true if pixel value is defined
   XColor_t() { fPixel = 0; fRed = fGreen = fBlue = 0; fDefined = kFALSE; }
};

class TExMap;


class TGX11 : public TVirtualX {

private:
   Int_t      fMaxNumberOfWindows;    //Maximum number of windows
   XWindow_t *fWindows;               //List of windows
   TExMap    *fColors;                //Hash list of colors
   Cursor     fCursors[kNumCursors];  //List of cursors
   void      *fXEvent;                //Current native (X11) event

   void   CloseWindow1();
   void   ClearPixmap(Drawable *pix);
   void   CopyWindowtoPixmap(Drawable *pix, Int_t xpos, Int_t ypos);
   void   FindBestVisual();
   void   FindUsableVisual(RXVisualInfo *vlist, Int_t nitems);
   void   PutImage(Int_t offset, Int_t itran, Int_t x0, Int_t y0, Int_t nx,
                   Int_t ny, Int_t xmin, Int_t ymin, Int_t xmax, Int_t ymax,
                   UChar_t *image, Drawable_t id);
   void   RemovePixmap(Drawable *pix);
   void   SetColor(void *gc, Int_t ci);
   void   SetFillStyleIndex(Int_t style, Int_t fasi);
   void   SetInput(Int_t inp);
   void   SetMarkerType(Int_t type, Int_t n, RXPoint *xy);
   void   CollectImageColors(ULong_t pixel, ULong_t *&orgcolors, Int_t &ncolors,
                             Int_t &maxcolors);
   void   MakeOpaqueColors(Int_t percent, ULong_t *orgcolors, Int_t ncolors);
   Int_t  FindColor(ULong_t pixel, ULong_t *orgcolors, Int_t ncolors);
   void   ImgPickPalette(RXImage *image, Int_t &ncol, Int_t *&R, Int_t *&G, Int_t *&B);

   //---- Private methods used for GUI ----
   void MapGCValues(GCValues_t &gval, ULong_t &xmask, RXGCValues &xgval, Bool_t tox = kTRUE);
   void MapSetWindowAttributes(SetWindowAttributes_t *attr,
                               ULong_t &xmask, RXSetWindowAttributes &xattr);
   void MapCursor(ECursor cursor, Int_t &xcursor);
   void MapColorStruct(ColorStruct_t *color, RXColor &xcolor);
   void MapPictureAttributes(PictureAttributes_t &attr, RXpmAttributes &xpmattr,
                             Bool_t toxpm = kTRUE);
   void MapModifierState(UInt_t &state, UInt_t &xstate, Bool_t tox = kTRUE);

   // void MapEvent(Event_t &ev, XEvent &xev, Bool_t tox = kTRUE);
   void MapEvent(Event_t &ev, void *xev, Bool_t tox = kTRUE);

   void MapEventMask(UInt_t &emask, UInt_t &xemask, Bool_t tox = kTRUE);
   void MapKeySym(UInt_t &keysym, UInt_t &xkeysym, Bool_t tox = kTRUE);

protected:
   void      *fDisplay;            //Pointer to display
   RVisual   *fVisual;             //Pointer to visual used by all windows
   Drawable   fRootWin;            //Root window used as parent of all windows
   Drawable   fVisRootWin;         //Root window with fVisual to be used to create GC's and XImages
   Colormap   fColormap;           //Default colormap, 0 if b/w
   ULong_t    fBlackPixel;         //Value of black pixel in colormap
   ULong_t    fWhitePixel;         //Value of white pixel in colormap
   Int_t      fScreenNumber;       //Screen number
   Int_t      fTextAlignH;         //Text Alignment Horizontal
   Int_t      fTextAlignV;         //Text Alignment Vertical
   Int_t      fTextAlign;          //Text alignment (set in SetTextAlign)
   Float_t    fCharacterUpX;       //Character Up vector along X
   Float_t    fCharacterUpY;       //Character Up vector along Y
   Float_t    fTextMagnitude;      //Text Magnitude
   Int_t      fDepth;              //Number of color planes
   Int_t      fRedDiv;             //Red value divider, -1 if no TrueColor visual
   Int_t      fGreenDiv;           //Green value divider
   Int_t      fBlueDiv;            //Blue value divider
   Int_t      fRedShift;           //Bits to left shift red, -1 if no TrueColor visual
   Int_t      fGreenShift;         //Bits to left shift green
   Int_t      fBlueShift;          //Bits to left shift blue
   Bool_t     fHasTTFonts;         //True when TrueType fonts are used
   Bool_t     fHasXft;             //True when XftFonts are used

   // needed by TGX11TTF
   Bool_t     AllocColor(Colormap cmap, RXColor *color);
   void       QueryColors(Colormap cmap, RXColor *colors, Int_t ncolors);
   void      *GetGC(Int_t which) const;
   XColor_t  &GetColor(Int_t cid);

public:
   TGX11();
   TGX11(const TGX11 &org);
   TGX11(const char *name, const char *title);
   virtual ~TGX11();

   Bool_t    Init(void *display);
   void      ClearWindow();
   void      ClosePixmap();
   void      CloseWindow();
   void      CopyPixmap(Int_t wid, Int_t xpos, Int_t ypos);
   void      DrawBox(Int_t x1, Int_t y1, Int_t x2, Int_t y2, EBoxMode mode);
   void      DrawCellArray(Int_t x1, Int_t y1, Int_t x2, Int_t y2, Int_t nx, Int_t ny, Int_t *ic);
   void      DrawFillArea(Int_t n, TPoint *xy);
   void      DrawLine(Int_t x1, Int_t y1, Int_t x2, Int_t y2);
   void      DrawPolyLine(Int_t n, TPoint *xy);
   void      DrawPolyMarker(Int_t n, TPoint *xy);
   virtual void DrawText(Int_t x, Int_t y, Float_t angle, Float_t mgn, const char *text, ETextMode mode);
   virtual void DrawText(Int_t, Int_t, Float_t, Float_t, const wchar_t *, ETextMode) {}
   void      GetCharacterUp(Float_t &chupx, Float_t &chupy);
   Int_t     GetDoubleBuffer(Int_t wid);
   void      GetGeometry(Int_t wid, Int_t &x, Int_t &y, UInt_t &w, UInt_t &h);
   const char *DisplayName(const char *dpyName = 0);
   Handle_t  GetNativeEvent() const { return (Handle_t) fXEvent; }
   ULong_t   GetPixel(Color_t cindex);
   void      GetPlanes(Int_t &nplanes);
   void      GetRGB(Int_t index, Float_t &r, Float_t &g, Float_t &b);
   virtual void GetTextExtent(UInt_t &w, UInt_t &h, char *mess);
   virtual void GetTextExtent(UInt_t &, UInt_t &, wchar_t *){}
   Float_t   GetTextMagnitude() { return fTextMagnitude; }
   Window_t  GetWindowID(Int_t wid);
   Bool_t    HasTTFonts() const { return fHasTTFonts; }
   Int_t     InitWindow(ULong_t window);
   Int_t     AddWindow(ULong_t qwid, UInt_t w, UInt_t h);
   Int_t     AddPixmap(ULong_t pixid, UInt_t w, UInt_t h);
   void      RemoveWindow(ULong_t qwid);
   void      MoveWindow(Int_t wid, Int_t x, Int_t y);
   Int_t     OpenDisplay(void *display);
   Int_t     OpenPixmap(UInt_t w, UInt_t h);
   void      QueryPointer(Int_t &ix, Int_t &iy);
   Pixmap_t  ReadGIF(Int_t x0, Int_t y0, const char *file, Window_t id=0);
   Int_t     RequestLocator(Int_t mode, Int_t ctyp, Int_t &x, Int_t &y);
   Int_t     RequestString(Int_t x, Int_t y, char *text);
   void      RescaleWindow(Int_t wid, UInt_t w, UInt_t h);
   Int_t     ResizePixmap(Int_t wid, UInt_t w, UInt_t h);
   void      ResizeWindow(Int_t wid);
   void      SelectWindow(Int_t wid);
   void      SetCharacterUp(Float_t chupx, Float_t chupy);
   void      SetClipOFF(Int_t wid);
   void      SetClipRegion(Int_t wid, Int_t x, Int_t y, UInt_t w, UInt_t h);
   void      SetCursor(Int_t win, ECursor cursor);
   void      SetDoubleBuffer(Int_t wid, Int_t mode);
   void      SetDoubleBufferOFF();
   void      SetDoubleBufferON();
   void      SetDrawMode(EDrawMode mode);
   void      SetFillColor(Color_t cindex);
   void      SetFillStyle(Style_t style);
   void      SetLineColor(Color_t cindex);
   void      SetLineType(Int_t n, Int_t *dash);
   void      SetLineStyle(Style_t linestyle);
   void      SetLineWidth(Width_t width);
   void      SetMarkerColor(Color_t cindex);
   void      SetMarkerSize(Float_t markersize);
   void      SetMarkerStyle(Style_t markerstyle);
   void      SetOpacity(Int_t percent);
   void      SetRGB(Int_t cindex, Float_t r, Float_t g, Float_t b);
   void      SetTextAlign(Short_t talign=11);
   void      SetTextColor(Color_t cindex);
   virtual Int_t SetTextFont(char *fontname, ETextSetMode mode);
   virtual void  SetTextFont(Font_t fontnumber);
   void      SetTextMagnitude(Float_t mgn=1) { fTextMagnitude = mgn;}
   virtual void SetTextSize(Float_t textsize);
   void      Sync(Int_t mode);
   void      UpdateWindow(Int_t mode);
   void      Warp(Int_t ix, Int_t iy, Window_t id = 0);
   Int_t     WriteGIF(char *name);
   void      WritePixmap(Int_t wid, UInt_t w, UInt_t h, char *pxname);
   Window_t  GetCurrentWindow() const;
   Int_t     SupportsExtension(const char *ext) const;

   //---- Methods used for GUI -----
   void         GetWindowAttributes(Window_t id, WindowAttributes_t &attr);
   void         MapWindow(Window_t id);
   void         MapSubwindows(Window_t id);
   void         MapRaised(Window_t id);
   void         UnmapWindow(Window_t id);
   void         DestroyWindow(Window_t id);
   void         DestroySubwindows(Window_t id);
   void         RaiseWindow(Window_t id);
   void         LowerWindow(Window_t id);
   void         MoveWindow(Window_t id, Int_t x, Int_t y);
   void         MoveResizeWindow(Window_t id, Int_t x, Int_t y, UInt_t w, UInt_t h);
   void         ResizeWindow(Window_t id, UInt_t w, UInt_t h);
   void         IconifyWindow(Window_t id);
   void         ReparentWindow(Window_t id, Window_t pid, Int_t x, Int_t y);
   void         SetWindowBackground(Window_t id, ULong_t color);
   void         SetWindowBackgroundPixmap(Window_t id, Pixmap_t pxm);
   Window_t     CreateWindow(Window_t parent, Int_t x, Int_t y,
                             UInt_t w, UInt_t h, UInt_t border,
                             Int_t depth, UInt_t clss,
                             void *visual, SetWindowAttributes_t *attr,
                             UInt_t wtype);
   Int_t        OpenDisplay(const char *dpyName);
   void         CloseDisplay();
   Display_t    GetDisplay() const;
   Visual_t     GetVisual() const;
   Int_t        GetScreen() const;
   Int_t        GetDepth() const;
   Colormap_t   GetColormap() const;
   Atom_t       InternAtom(const char *atom_name, Bool_t only_if_exist);
   Window_t     GetDefaultRootWindow() const;
   Window_t     GetParent(Window_t id) const;
   FontStruct_t LoadQueryFont(const char *font_name);
   FontH_t      GetFontHandle(FontStruct_t fs);
   void         DeleteFont(FontStruct_t fs);
   GContext_t   CreateGC(Drawable_t id, GCValues_t *gval);
   void         ChangeGC(GContext_t gc, GCValues_t *gval);
   void         CopyGC(GContext_t org, GContext_t dest, Mask_t mask);
   void         DeleteGC(GContext_t gc);
   Cursor_t     CreateCursor(ECursor cursor);
   void         SetCursor(Window_t id, Cursor_t curid);
   Pixmap_t     CreatePixmap(Drawable_t id, UInt_t w, UInt_t h);
   Pixmap_t     CreatePixmap(Drawable_t id, const char *bitmap, UInt_t width,
                             UInt_t height, ULong_t forecolor, ULong_t backcolor,
                             Int_t depth);
   unsigned char *GetColorBits(Drawable_t wid, Int_t x = 0, Int_t y = 0, UInt_t w = 0, UInt_t h = 0);
   Pixmap_t     CreatePixmapFromData(unsigned char *bits, UInt_t width, UInt_t height);
   Pixmap_t     CreateBitmap(Drawable_t id, const char *bitmap,
                             UInt_t width, UInt_t height);
   void         DeletePixmap(Pixmap_t pmap);
   Bool_t       CreatePictureFromFile(Drawable_t id, const char *filename,
                                      Pixmap_t &pict, Pixmap_t &pict_mask,
                                      PictureAttributes_t &attr);
   Bool_t       CreatePictureFromData(Drawable_t id, char **data,
                                      Pixmap_t &pict, Pixmap_t &pict_mask,
                                      PictureAttributes_t &attr);
   Bool_t       ReadPictureDataFromFile(const char *filename, char ***ret_data);
   void         DeletePictureData(void *data);
   void         SetDashes(GContext_t gc, Int_t offset, const char *dash_list, Int_t n);
   Bool_t       ParseColor(Colormap_t cmap, const char *cname, ColorStruct_t &color);
   Bool_t       AllocColor(Colormap_t cmap, ColorStruct_t &color);
   void         QueryColor(Colormap_t cmap, ColorStruct_t &color);
   void         FreeColor(Colormap_t cmap, ULong_t pixel);
   Int_t        EventsPending();
   void         NextEvent(Event_t &event);
   void         Bell(Int_t percent);
   void         CopyArea(Drawable_t src, Drawable_t dest, GContext_t gc,
                         Int_t src_x, Int_t src_y, UInt_t width, UInt_t height,
                         Int_t dest_x, Int_t dest_y);
   void         ChangeWindowAttributes(Window_t id, SetWindowAttributes_t *attr);
   void         ChangeProperty(Window_t id, Atom_t property, Atom_t type,
                               UChar_t *data, Int_t len);
   void         DrawLine(Drawable_t id, GContext_t gc, Int_t x1, Int_t y1, Int_t x2, Int_t y2);
   void         ClearArea(Window_t id, Int_t x, Int_t y, UInt_t w, UInt_t h);
   Bool_t       CheckEvent(Window_t id, EGEventType type, Event_t &ev);
   void         SendEvent(Window_t id, Event_t *ev);
   void         WMDeleteNotify(Window_t id);
   void         SetKeyAutoRepeat(Bool_t on = kTRUE);
   void         GrabKey(Window_t id, Int_t keycode, UInt_t modifier, Bool_t grab = kTRUE);
   void         GrabButton(Window_t id, EMouseButton button, UInt_t modifier,
                           UInt_t evmask, Window_t confine, Cursor_t cursor,
                           Bool_t grab = kTRUE);
   void         GrabPointer(Window_t id, UInt_t evmask, Window_t confine,
                            Cursor_t cursor, Bool_t grab = kTRUE,
                            Bool_t owner_events = kTRUE);
   void         SetWindowName(Window_t id, char *name);
   void         SetIconName(Window_t id, char *name);
   void         SetIconPixmap(Window_t id, Pixmap_t pic);
   void         SetClassHints(Window_t id, char *className, char *resourceName);
   void         SetMWMHints(Window_t id, UInt_t value, UInt_t funcs, UInt_t input);
   void         SetWMPosition(Window_t id, Int_t x, Int_t y);
   void         SetWMSize(Window_t id, UInt_t w, UInt_t h);
   void         SetWMSizeHints(Window_t id, UInt_t wmin, UInt_t hmin,
                               UInt_t wmax, UInt_t hmax, UInt_t winc, UInt_t hinc);
   void         SetWMState(Window_t id, EInitialState state);
   void         SetWMTransientHint(Window_t id, Window_t main_id);
   void         DrawString(Drawable_t id, GContext_t gc, Int_t x, Int_t y,
                           const char *s, Int_t len);
   Int_t        TextWidth(FontStruct_t font, const char *s, Int_t len);
   void         GetFontProperties(FontStruct_t font, Int_t &max_ascent, Int_t &max_descent);
   void         GetGCValues(GContext_t gc, GCValues_t &gval);
   FontStruct_t GetFontStruct(FontH_t fh);
   void         FreeFontStruct(FontStruct_t fs);
   void         ClearWindow(Window_t id);
   Int_t        KeysymToKeycode(UInt_t keysym);
   void         FillRectangle(Drawable_t id, GContext_t gc, Int_t x, Int_t y,
                              UInt_t w, UInt_t h);
   void         DrawRectangle(Drawable_t id, GContext_t gc, Int_t x, Int_t y,
                              UInt_t w, UInt_t h);
   void         DrawSegments(Drawable_t id, GContext_t gc, Segment_t *seg, Int_t nseg);
   void         SelectInput(Window_t id, UInt_t evmask);
   Window_t     GetInputFocus();
   void         SetInputFocus(Window_t id);
   Window_t     GetPrimarySelectionOwner();
   void         SetPrimarySelectionOwner(Window_t id);
   void         ConvertPrimarySelection(Window_t id, Atom_t clipboard, Time_t when);
   void         LookupString(Event_t *event, char *buf, Int_t buflen, UInt_t &keysym);
   void         GetPasteBuffer(Window_t id, Atom_t atom, TString &text,
                               Int_t &nchar, Bool_t del);
   void         TranslateCoordinates(Window_t src, Window_t dest, Int_t src_x,
                    Int_t src_y, Int_t &dest_x, Int_t &dest_y, Window_t &child);
   void         GetWindowSize(Drawable_t id, Int_t &x, Int_t &y, UInt_t &w, UInt_t &h);
   void         FillPolygon(Window_t id, GContext_t gc, Point_t *points, Int_t npnt);
   void         QueryPointer(Window_t id, Window_t &rootw, Window_t &childw,
                             Int_t &root_x, Int_t &root_y, Int_t &win_x,
                             Int_t &win_y, UInt_t &mask);
   void         SetForeground(GContext_t gc, ULong_t foreground);
   void         SetClipRectangles(GContext_t gc, Int_t x, Int_t y, Rectangle_t *recs, Int_t n);
   void         Update(Int_t mode = 0);
   Region_t     CreateRegion();
   void         DestroyRegion(Region_t reg);
   void         UnionRectWithRegion(Rectangle_t *rect, Region_t src, Region_t dest);
   Region_t     PolygonRegion(Point_t *points, Int_t np, Bool_t winding);
   void         UnionRegion(Region_t rega, Region_t regb, Region_t result);
   void         IntersectRegion(Region_t rega, Region_t regb, Region_t result);
   void         SubtractRegion(Region_t rega, Region_t regb, Region_t result);
   void         XorRegion(Region_t rega, Region_t regb, Region_t result);
   Bool_t       EmptyRegion(Region_t reg);
   Bool_t       PointInRegion(Int_t x, Int_t y, Region_t reg);
   Bool_t       EqualRegion(Region_t rega, Region_t regb);
   void         GetRegionBox(Region_t reg, Rectangle_t *);
   char       **ListFonts(const char *fontname, Int_t max, Int_t &count);
   void         FreeFontNames(char **fontlist);
   Drawable_t   CreateImage(UInt_t width, UInt_t height);
   void         GetImageSize(Drawable_t id, UInt_t &width, UInt_t &height);
   void         PutPixel(Drawable_t id, Int_t x, Int_t y, ULong_t pixel);
   void         PutImage(Drawable_t id, GContext_t gc, Drawable_t img,
                         Int_t dx, Int_t dy, Int_t x, Int_t y,
                         UInt_t w, UInt_t h);
   void         DeleteImage(Drawable_t img);
   void         ShapeCombineMask(Window_t id, Int_t x, Int_t y, Pixmap_t mask);
   UInt_t       ScreenWidthMM() const;

   void         DeleteProperty(Window_t, Atom_t&);
   Int_t        GetProperty(Window_t, Atom_t, Long_t, Long_t, Bool_t, Atom_t,
                            Atom_t*, Int_t*, ULong_t*, ULong_t*, unsigned char**);
   void         ChangeActivePointerGrab(Window_t, UInt_t, Cursor_t);
   void         ConvertSelection(Window_t, Atom_t&, Atom_t&, Atom_t&, Time_t&);
   Bool_t       SetSelectionOwner(Window_t, Atom_t&);
   void         ChangeProperties(Window_t id, Atom_t property, Atom_t type,
                                 Int_t format, UChar_t *data, Int_t len);
   void         SetDNDAware(Window_t, Atom_t *);
   void         SetTypeList(Window_t win, Atom_t prop, Atom_t *typelist);
   Window_t     FindRWindow(Window_t win, Window_t dragwin, Window_t input, int x, int y, int maxd);
   Bool_t       IsDNDAware(Window_t win, Atom_t *typelist);

   ClassDef(TGX11,0)  //Interface to X11
};

#endif
 TGX11.h:1
 TGX11.h:2
 TGX11.h:3
 TGX11.h:4
 TGX11.h:5
 TGX11.h:6
 TGX11.h:7
 TGX11.h:8
 TGX11.h:9
 TGX11.h:10
 TGX11.h:11
 TGX11.h:12
 TGX11.h:13
 TGX11.h:14
 TGX11.h:15
 TGX11.h:16
 TGX11.h:17
 TGX11.h:18
 TGX11.h:19
 TGX11.h:20
 TGX11.h:21
 TGX11.h:22
 TGX11.h:23
 TGX11.h:24
 TGX11.h:25
 TGX11.h:26
 TGX11.h:27
 TGX11.h:28
 TGX11.h:29
 TGX11.h:30
 TGX11.h:31
 TGX11.h:32
 TGX11.h:33
 TGX11.h:34
 TGX11.h:35
 TGX11.h:36
 TGX11.h:37
 TGX11.h:38
 TGX11.h:39
 TGX11.h:40
 TGX11.h:41
 TGX11.h:42
 TGX11.h:43
 TGX11.h:44
 TGX11.h:45
 TGX11.h:46
 TGX11.h:47
 TGX11.h:48
 TGX11.h:49
 TGX11.h:50
 TGX11.h:51
 TGX11.h:52
 TGX11.h:53
 TGX11.h:54
 TGX11.h:55
 TGX11.h:56
 TGX11.h:57
 TGX11.h:58
 TGX11.h:59
 TGX11.h:60
 TGX11.h:61
 TGX11.h:62
 TGX11.h:63
 TGX11.h:64
 TGX11.h:65
 TGX11.h:66
 TGX11.h:67
 TGX11.h:68
 TGX11.h:69
 TGX11.h:70
 TGX11.h:71
 TGX11.h:72
 TGX11.h:73
 TGX11.h:74
 TGX11.h:75
 TGX11.h:76
 TGX11.h:77
 TGX11.h:78
 TGX11.h:79
 TGX11.h:80
 TGX11.h:81
 TGX11.h:82
 TGX11.h:83
 TGX11.h:84
 TGX11.h:85
 TGX11.h:86
 TGX11.h:87
 TGX11.h:88
 TGX11.h:89
 TGX11.h:90
 TGX11.h:91
 TGX11.h:92
 TGX11.h:93
 TGX11.h:94
 TGX11.h:95
 TGX11.h:96
 TGX11.h:97
 TGX11.h:98
 TGX11.h:99
 TGX11.h:100
 TGX11.h:101
 TGX11.h:102
 TGX11.h:103
 TGX11.h:104
 TGX11.h:105
 TGX11.h:106
 TGX11.h:107
 TGX11.h:108
 TGX11.h:109
 TGX11.h:110
 TGX11.h:111
 TGX11.h:112
 TGX11.h:113
 TGX11.h:114
 TGX11.h:115
 TGX11.h:116
 TGX11.h:117
 TGX11.h:118
 TGX11.h:119
 TGX11.h:120
 TGX11.h:121
 TGX11.h:122
 TGX11.h:123
 TGX11.h:124
 TGX11.h:125
 TGX11.h:126
 TGX11.h:127
 TGX11.h:128
 TGX11.h:129
 TGX11.h:130
 TGX11.h:131
 TGX11.h:132
 TGX11.h:133
 TGX11.h:134
 TGX11.h:135
 TGX11.h:136
 TGX11.h:137
 TGX11.h:138
 TGX11.h:139
 TGX11.h:140
 TGX11.h:141
 TGX11.h:142
 TGX11.h:143
 TGX11.h:144
 TGX11.h:145
 TGX11.h:146
 TGX11.h:147
 TGX11.h:148
 TGX11.h:149
 TGX11.h:150
 TGX11.h:151
 TGX11.h:152
 TGX11.h:153
 TGX11.h:154
 TGX11.h:155
 TGX11.h:156
 TGX11.h:157
 TGX11.h:158
 TGX11.h:159
 TGX11.h:160
 TGX11.h:161
 TGX11.h:162
 TGX11.h:163
 TGX11.h:164
 TGX11.h:165
 TGX11.h:166
 TGX11.h:167
 TGX11.h:168
 TGX11.h:169
 TGX11.h:170
 TGX11.h:171
 TGX11.h:172
 TGX11.h:173
 TGX11.h:174
 TGX11.h:175
 TGX11.h:176
 TGX11.h:177
 TGX11.h:178
 TGX11.h:179
 TGX11.h:180
 TGX11.h:181
 TGX11.h:182
 TGX11.h:183
 TGX11.h:184
 TGX11.h:185
 TGX11.h:186
 TGX11.h:187
 TGX11.h:188
 TGX11.h:189
 TGX11.h:190
 TGX11.h:191
 TGX11.h:192
 TGX11.h:193
 TGX11.h:194
 TGX11.h:195
 TGX11.h:196
 TGX11.h:197
 TGX11.h:198
 TGX11.h:199
 TGX11.h:200
 TGX11.h:201
 TGX11.h:202
 TGX11.h:203
 TGX11.h:204
 TGX11.h:205
 TGX11.h:206
 TGX11.h:207
 TGX11.h:208
 TGX11.h:209
 TGX11.h:210
 TGX11.h:211
 TGX11.h:212
 TGX11.h:213
 TGX11.h:214
 TGX11.h:215
 TGX11.h:216
 TGX11.h:217
 TGX11.h:218
 TGX11.h:219
 TGX11.h:220
 TGX11.h:221
 TGX11.h:222
 TGX11.h:223
 TGX11.h:224
 TGX11.h:225
 TGX11.h:226
 TGX11.h:227
 TGX11.h:228
 TGX11.h:229
 TGX11.h:230
 TGX11.h:231
 TGX11.h:232
 TGX11.h:233
 TGX11.h:234
 TGX11.h:235
 TGX11.h:236
 TGX11.h:237
 TGX11.h:238
 TGX11.h:239
 TGX11.h:240
 TGX11.h:241
 TGX11.h:242
 TGX11.h:243
 TGX11.h:244
 TGX11.h:245
 TGX11.h:246
 TGX11.h:247
 TGX11.h:248
 TGX11.h:249
 TGX11.h:250
 TGX11.h:251
 TGX11.h:252
 TGX11.h:253
 TGX11.h:254
 TGX11.h:255
 TGX11.h:256
 TGX11.h:257
 TGX11.h:258
 TGX11.h:259
 TGX11.h:260
 TGX11.h:261
 TGX11.h:262
 TGX11.h:263
 TGX11.h:264
 TGX11.h:265
 TGX11.h:266
 TGX11.h:267
 TGX11.h:268
 TGX11.h:269
 TGX11.h:270
 TGX11.h:271
 TGX11.h:272
 TGX11.h:273
 TGX11.h:274
 TGX11.h:275
 TGX11.h:276
 TGX11.h:277
 TGX11.h:278
 TGX11.h:279
 TGX11.h:280
 TGX11.h:281
 TGX11.h:282
 TGX11.h:283
 TGX11.h:284
 TGX11.h:285
 TGX11.h:286
 TGX11.h:287
 TGX11.h:288
 TGX11.h:289
 TGX11.h:290
 TGX11.h:291
 TGX11.h:292
 TGX11.h:293
 TGX11.h:294
 TGX11.h:295
 TGX11.h:296
 TGX11.h:297
 TGX11.h:298
 TGX11.h:299
 TGX11.h:300
 TGX11.h:301
 TGX11.h:302
 TGX11.h:303
 TGX11.h:304
 TGX11.h:305
 TGX11.h:306
 TGX11.h:307
 TGX11.h:308
 TGX11.h:309
 TGX11.h:310
 TGX11.h:311
 TGX11.h:312
 TGX11.h:313
 TGX11.h:314
 TGX11.h:315
 TGX11.h:316
 TGX11.h:317
 TGX11.h:318
 TGX11.h:319
 TGX11.h:320
 TGX11.h:321
 TGX11.h:322
 TGX11.h:323
 TGX11.h:324
 TGX11.h:325
 TGX11.h:326
 TGX11.h:327
 TGX11.h:328
 TGX11.h:329
 TGX11.h:330
 TGX11.h:331
 TGX11.h:332
 TGX11.h:333
 TGX11.h:334
 TGX11.h:335
 TGX11.h:336
 TGX11.h:337
 TGX11.h:338
 TGX11.h:339
 TGX11.h:340
 TGX11.h:341
 TGX11.h:342
 TGX11.h:343
 TGX11.h:344
 TGX11.h:345
 TGX11.h:346
 TGX11.h:347
 TGX11.h:348
 TGX11.h:349
 TGX11.h:350
 TGX11.h:351
 TGX11.h:352
 TGX11.h:353
 TGX11.h:354
 TGX11.h:355
 TGX11.h:356
 TGX11.h:357
 TGX11.h:358
 TGX11.h:359
 TGX11.h:360
 TGX11.h:361
 TGX11.h:362
 TGX11.h:363
 TGX11.h:364
 TGX11.h:365
 TGX11.h:366
 TGX11.h:367
 TGX11.h:368
 TGX11.h:369
 TGX11.h:370
 TGX11.h:371
 TGX11.h:372
 TGX11.h:373
 TGX11.h:374
 TGX11.h:375
 TGX11.h:376
 TGX11.h:377
 TGX11.h:378
 TGX11.h:379
 TGX11.h:380
 TGX11.h:381
 TGX11.h:382
 TGX11.h:383
 TGX11.h:384
 TGX11.h:385
 TGX11.h:386
 TGX11.h:387
 TGX11.h:388
 TGX11.h:389
 TGX11.h:390
 TGX11.h:391
 TGX11.h:392
 TGX11.h:393
 TGX11.h:394
 TGX11.h:395
 TGX11.h:396
 TGX11.h:397
 TGX11.h:398
 TGX11.h:399
 TGX11.h:400
 TGX11.h:401
 TGX11.h:402
 TGX11.h:403
 TGX11.h:404
 TGX11.h:405
 TGX11.h:406
 TGX11.h:407
 TGX11.h:408
 TGX11.h:409
 TGX11.h:410
 TGX11.h:411
 TGX11.h:412
 TGX11.h:413
 TGX11.h:414
 TGX11.h:415
 TGX11.h:416
 TGX11.h:417