ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TGWin32.h
Go to the documentation of this file.
1 // @(#)root/win32gdk:$Id$
2 // Author: Rene Brun, Olivier Couet, Fons Rademakers, Bertrand Bellenot 27/11/01
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_TGWin32
13 #define ROOT_TGWin32
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TGWin32 //
19 // //
20 // Interface to low level Win32. This class gives access to basic //
21 // Win32 graphics, pixmap, text and font handling routines //
22 // //
23 //////////////////////////////////////////////////////////////////////////
24 
25 #ifndef ROOT_TVirtualX
26 #include "TVirtualX.h"
27 #endif
28 
29 #ifndef ROOT_TTF
30 #include "TTF.h"
31 #endif
32 
33 
34 #if !defined(__CINT__)
35 
36 #include "Windows4Root.h"
37 #include "gdk/gdk.h"
38 #include "gdk/win32/gdkwin32.h"
39 
40 #else
41 
42 typedef ULong_t LPCRITICAL_SECTION;
43 typedef unsigned long DWORD;
44 typedef void* HANDLE;
45 
46 typedef unsigned long XID;
47 typedef XID GdkDrawable;
48 typedef XID GdkCursor;
49 typedef XID GdkColormap;
50 typedef XID GdkWindow;
51 typedef XID GdkVisual;
52 
53 struct GdkGC;
54 struct GdkGCValues;
55 struct GdkWindowAttr;
56 struct GdkColor;
57 struct GdkEvent;
58 struct GdkImage;
59 struct GdkPoint;
60 struct GdkRectangle;
61 
62 struct MSG;
63 
64 #endif
65 
66 typedef unsigned long KeySym;
67 
68 #define None 0 /* universal null resource or null atom */
69 
70 struct XWindow_t;
71 
72 struct XColor_t {
73  GdkColor color;
74  Bool_t fDefined; // true if pixel value is defined
75  XColor_t() { color.pixel = 0; color.red = color.green = color.blue = 0; fDefined = kFALSE; }
76 };
77 
78 class TExMap;
79 
80 class TGWin32 : public TVirtualX {
81 
82 private:
85 
86  FT_Vector fAlign; // alignment vector
87 
88  void Align(void);
89  void DrawImage(FT_Bitmap *source, ULong_t fore, ULong_t back, GdkImage *xim,
90  Int_t bx, Int_t by);
92  GdkImage *GetBackground(Int_t x, Int_t y, UInt_t w, UInt_t h);
93  void RenderString(Int_t x, Int_t y, ETextMode mode);
94 
95  Int_t fMaxNumberOfWindows; //Maximum number of windows
96  XWindow_t *fWindows; //List of windows
97  TExMap *fColors; //Hash list of colors
98  GdkCursor *fCursors[kNumCursors]; //List of cursors
99 
100  void CloseWindow1();
101  void PutImage(Int_t offset, Int_t itran, Int_t x0, Int_t y0, Int_t nx,
103  UChar_t *image, Drawable_t id);
104  void RemovePixmap(GdkDrawable *pix);
105  void SetColor(GdkGC *gc, Int_t ci);
106  void SetInput(Int_t inp);
107  void SetMarkerType(Int_t type, Int_t n, GdkPoint *xy);
108  void MakeOpaqueColors(Int_t percent, ULong_t *orgcolors, Int_t ncolors);
109  Int_t FindColor(ULong_t pixel, ULong_t *orgcolors, Int_t ncolors);
110  void ImgPickPalette(GdkImage *image, Int_t &ncol, Int_t *&R, Int_t *&G, Int_t *&B);
111 
112  //---- Private methods used for GUI ----
113  void MapGCValues(GCValues_t &gval, ULong_t &xmask, GdkGCValues &xgval, Bool_t tox = kTRUE);
115  ULong_t &xmask, GdkWindowAttr &xattr);
116  void MapCursor(ECursor cursor, Int_t &xcursor);
117  void MapColorStruct(ColorStruct_t *color, GdkColor &xcolor);
118  void MapModifierState(UInt_t &state, UInt_t &xstate, Bool_t tox = kTRUE);
119  void MapEvent(Event_t &ev, GdkEvent &xev, Bool_t tox = kTRUE);
120  void MapEventMask(UInt_t &emask, UInt_t &xemask, Bool_t tox = kTRUE);
121  void MapKeySym(UInt_t &keysym, UInt_t &xkeysym, Bool_t tox = kTRUE);
122 
123 protected:
124  GdkVisual *fVisual; //
125  GdkColormap *fColormap; // Default colormap, 0 if b/w
126  Int_t fScreenNumber; // Screen number
127  Bool_t fHasTTFonts; // True when TrueType fonts are used
128  Bool_t fUseSysPointers; // True when using system mouse pointers
129  Int_t fTextAlignH; // Text Alignment Horizontal
130  Int_t fTextAlignV; // Text Alignment Vertical
131  Int_t fTextAlign; // Text alignment (set in SetTextAlign)
132  Float_t fCharacterUpX; // Character Up vector along X
133  Float_t fCharacterUpY; // Character Up vector along Y
134  Float_t fTextMagnitude; // Text Magnitude
135  Int_t fDepth; // Number of color planes
136  Int_t fRedDiv; // Red value divider, -1 if no TrueColor visual
137  Int_t fGreenDiv; // Green value divider
138  Int_t fBlueDiv; // Blue value divider
139  Int_t fRedShift; // Bits to left shift red, -1 if no TrueColor visual
140  Int_t fGreenShift; // Bits to left shift green
141  Int_t fBlueShift; // Bits to left shift blue
142  Handle_t fXEvent; // Current native (GDK) event
143  TObject* fRefreshTimer; // TGWin32RefreshTimer for GUI thread message handler
144 
148  Bool_t fPenModified; // line syle || width modified
151 
152  void UpdateFillColor();
153  void UpdateFillStyle();
154  void UpdateLineColor();
155  void UpdateMarkerStyle();
156  void UpdateMarkerColor();
157  void UpdateLineStyle();
158 
159  // needed by TGWin32TTF
160  Bool_t AllocColor(GdkColormap *cmap, GdkColor *color);
161  void QueryColors(GdkColormap *cmap, GdkColor *colors, Int_t ncolors);
162  GdkGC *GetGC(Int_t which) const;
163  XColor_t &GetColor(Int_t cid);
164 
165 public:
166  TGWin32();
167  TGWin32(const char *name, const char *title);
168  virtual ~TGWin32();
169 
170  void DrawText(Int_t x, Int_t y, Float_t angle, Float_t mgn,
171  const char *text, ETextMode mode);
172  void DrawText(Int_t x, Int_t y, Float_t angle, Float_t mgn,
173  const wchar_t *text, ETextMode mode);
174  void SetTextFont(Font_t fontnumber);
175  Int_t SetTextFont(char *fontname, ETextSetMode mode);
176  void SetTextSize(Float_t textsize);
177 
178  Bool_t Init(void *display=0);
179  //UInt_t ExecCommand(TGWin32Command *);
180  void ClearWindow();
181  void ClosePixmap();
182  void CloseWindow();
183  void CopyPixmap(Int_t wid, Int_t xpos, Int_t ypos);
184  void DrawBox(Int_t x1, Int_t y1, Int_t x2, Int_t y2, EBoxMode mode);
185  void DrawCellArray(Int_t x1, Int_t y1, Int_t x2, Int_t y2, Int_t nx, Int_t ny, Int_t *ic);
186  void DrawFillArea(Int_t n, TPoint *xy);
187  void DrawLine(Int_t x1, Int_t y1, Int_t x2, Int_t y2);
188  void DrawPolyLine(Int_t n, TPoint *xy);
189  void DrawPolyMarker(Int_t n, TPoint *xy);
190  void GetCharacterUp(Float_t &chupx, Float_t &chupy);
192  void GetGeometry(Int_t wid, Int_t &x, Int_t &y, UInt_t &w, UInt_t &h);
193  const char *DisplayName(const char *dpyName = 0);
194  ULong_t GetPixel(Color_t cindex);
195  void GetPlanes(Int_t &nplanes);
196  void GetRGB(Int_t index, Float_t &r, Float_t &g, Float_t &b);
197  virtual void GetTextExtent(UInt_t &w, UInt_t &h, char *mess);
198  virtual void GetTextExtent(UInt_t &, UInt_t &, wchar_t *){}
201  Bool_t HasTTFonts() const { return fHasTTFonts; }
204  void MoveWindow(Int_t wid, Int_t x, Int_t y);
206  void QueryPointer(Int_t &ix, Int_t &iy);
207  Pixmap_t ReadGIF(Int_t x0, Int_t y0, const char *file, Window_t id=0);
208  Int_t RequestLocator(Int_t mode, Int_t ctyp, Int_t &x, Int_t &y);
209  Int_t RequestString(Int_t x, Int_t y, char *text);
210  void RescaleWindow(Int_t wid, UInt_t w, UInt_t h);
212  void ResizeWindow(Int_t wid);
213  void SelectWindow(Int_t wid);
214  void SetCharacterUp(Float_t chupx, Float_t chupy);
215  void SetClipOFF(Int_t wid);
216  void SetClipRegion(Int_t wid, Int_t x, Int_t y, UInt_t w, UInt_t h);
217  void SetCursor(Int_t win, ECursor cursor);
218  void SetDoubleBuffer(Int_t wid, Int_t mode);
219  void SetDoubleBufferOFF();
220  void SetDoubleBufferON();
221  void SetDrawMode(EDrawMode mode);
222  void SetFillColor(Color_t cindex);
223  void SetFillStyle(Style_t style);
224  void SetLineColor(Color_t cindex);
225  void SetLineType(Int_t n, Int_t *dash);
226  void SetLineStyle(Style_t linestyle);
227  void SetLineWidth(Width_t width);
228  void SetMarkerColor(Color_t cindex);
229  void SetMarkerSize(Float_t markersize);
230  void SetMarkerStyle(Style_t markerstyle);
231  void SetOpacity(Int_t percent);
232  void SetRGB(Int_t cindex, Float_t r, Float_t g, Float_t b);
233  void SetTextAlign(Short_t talign=11);
234  void SetTextColor(Color_t cindex);
236  void Sync(Int_t mode);
237  void UpdateWindow(Int_t mode);
238  void Warp(Int_t ix, Int_t iy, Window_t id = 0);
239  Int_t WriteGIF(char *name);
240  void WritePixmap(Int_t wid, UInt_t w, UInt_t h, char *pxname);
241  Window_t GetCurrentWindow() const;
242 
243  //---- Methods used for GUI -----
245  void MapWindow(Window_t id);
246  void MapSubwindows(Window_t id);
247  void MapRaised(Window_t id);
248  void UnmapWindow(Window_t id);
249  void DestroyWindow(Window_t id);
250  void DestroySubwindows(Window_t id);
251  void RaiseWindow(Window_t id);
252  void LowerWindow(Window_t id);
253  void MoveWindow(Window_t id, Int_t x, Int_t y);
255  void ResizeWindow(Window_t id, UInt_t w, UInt_t h);
256  void IconifyWindow(Window_t id);
257  void ReparentWindow(Window_t id, Window_t pid, Int_t x, Int_t y);
258  void SetWindowBackground(Window_t id, ULong_t color);
261  UInt_t w, UInt_t h, UInt_t border,
262  Int_t depth, UInt_t clss,
263  void *visual, SetWindowAttributes_t *attr,
264  UInt_t wtype);
265  Int_t OpenDisplay(const char *dpyName=0);
266  void CloseDisplay();
267  Display_t GetDisplay() const;
268  Visual_t GetVisual() const { return 0; }
269  Int_t GetScreen() const { return 0; }
270  Int_t GetDepth() const;
272  Atom_t InternAtom(const char *atom_name, Bool_t only_if_exist);
274  Window_t GetParent(Window_t id) const;
275  FontStruct_t LoadQueryFont(const char *font_name);
277  void DeleteFont(FontStruct_t fs);
279  void ChangeGC(GContext_t gc, GCValues_t *gval);
280  void CopyGC(GContext_t org, GContext_t dest, Mask_t mask);
281  void DeleteGC(GContext_t gc);
282  Cursor_t CreateCursor(ECursor cursor);
283  void SetCursor(Window_t id, Cursor_t curid);
285  Pixmap_t CreatePixmap(Drawable_t id, const char *bitmap, UInt_t width,
286  UInt_t height, ULong_t forecolor, ULong_t backcolor,
287  Int_t depth);
288  Pixmap_t CreatePixmapFromData(unsigned char *bits, UInt_t width, UInt_t height);
289  Pixmap_t CreateBitmap(Drawable_t id, const char *bitmap,
290  UInt_t width, UInt_t height);
291  void DeletePixmap(Pixmap_t pmap);
293  Pixmap_t &pict, Pixmap_t &pict_mask,
295  Bool_t CreatePictureFromData(Drawable_t id, char **data,
296  Pixmap_t &pict, Pixmap_t &pict_mask,
298  Bool_t ReadPictureDataFromFile(const char *filename, char ***ret_data);
299  void DeletePictureData(void *data);
300  void SetDashes(GContext_t gc, Int_t offset, const char *dash_list, Int_t n);
301  Bool_t ParseColor(Colormap_t cmap, const char *cname, ColorStruct_t &color);
303  void QueryColor(Colormap_t cmap, ColorStruct_t &color);
304  void FreeColor(Colormap_t cmap, ULong_t pixel);
306  void NextEvent(Event_t &event);
307  void Bell(Int_t percent);
309  Int_t src_x, Int_t src_y, UInt_t width, UInt_t height,
310  Int_t dest_x, Int_t dest_y);
312  void ChangeProperty(Window_t id, Atom_t property, Atom_t type,
313  UChar_t *data, Int_t len);
314  void DrawLine(Drawable_t id, GContext_t gc, Int_t x1, Int_t y1, Int_t x2, Int_t y2);
315  void ClearArea(Window_t id, Int_t x, Int_t y, UInt_t w, UInt_t h);
317  void SendEvent(Window_t id, Event_t *ev);
318  void WMDeleteNotify(Window_t id);
319  void SetKeyAutoRepeat(Bool_t on = kTRUE);
320  void GrabKey(Window_t id, Int_t keycode, UInt_t modifier, Bool_t grab = kTRUE);
321  void GrabButton(Window_t id, EMouseButton button, UInt_t modifier,
322  UInt_t evmask, Window_t confine, Cursor_t cursor,
323  Bool_t grab = kTRUE);
324  void GrabPointer(Window_t id, UInt_t evmask, Window_t confine,
325  Cursor_t cursor, Bool_t grab = kTRUE,
326  Bool_t owner_events = kTRUE);
327  void SetWindowName(Window_t id, char *name);
328  void SetIconName(Window_t id, char *name);
329  void SetIconPixmap(Window_t id, Pixmap_t pic);
330  void SetClassHints(Window_t id, char *className, char *resourceName);
331  void SetMWMHints(Window_t id, UInt_t value, UInt_t funcs, UInt_t input);
332  void SetWMPosition(Window_t id, Int_t x, Int_t y);
333  void SetWMSize(Window_t id, UInt_t w, UInt_t h);
334  void SetWMSizeHints(Window_t id, UInt_t wmin, UInt_t hmin,
335  UInt_t wmax, UInt_t hmax, UInt_t winc, UInt_t hinc);
336  void SetWMState(Window_t id, EInitialState state);
337  void SetWMTransientHint(Window_t id, Window_t main_id);
338  void DrawString(Drawable_t id, GContext_t gc, Int_t x, Int_t y,
339  const char *s, Int_t len);
340  Int_t TextWidth(FontStruct_t font, const char *s, Int_t len);
341  void GetFontProperties(FontStruct_t font, Int_t &max_ascent, Int_t &max_descent);
342  void GetGCValues(GContext_t gc, GCValues_t &gval);
344  void FreeFontStruct(FontStruct_t fs);
345  void ClearWindow(Window_t id);
346  Int_t KeysymToKeycode(UInt_t keysym);
348  UInt_t w, UInt_t h);
350  UInt_t w, UInt_t h);
351  void DrawSegments(Drawable_t id, GContext_t gc, Segment_t *seg, Int_t nseg);
352  void SelectInput(Window_t id, UInt_t evmask);
354  void SetInputFocus(Window_t id);
357  void ConvertPrimarySelection(Window_t id, Atom_t clipboard, Time_t when);
358  void LookupString(Event_t *event, char *buf, Int_t buflen, UInt_t &keysym);
359  void GetPasteBuffer(Window_t id, Atom_t atom, TString &text,
360  Int_t &nchar, Bool_t del);
362  Int_t src_y, Int_t &dest_x, Int_t &dest_y, Window_t &child);
363  void GetWindowSize(Drawable_t id, Int_t &x, Int_t &y, UInt_t &w, UInt_t &h);
364  void FillPolygon(Window_t id, GContext_t gc, Point_t *points, Int_t npnt);
365  void QueryPointer(Window_t id, Window_t &rootw, Window_t &childw,
366  Int_t &root_x, Int_t &root_y, Int_t &win_x,
367  Int_t &win_y, UInt_t &mask);
368  void SetForeground(GContext_t gc, ULong_t foreground);
370  void Update(Int_t mode = 0);
372  void DestroyRegion(Region_t reg);
375  void UnionRegion(Region_t rega, Region_t regb, Region_t result);
376  void IntersectRegion(Region_t rega, Region_t regb, Region_t result);
377  void SubtractRegion(Region_t rega, Region_t regb, Region_t result);
378  void XorRegion(Region_t rega, Region_t regb, Region_t result);
381  Bool_t EqualRegion(Region_t rega, Region_t regb);
383  char **ListFonts(const char *fontname, Int_t max, Int_t &count);
384  void FreeFontNames(char **fontlist);
385  Drawable_t CreateImage(UInt_t width, UInt_t height);
386  void GetImageSize(Drawable_t id, UInt_t &width, UInt_t &height);
387  void PutPixel(Drawable_t id, Int_t x, Int_t y, ULong_t pixel);
388  void PutImage(Drawable_t id, GContext_t gc, Drawable_t img,
389  Int_t dx, Int_t dy, Int_t x, Int_t y,
390  UInt_t w, UInt_t h);
391  void DeleteImage(Drawable_t img);
392  unsigned char *GetColorBits(Drawable_t wid, Int_t x, Int_t y, UInt_t width, UInt_t height);
394  void RemoveWindow(ULong_t qwid);
395  void ShapeCombineMask(Window_t id, Int_t x, Int_t y, Pixmap_t mask);
396  UInt_t ScreenWidthMM() const;
397 
400  Atom_t*, Int_t*, ULong_t*, ULong_t*, unsigned char**);
404  void ChangeProperties(Window_t id, Atom_t property, Atom_t type,
405  Int_t format, UChar_t *data, Int_t len);
406  void SetDNDAware(Window_t win, Atom_t *typelist);
407  void SetTypeList(Window_t win, Atom_t prop, Atom_t *typelist);
408  Window_t FindRWindow(Window_t win, Window_t dragwin, Window_t input, int x, int y, int maxd);
409  Bool_t IsDNDAware(Window_t win, Atom_t *typelist);
410 
411  Bool_t GUIThreadMessageFunc(MSG* msg);
412  Bool_t IsCmdThread() const;
413  void SetUserThreadId(ULong_t id);
414 
415  static void Lock();
416  static void Unlock();
417 
418  ClassDef(TGWin32,0) //Interface to Win32
419 };
420 
421 #endif
const int nx
Definition: kalman.C:16
EAlign
Definition: TGWin32.h:83
Pixmap_t ReadGIF(Int_t x0, Int_t y0, const char *file, Window_t id=0)
If id is NULL - loads the specified gif file at position [x0,y0] in the current window.
Definition: TGWin32.cxx:4273
void CloseWindow1()
Delete current window.
Definition: TGWin32.cxx:1608
void MapColorStruct(ColorStruct_t *color, GdkColor &xcolor)
Map a ColorStruct_t to a XColor structure.
Definition: TGWin32.cxx:5467
void RescaleWindow(Int_t wid, UInt_t w, UInt_t h)
Rescale the window wid.
Definition: TGWin32.cxx:2702
GdkGC * GetGC(Int_t which) const
Return desired Graphics Context ("which" maps directly on gGCList[]).
Definition: TGWin32.cxx:1964
Handle_t FontStruct_t
Definition: GuiTypes.h:40
const char * DisplayName(const char *dpyName=0)
Return hostname on which the display is opened.
Definition: TGWin32.cxx:2030
virtual ~TGWin32()
destructor.
Definition: TGWin32.cxx:817
void SetMarkerSize(Float_t markersize)
Set marker size index.
Definition: TGWin32.cxx:3373
void XorRegion(Region_t rega, Region_t regb, Region_t result)
Calculate the difference between the union and intersection of two regions.
Definition: TGWin32.cxx:6936
static double B[]
void FillPolygon(Window_t id, GContext_t gc, Point_t *points, Int_t npnt)
FillPolygon fills the region closed by the specified path.
Definition: TGWin32.cxx:6750
static void Lock()
Definition: TGWin32.cxx:946
void SetClipRectangles(GContext_t gc, Int_t x, Int_t y, Rectangle_t *recs, Int_t n)
Set clipping rectangles in graphics context.
Definition: TGWin32.cxx:6837
void SetWMSize(Window_t id, UInt_t w, UInt_t h)
Tells window manager the desired size of window "id".
Definition: TGWin32.cxx:6345
Semi-Abstract base class defining a generic interface to the underlying, low level, native graphics backend (X11, Win32, MacOS, OpenGL...).
Definition: TVirtualX.h:70
void SetLineWidth(Width_t width)
Set line width.
Definition: TGWin32.cxx:3337
Bool_t Init(void *display=0)
Initialize Win32 system. Returns kFALSE in case of failure.
Definition: TGWin32.cxx:962
void ConvertSelection(Window_t, Atom_t &, Atom_t &, Atom_t &, Time_t &)
Get Clipboard data.
Definition: TGWin32.cxx:7407
float xmin
Definition: THbookFile.cxx:93
void MoveWindow(Int_t wid, Int_t x, Int_t y)
Move the window wid.
Definition: TGWin32.cxx:2089
Int_t EventsPending()
Returns number of pending events.
Definition: TGWin32.cxx:5598
void SetWindowBackground(Window_t id, ULong_t color)
Set the window background color.
Definition: TGWin32.cxx:4528
void SetLineType(Int_t n, Int_t *dash)
Set line type.
Definition: TGWin32.cxx:3261
void SetOpacity(Int_t percent)
Set opacity of a window.
Definition: TGWin32.cxx:3708
void SetLineColor(Color_t cindex)
Set color index for lines.
Definition: TGWin32.cxx:3233
void SelectWindow(Int_t wid)
Select window to which subsequent output is directed.
Definition: TGWin32.cxx:2840
XWindow_t * fWindows
Definition: TGWin32.h:96
XColor_t & GetColor(Int_t cid)
Return reference to internal color structure associated to color index cid.
Definition: TGWin32.cxx:1942
Bool_t ParseColor(Colormap_t cmap, const char *cname, ColorStruct_t &color)
Parse string cname containing color name, like "green" or "#00FF00".
Definition: TGWin32.cxx:5482
void ClosePixmap()
Delete current pixmap.
Definition: TGWin32.cxx:1592
void DeleteProperty(Window_t, Atom_t &)
Deletes the specified property on the specified window.
Definition: TGWin32.cxx:7332
EInitialState
Definition: GuiTypes.h:346
void SetDashes(GContext_t gc, Int_t offset, const char *dash_list, Int_t n)
Specify a dash pattertn.
Definition: TGWin32.cxx:5449
void UpdateFillStyle()
Set fill area style index.
Definition: TGWin32.cxx:3180
short Style_t
Definition: RtypesCore.h:76
void CloseWindow()
Delete current window.
Definition: TGWin32.cxx:1600
Bool_t IsVisible(Int_t x, Int_t y, UInt_t w, UInt_t h)
Test if there is really something to render.
Definition: TGWin32.cxx:1412
void ReparentWindow(Window_t id, Window_t pid, Int_t x, Int_t y)
Reparent window, make pid the new parent and position the window at position (x,y) in new parent...
Definition: TGWin32.cxx:4518
Bool_t fHasTTFonts
Definition: TGWin32.h:127
Bool_t fFillColorModified
Definition: TGWin32.h:145
void SetUserThreadId(ULong_t id)
Set user thread id.
Definition: TGWin32.cxx:7589
FontStruct_t LoadQueryFont(const char *font_name)
Load font and query font.
Definition: TGWin32.cxx:5131
float Float_t
Definition: RtypesCore.h:53
void SetMarkerColor(Color_t cindex)
Set color index for markers.
Definition: TGWin32.cxx:3353
void MapRaised(Window_t id)
Map window on screen and put on top of all windows.
Definition: TGWin32.cxx:4381
UInt_t Mask_t
Definition: GuiTypes.h:42
tuple offset
Definition: tree.py:93
void Update(Int_t mode=0)
Flush (mode = 0, default) or synchronize (mode = 1) X output buffer.
Definition: TGWin32.cxx:6861
float ymin
Definition: THbookFile.cxx:93
Display_t GetDisplay() const
Returns handle to display (might be useful in some cases where direct X11 manipulation outside of TVi...
Definition: TGWin32.cxx:5081
void GrabPointer(Window_t id, UInt_t evmask, Window_t confine, Cursor_t cursor, Bool_t grab=kTRUE, Bool_t owner_events=kTRUE)
Establish an active pointer grab.
Definition: TGWin32.cxx:6232
UInt_t ScreenWidthMM() const
Returns the width of the screen in millimeters.
Definition: TGWin32.cxx:7322
GContext_t CreateGC(Drawable_t id, GCValues_t *gval)
Create a graphics context using the values set in gval (but only for those entries that are in the ma...
Definition: TGWin32.cxx:5175
Float_t fTextMagnitude
Definition: TGWin32.h:134
void GetGeometry(Int_t wid, Int_t &x, Int_t &y, UInt_t &w, UInt_t &h)
Return position and size of window wid.
Definition: TGWin32.cxx:1997
void ShapeCombineMask(Window_t id, Int_t x, Int_t y, Pixmap_t mask)
The Nonrectangular Window Shape Extension adds nonrectangular windows to the System.
Definition: TGWin32.cxx:7314
ULong_t Time_t
Definition: GuiTypes.h:43
void SetDoubleBufferOFF()
Turn double buffer mode off.
Definition: TGWin32.cxx:3067
Window_t GetInputFocus()
Returns the window id of the window having the input focus.
Definition: TGWin32.cxx:6548
void SetMarkerType(Int_t type, Int_t n, GdkPoint *xy)
Set marker type.
Definition: TGWin32.cxx:3395
TH1 * h
Definition: legend2.C:5
Description of a X11 color.
Definition: TGWin32.h:72
void DeleteImage(Drawable_t img)
Deallocates the memory associated with the image img.
Definition: TGWin32.cxx:7074
Bool_t ReadPictureDataFromFile(const char *filename, char ***ret_data)
Read picture data from file and store in ret_data.
Definition: TGWin32.cxx:5419
void CloseDisplay()
close display (terminate server/gMainThread thread)
Definition: TGWin32.cxx:900
EGEventType
Definition: GuiTypes.h:60
Handle_t Cursor_t
Definition: GuiTypes.h:35
void SetColor(GdkGC *gc, Int_t ci)
Set the foreground color in GdkGC.
Definition: TGWin32.cxx:2957
Bool_t fUseSysPointers
Definition: TGWin32.h:128
Bool_t CheckEvent(Window_t id, EGEventType type, Event_t &ev)
Check if there is for window "id" an event of type "type".
Definition: TGWin32.cxx:5550
Window_t FindRWindow(Window_t win, Window_t dragwin, Window_t input, int x, int y, int maxd)
Recursively search in the children of Window for a Window which is at location x, y and is DND aware...
Definition: TGWin32.cxx:7485
void SetWMSizeHints(Window_t id, UInt_t wmin, UInt_t hmin, UInt_t wmax, UInt_t hmax, UInt_t winc, UInt_t hinc)
Give the window manager minimum and maximum size hints.
Definition: TGWin32.cxx:6356
Bool_t fMarkerColorModified
Definition: TGWin32.h:150
static const char * filename()
void RaiseWindow(Window_t id)
Put window on top of window stack.
Definition: TGWin32.cxx:4441
void UpdateLineStyle()
Update line style.
Definition: TGWin32.cxx:3301
Handle_t GContext_t
Definition: GuiTypes.h:39
void SetWindowName(Window_t id, char *name)
Set window name.
Definition: TGWin32.cxx:6252
ULong_t GetPixel(Color_t cindex)
Return pixel value associated to specified ROOT color number.
Definition: TGWin32.cxx:2945
void DrawFillArea(Int_t n, TPoint *xy)
Fill area described by polygon.
Definition: TGWin32.cxx:1737
Basic string class.
Definition: TString.h:137
void ChangeGC(GContext_t gc, GCValues_t *gval)
Change entries in an existing graphics context, gc, by values from gval.
Definition: TGWin32.cxx:5194
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
const Bool_t kFALSE
Definition: Rtypes.h:92
void UpdateLineColor()
Definition: TGWin32.cxx:3244
FT_Vector fAlign
Definition: TGWin32.h:86
Int_t fRedDiv
Definition: TGWin32.h:136
void GetWindowAttributes(Window_t id, WindowAttributes_t &attr)
Get window attributes and return filled in attributes structure.
Definition: TGWin32.cxx:5040
Handle_t Drawable_t
Definition: GuiTypes.h:32
void SetWMState(Window_t id, EInitialState state)
Set the initial state of the window. Either kNormalState or kIconicState.
Definition: TGWin32.cxx:6381
void DrawImage(FT_Bitmap *source, ULong_t fore, ULong_t back, GdkImage *xim, Int_t bx, Int_t by)
Draw FT_Bitmap bitmap to xim image at position bx,by using specified foreground color.
Definition: TGWin32.cxx:1237
Int_t AddWindow(ULong_t qwid, UInt_t w, UInt_t h)
Register a window created by Qt as a ROOT window (like InitWindow()).
Definition: TGWin32.cxx:7229
void UnmapWindow(Window_t id)
Unmap window from screen.
Definition: TGWin32.cxx:4408
Int_t fRedShift
Definition: TGWin32.h:139
static std::string format(double x, double y, int digits, int width)
ECursor
Definition: TVirtualX.h:56
This class is the basic interface to the Win32 graphics system.
Definition: TGWin32.h:80
short Font_t
Definition: RtypesCore.h:75
void MapSubwindows(Window_t id)
Maps all subwindows for the specified window "id" in top-to-bottom stacking order.
Definition: TGWin32.cxx:4370
void FreeFontStruct(FontStruct_t fs)
Free font structure returned by GetFontStruct().
Definition: TGWin32.cxx:6470
Handle_t Display_t
Definition: GuiTypes.h:28
Int_t fTextAlignV
Definition: TGWin32.h:130
void DeletePictureData(void *data)
Delete picture data created by the function ReadPictureDataFromFile.
Definition: TGWin32.cxx:5439
void MapKeySym(UInt_t &keysym, UInt_t &xkeysym, Bool_t tox=kTRUE)
Map to and from X key symbols.
Definition: TGWin32.cxx:6623
Int_t TextWidth(FontStruct_t font, const char *s, Int_t len)
Return length of string in pixels. Size depends on font.
Definition: TGWin32.cxx:6428
void PutPixel(Drawable_t id, Int_t x, Int_t y, ULong_t pixel)
Overwrites the pixel in the image with the specified pixel value.
Definition: TGWin32.cxx:7031
tuple window
Definition: gui_ex.py:57
#define G(x, y, z)
Int_t OpenDisplay(const char *dpyName=0)
Open the display. Return -1 if the opening fails, 0 when ok.
Definition: TGWin32.cxx:979
void SendEvent(Window_t id, Event_t *ev)
Send event ev to window id.
Definition: TGWin32.cxx:5584
Handle_t FontH_t
Definition: GuiTypes.h:36
Int_t fBlueDiv
Definition: TGWin32.h:138
void Align(void)
Compute alignment variables.
Definition: TGWin32.cxx:1207
void GetPasteBuffer(Window_t id, Atom_t atom, TString &text, Int_t &nchar, Bool_t del)
Get contents of paste buffer atom into string.
Definition: TGWin32.cxx:6663
Window_t GetParent(Window_t id) const
Return the parent of the window.
Definition: TGWin32.cxx:5119
void SetDoubleBuffer(Int_t wid, Int_t mode)
Set the double buffer on/off on window wid.
Definition: TGWin32.cxx:3031
Region_t CreateRegion()
Create a new empty region.
Definition: TGWin32.cxx:6869
void LowerWindow(Window_t id)
Lower window so it lays below all its siblings.
Definition: TGWin32.cxx:4460
Pixmap_t CreatePixmapFromData(unsigned char *bits, UInt_t width, UInt_t height)
create an image from RGB data.
Definition: TGWin32.cxx:7150
static const double x2[5]
Int_t fGreenDiv
Definition: TGWin32.h:137
Double_t x[n]
Definition: legend1.C:17
void SetTextFont(Font_t fontnumber)
Set specified font.
Definition: TGWin32.cxx:1540
unsigned long KeySym
Definition: TGWin32.h:66
void QueryPointer(Int_t &ix, Int_t &iy)
Query pointer position.
Definition: TGWin32.cxx:2266
void SetDoubleBufferON()
Turn double buffer mode on.
Definition: TGWin32.cxx:3077
void DrawText(Int_t x, Int_t y, Float_t angle, Float_t mgn, const char *text, ETextMode mode)
Draw text using TrueType fonts.
Definition: TGWin32.cxx:1357
TBonjourRegistrar * reg
Definition: hserv2bonj.C:28
void SetFillColor(Color_t cindex)
Set color index for fill areas.
Definition: TGWin32.cxx:3135
void UpdateFillColor()
Definition: TGWin32.cxx:3150
void GetPlanes(Int_t &nplanes)
Get maximum number of planes.
Definition: TGWin32.cxx:2038
Handle_t fXEvent
Definition: TGWin32.h:142
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 **)
Returns the actual type of the property, the actual format of the property, and a pointer to the data...
Definition: TGWin32.cxx:7346
const int ny
Definition: kalman.C:17
void DeletePixmap(Pixmap_t pmap)
Explicitely delete pixmap resource.
Definition: TGWin32.cxx:5349
void SetInput(Int_t inp)
Set input on or off.
Definition: TGWin32.cxx:3225
Handle_t Atom_t
Definition: GuiTypes.h:38
Bool_t CreatePictureFromFile(Drawable_t id, const char *filename, Pixmap_t &pict, Pixmap_t &pict_mask, PictureAttributes_t &attr)
Create a picture pixmap from data on file.
Definition: TGWin32.cxx:5359
void CopyGC(GContext_t org, GContext_t dest, Mask_t mask)
Copies graphics context from org to dest.
Definition: TGWin32.cxx:5260
Int_t WriteGIF(char *name)
Writes the current window into GIF file.
Definition: TGWin32.cxx:4135
Bool_t fPenModified
Definition: TGWin32.h:148
XColor_t()
Definition: TGWin32.h:75
static void Unlock()
Definition: TGWin32.cxx:954
void MapGCValues(GCValues_t &gval, ULong_t &xmask, GdkGCValues &xgval, Bool_t tox=kTRUE)
Map a GCValues_t to a XCGValues structure if tox is true.
Definition: TGWin32.cxx:4771
void ChangeProperty(Window_t id, Atom_t property, Atom_t type, UChar_t *data, Int_t len)
This function alters the property for the specified window and causes the X server to generate a Prop...
Definition: TGWin32.cxx:6125
void GetImageSize(Drawable_t id, UInt_t &width, UInt_t &height)
Returns the width and height of the image id.
Definition: TGWin32.cxx:7022
Pixmap_t CreatePixmap(Drawable_t id, UInt_t w, UInt_t h)
Creates a pixmap of the width and height you specified and returns a pixmap ID that identifies it...
Definition: TGWin32.cxx:5297
void GrabButton(Window_t id, EMouseButton button, UInt_t modifier, UInt_t evmask, Window_t confine, Cursor_t cursor, Bool_t grab=kTRUE)
Establish passive grab on a certain mouse button.
Definition: TGWin32.cxx:6207
tuple np
Definition: multifit.py:30
Bool_t fLineColorModified
Definition: TGWin32.h:147
void IntersectRegion(Region_t rega, Region_t regb, Region_t result)
Compute the intersection of rega and regb and return result region.
Definition: TGWin32.cxx:6918
void UpdateMarkerColor()
Definition: TGWin32.cxx:3363
ClassDef(TAttLine, 2)
Bool_t CreatePictureFromData(Drawable_t id, char **data, Pixmap_t &pict, Pixmap_t &pict_mask, PictureAttributes_t &attr)
Create a pixture pixmap from data.
Definition: TGWin32.cxx:5393
void FreeColor(Colormap_t cmap, ULong_t pixel)
Free color cell with specified pixel value.
Definition: TGWin32.cxx:5540
unsigned long XID
Definition: TGX11.h:37
Int_t OpenPixmap(UInt_t w, UInt_t h)
Open a new pixmap.
Definition: TGWin32.cxx:2103
void SetCursor(Int_t win, ECursor cursor)
Set the cursor.
Definition: TGWin32.cxx:2999
void MapEventMask(UInt_t &emask, UInt_t &xemask, Bool_t tox=kTRUE)
Map event mask to or from gdk.
Definition: TGWin32.cxx:4659
Int_t fGreenShift
Definition: TGWin32.h:140
Window_t GetDefaultRootWindow() const
Return handle to the default root window created when calling XOpenDisplay().
Definition: TGWin32.cxx:5111
Float_t GetTextMagnitude()
Returns the current font magnification factor.
Definition: TGWin32.h:199
void RenderString(Int_t x, Int_t y, ETextMode mode)
Perform the string rendering in the pad.
Definition: TGWin32.cxx:1434
void SetMWMHints(Window_t id, UInt_t value, UInt_t funcs, UInt_t input)
Set decoration style for MWM-compatible wm (mwm, ncdwm, fvwm?).
Definition: TGWin32.cxx:6323
void GrabKey(Window_t id, Int_t keycode, UInt_t modifier, Bool_t grab=kTRUE)
Establish passive grab on a certain key.
Definition: TGWin32.cxx:6188
short Color_t
Definition: RtypesCore.h:79
void GetRGB(Int_t index, Float_t &r, Float_t &g, Float_t &b)
Get rgb values for color "index".
Definition: TGWin32.cxx:2046
virtual void GetTextExtent(UInt_t &w, UInt_t &h, char *mess)
Return the size of a character string.
Definition: TGWin32.cxx:2066
Bool_t IsDNDAware(Window_t win, Atom_t *typelist)
Checks if Window win is DND aware, and knows any of the DND formats passed in argument.
Definition: TGWin32.cxx:7542
void Warp(Int_t ix, Int_t iy, Window_t id=0)
Set pointer position.
Definition: TGWin32.cxx:3988
void SetFillStyle(Style_t style)
Set fill area style.
Definition: TGWin32.cxx:3169
Int_t KeysymToKeycode(UInt_t keysym)
Convert a keysym to the appropriate keycode.
Definition: TGWin32.cxx:6490
void SetDrawMode(EDrawMode mode)
Set the drawing mode.
Definition: TGWin32.cxx:3106
Definition: TPoint.h:33
void SetIconName(Window_t id, char *name)
Set window icon name.
Definition: TGWin32.cxx:6262
Bool_t PointInRegion(Int_t x, Int_t y, Region_t reg)
Returns true if the point x,y is in the region.
Definition: TGWin32.cxx:6952
Bool_t HasTTFonts() const
Returns True when TrueType fonts are used.
Definition: TGWin32.h:201
void SetLineStyle(Style_t linestyle)
Set line style.
Definition: TGWin32.cxx:3290
point * points
Definition: X3DBuffer.c:20
void DrawCellArray(Int_t x1, Int_t y1, Int_t x2, Int_t y2, Int_t nx, Int_t ny, Int_t *ic)
Draw a cell array.
Definition: TGWin32.cxx:1701
void SetTextSize(Float_t textsize)
Set current text size.
Definition: TGWin32.cxx:1564
void GetCharacterUp(Float_t &chupx, Float_t &chupy)
Return character up vector.
Definition: TGWin32.cxx:1932
Int_t RequestLocator(Int_t mode, Int_t ctyp, Int_t &x, Int_t &y)
Request Locator position.
Definition: TGWin32.cxx:2311
void SetDNDAware(Window_t win, Atom_t *typelist)
Add XdndAware property and the list of drag and drop types to the Window win.
Definition: TGWin32.cxx:7561
Int_t fTextAlign
Definition: TGWin32.h:131
void DrawPolyLine(Int_t n, TPoint *xy)
Draw a line through all points.
Definition: TGWin32.cxx:1798
void CopyPixmap(Int_t wid, Int_t xpos, Int_t ypos)
Copy the pixmap wid at the position xpos, ypos in the current window.
Definition: TGWin32.cxx:1647
Int_t fTextAlignH
Definition: TGWin32.h:129
void DrawSegments(Drawable_t id, GContext_t gc, Segment_t *seg, Int_t nseg)
Draws multiple line segments. Each line is specified by a pair of points.
Definition: TGWin32.cxx:6522
char ** ListFonts(const char *fontname, Int_t max, Int_t &count)
Return list of font names matching "fontname".
Definition: TGWin32.cxx:6981
float ymax
Definition: THbookFile.cxx:93
Bool_t AllocColor(GdkColormap *cmap, GdkColor *color)
Allocate color in colormap.
Definition: TGWin32.cxx:1163
void SetClipOFF(Int_t wid)
Turn off the clipping for the window wid.
Definition: TGWin32.cxx:2899
void SetWindowBackgroundPixmap(Window_t id, Pixmap_t pxm)
Set pixmap as window background.
Definition: TGWin32.cxx:4544
EMouseButton
Definition: GuiTypes.h:215
void MapModifierState(UInt_t &state, UInt_t &xstate, Bool_t tox=kTRUE)
Map modifier key state to or from X.
Definition: TGWin32.cxx:5633
ROOT::R::TRInterface & r
Definition: Object.C:4
void FreeFontNames(char **fontlist)
Frees the specified the array of strings "fontlist".
Definition: TGWin32.cxx:7005
GdkVisual * fVisual
Definition: TGWin32.h:124
XPoint xy[kMAXMK]
Definition: TGX11.cxx:122
void DrawBox(Int_t x1, Int_t y1, Int_t x2, Int_t y2, EBoxMode mode)
Draw a box.
Definition: TGWin32.cxx:1662
TPaveLabel title(3, 27.1, 15, 28.7,"ROOT Environment and Tools")
Bool_t SetSelectionOwner(Window_t, Atom_t &)
Assigns owner of Clipboard.
Definition: TGWin32.cxx:7431
Bool_t fFillStyleModified
Definition: TGWin32.h:146
Handle_t Visual_t
Definition: GuiTypes.h:29
Bool_t IsCmdThread() const
returns kTRUE if we are inside cmd/server thread
Definition: TGWin32.cxx:887
Float_t fCharacterUpX
Definition: TGWin32.h:132
unsigned int UInt_t
Definition: RtypesCore.h:42
void SetCharacterUp(Float_t chupx, Float_t chupy)
Set character up vector.
Definition: TGWin32.cxx:2870
void ChangeActivePointerGrab(Window_t, UInt_t, Cursor_t)
Changes the active cursor of the specified window.
Definition: TGWin32.cxx:7394
void MakeOpaqueColors(Int_t percent, ULong_t *orgcolors, Int_t ncolors)
Get RGB values for orgcolors, add percent neutral to the RGB and allocate new_colors.
Definition: TGWin32.cxx:3771
tuple w
Definition: qtexample.py:51
short Short_t
Definition: RtypesCore.h:35
void ClearWindow()
Clear current window.
Definition: TGWin32.cxx:1573
float xmax
Definition: THbookFile.cxx:93
GdkImage * GetBackground(Int_t x, Int_t y, UInt_t w, UInt_t h)
Get the background of the current window in an XImage.
Definition: TGWin32.cxx:1386
void QueryColors(GdkColormap *cmap, GdkColor *colors, Int_t ncolors)
Returns the current RGB value for the pixel in the XColor structure.
Definition: TGWin32.cxx:1180
void SetTextColor(Color_t cindex)
Set color index for text.
Definition: TGWin32.cxx:3943
void DrawLine(Int_t x1, Int_t y1, Int_t x2, Int_t y2)
Draw a line.
Definition: TGWin32.cxx:1770
GdkCursor * fCursors[kNumCursors]
Definition: TGWin32.h:98
void DestroySubwindows(Window_t id)
Destroy all internal subwindows.
Definition: TGWin32.cxx:4431
void GetRegionBox(Region_t reg, Rectangle_t *)
Return smallest enclosing rectangle.
Definition: TGWin32.cxx:6968
void Bell(Int_t percent)
Sets the sound bell. Percent is loudness from -100% to 100%.
Definition: TGWin32.cxx:6057
void RemoveWindow(ULong_t qwid)
Remove a window created by Qt (like CloseWindow1()).
Definition: TGWin32.cxx:7277
void SetMarkerStyle(Style_t markerstyle)
Set marker style.
Definition: TGWin32.cxx:3409
Int_t GetDoubleBuffer(Int_t wid)
Query the double buffer value for the window wid.
Definition: TGWin32.cxx:1977
void MapEvent(Event_t &ev, GdkEvent &xev, Bool_t tox=kTRUE)
Map Event_t structure to gdk_event structure.
Definition: TGWin32.cxx:5689
Handle_t Colormap_t
Definition: GuiTypes.h:34
short Width_t
Definition: RtypesCore.h:78
Cursor_t CreateCursor(ECursor cursor)
Create cursor handle (just return cursor from cursor pool fCursors).
Definition: TGWin32.cxx:5288
void ChangeWindowAttributes(Window_t id, SetWindowAttributes_t *attr)
Change window attributes.
Definition: TGWin32.cxx:6080
void LookupString(Event_t *event, char *buf, Int_t buflen, UInt_t &keysym)
Convert the keycode from the event structure to a key symbol (according to the modifiers specified in...
Definition: TGWin32.cxx:6610
void DestroyWindow(Window_t id)
Destroy window.
Definition: TGWin32.cxx:4418
long Long_t
Definition: RtypesCore.h:50
Color * colors
Definition: X3DBuffer.c:19
void SetTextMagnitude(Float_t mgn=1)
Sets the current text magnification factor to "mgn".
Definition: TGWin32.h:235
FontH_t GetFontHandle(FontStruct_t fs)
Return handle to font described by font structure.
Definition: TGWin32.cxx:5155
void DrawPolyMarker(Int_t n, TPoint *xy)
Draw n markers with the current attributes at position x, y.
Definition: TGWin32.cxx:1854
void ImgPickPalette(GdkImage *image, Int_t &ncol, Int_t *&R, Int_t *&G, Int_t *&B)
Returns in R G B the ncol colors of the palette used by the image.
Definition: TGWin32.cxx:4073
void RemovePixmap(GdkDrawable *pix)
Remove the pixmap pix.
Definition: TGWin32.cxx:2280
void FillRectangle(Drawable_t id, GContext_t gc, Int_t x, Int_t y, UInt_t w, UInt_t h)
Draw a filled rectangle. Filling is done according to the gc.
Definition: TGWin32.cxx:6500
void DrawString(Drawable_t id, GContext_t gc, Int_t x, Int_t y, const char *s, Int_t len)
Draw a string using a specific graphics context in position (x,y).
Definition: TGWin32.cxx:6414
static const double x1[5]
Int_t fDepth
Definition: TGWin32.h:135
void WritePixmap(Int_t wid, UInt_t w, UInt_t h, char *pxname)
Write the pixmap wid in the bitmap file pxname.
Definition: TGWin32.cxx:4012
void ChangeProperties(Window_t id, Atom_t property, Atom_t type, Int_t format, UChar_t *data, Int_t len)
Put data into Clipboard.
Definition: TGWin32.cxx:7448
tuple file
Definition: fildir.py:20
Int_t GetScreen() const
Returns screen number.
Definition: TGWin32.h:269
void DrawRectangle(Drawable_t id, GContext_t gc, Int_t x, Int_t y, UInt_t w, UInt_t h)
Draw a rectangle outline.
Definition: TGWin32.cxx:6511
void SetInputFocus(Window_t id)
Set keyboard input focus to window id.
Definition: TGWin32.cxx:6557
Bool_t GUIThreadMessageFunc(MSG *msg)
Message processing function for the GUI thread.
Definition: TGWin32.cxx:846
TText * text
Bool_t EqualRegion(Region_t rega, Region_t regb)
Returns true if two regions are equal.
Definition: TGWin32.cxx:6960
void SetWMPosition(Window_t id, Int_t x, Int_t y)
Tells the window manager the desired position [x,y] of window "id".
Definition: TGWin32.cxx:6335
Float_t fCharacterUpY
Definition: TGWin32.h:133
const int kNumCursors
Definition: TVirtualX.h:55
void ClearArea(Window_t id, Int_t x, Int_t y, UInt_t w, UInt_t h)
Clear a window area to the bakcground color.
Definition: TGWin32.cxx:6148
Pixmap_t CreateBitmap(Drawable_t id, const char *bitmap, UInt_t width, UInt_t height)
Create a bitmap (i.e. pixmap with depth 1) from the bitmap data.
Definition: TGWin32.cxx:5335
int type
Definition: TGX11.cxx:120
void WMDeleteNotify(Window_t id)
Tell WM to send message when window is closed via WM.
Definition: TGWin32.cxx:6158
Int_t RequestString(Int_t x, Int_t y, char *text)
Request a string.
Definition: TGWin32.cxx:2466
unsigned long ULong_t
Definition: RtypesCore.h:51
TCanvas * style()
Definition: style.C:1
Double_t y[n]
Definition: legend1.C:17
void MapSetWindowAttributes(SetWindowAttributes_t *attr, ULong_t &xmask, GdkWindowAttr &xattr)
Map a SetWindowAttributes_t to a GdkWindowAttr structure.
Definition: TGWin32.cxx:4738
void SelectInput(Window_t id, UInt_t evmask)
Defines which input events the window is interested in.
Definition: TGWin32.cxx:6536
GdkColormap * fColormap
Definition: TGWin32.h:125
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)
Return handle to newly created gdk window.
Definition: TGWin32.cxx:4554
void GetGCValues(GContext_t gc, GCValues_t &gval)
Get current values from graphics context gc.
Definition: TGWin32.cxx:6448
Bool_t fMarkerStyleModified
Definition: TGWin32.h:149
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)
Draw image.
Definition: TGWin32.cxx:4198
void SetWMTransientHint(Window_t id, Window_t main_id)
Tell window manager that window is a transient window of gdk_parent_root.
Definition: TGWin32.cxx:6404
void MapWindow(Window_t id)
Map window on screen.
Definition: TGWin32.cxx:4355
static Vc_ALWAYS_INLINE int_v max(const int_v &x, const int_v &y)
Definition: vector.h:440
void UnionRegion(Region_t rega, Region_t regb, Region_t result)
Compute the union of rega and regb and return result region.
Definition: TGWin32.cxx:6909
void SetIconPixmap(Window_t id, Pixmap_t pic)
Set pixmap the WM can use when the window is iconized.
Definition: TGWin32.cxx:6272
#define name(a, b)
Definition: linkTestLib0.cpp:5
#define org(otri, vertexptr)
Definition: triangle.c:1037
Mother of all ROOT objects.
Definition: TObject.h:58
void GetFontProperties(FontStruct_t font, Int_t &max_ascent, Int_t &max_descent)
Return some font properties.
Definition: TGWin32.cxx:6436
Int_t InitWindow(ULong_t window)
Open window and return window number.
Definition: TGWin32.cxx:2162
Int_t fMaxNumberOfWindows
Definition: TGWin32.h:95
void DeleteFont(FontStruct_t fs)
Explicitely delete font structure obtained with LoadQueryFont().
Definition: TGWin32.cxx:5166
Handle_t Window_t
Definition: GuiTypes.h:30
void UpdateMarkerStyle()
Definition: TGWin32.cxx:3419
Window_t GetCurrentWindow() const
Return current window pointer. Protected method used by TGWin32TTF.
Definition: TGWin32.cxx:1955
GdkColor color
Definition: TGWin32.h:73
Colormap_t GetColormap() const
Returns handle to colormap.
Definition: TGWin32.h:271
Window_t GetWindowID(Int_t wid)
Return the X11 window identifier.
Definition: TGWin32.cxx:2077
unsigned char * GetColorBits(Drawable_t wid, Int_t x, Int_t y, UInt_t width, UInt_t height)
Gets DIB bits x, y, width, height - position of bitmap returns a pointer on bitmap bits array in form...
Definition: TGWin32.cxx:7089
void DestroyRegion(Region_t reg)
Destroy region.
Definition: TGWin32.cxx:6877
Bool_t EmptyRegion(Region_t reg)
Return true if the region is empty.
Definition: TGWin32.cxx:6944
void GetWindowSize(Drawable_t id, Int_t &x, Int_t &y, UInt_t &w, UInt_t &h)
Return geometry of window (should be called GetGeometry but signature already used).
Definition: TGWin32.cxx:6726
void MoveResizeWindow(Window_t id, Int_t x, Int_t y, UInt_t w, UInt_t h)
Move and resize a window.
Definition: TGWin32.cxx:4482
Int_t GetDepth() const
Get maximum number of planes.
Definition: TGWin32.cxx:5089
void ResizeWindow(Int_t wid)
Resize the current window if necessary.
Definition: TGWin32.cxx:2791
Int_t fScreenNumber
Definition: TGWin32.h:126
Region_t PolygonRegion(Point_t *points, Int_t np, Bool_t winding)
Create region for the polygon defined by the points array.
Definition: TGWin32.cxx:6899
#define dest(otri, vertexptr)
Definition: triangle.c:1040
Window_t GetPrimarySelectionOwner()
Returns the window id of the current owner of the primary selection.
Definition: TGWin32.cxx:6569
Int_t AddPixmap(ULong_t pix, UInt_t w, UInt_t h)
register pixmap created by TGWin32GLManager
Definition: TGWin32.cxx:7186
Handle_t Region_t
Definition: GuiTypes.h:33
void SetForeground(GContext_t gc, ULong_t foreground)
Set foreground color in graphics context (shortcut for ChangeGC with only foreground mask set)...
Definition: TGWin32.cxx:6822
Handle_t Pixmap_t
Definition: GuiTypes.h:31
void Sync(Int_t mode)
Set synchronisation on or off.
Definition: TGWin32.cxx:3959
Int_t FindColor(ULong_t pixel, ULong_t *orgcolors, Int_t ncolors)
Returns index in orgcolors (and new_colors) for pixel.
Definition: TGWin32.cxx:3831
void SubtractRegion(Region_t rega, Region_t regb, Region_t result)
Subtract rega from regb.
Definition: TGWin32.cxx:6927
TExMap * fColors
Definition: TGWin32.h:97
Bool_t fDefined
true if pixel value is defined
Definition: TGWin32.h:74
void NextEvent(Event_t &event)
Copies first pending event from event queue to Event_t structure and removes event from queue...
Definition: TGWin32.cxx:5614
void ConvertPrimarySelection(Window_t id, Atom_t clipboard, Time_t when)
XConvertSelection() causes a SelectionRequest event to be sent to the current primary selection owner...
Definition: TGWin32.cxx:6596
void UnionRectWithRegion(Rectangle_t *rect, Region_t src, Region_t dest)
Union of rectangle with a region.
Definition: TGWin32.cxx:6885
void SetClassHints(Window_t id, char *className, char *resourceName)
Set the windows class and resource name.
Definition: TGWin32.cxx:6284
double result[121]
void MapCursor(ECursor cursor, Int_t &xcursor)
unsigned char UChar_t
Definition: RtypesCore.h:34
Int_t fBlueShift
Definition: TGWin32.h:141
void UpdateWindow(Int_t mode)
Update display.
Definition: TGWin32.cxx:3972
void SetClipRegion(Int_t wid, Int_t x, Int_t y, UInt_t w, UInt_t h)
Set clipping region for the window wid.
Definition: TGWin32.cxx:2917
Drawable_t CreateImage(UInt_t width, UInt_t height)
Allocates the memory needed for an drawable.
Definition: TGWin32.cxx:7013
Int_t ResizePixmap(Int_t wid, UInt_t w, UInt_t h)
Resize a pixmap.
Definition: TGWin32.cxx:2743
FontStruct_t GetFontStruct(FontH_t fh)
Retrieve associated font structure once we have the font handle.
Definition: TGWin32.cxx:6462
const Bool_t kTRUE
Definition: Rtypes.h:91
void SetTypeList(Window_t win, Atom_t prop, Atom_t *typelist)
Add the list of drag and drop types to the Window win.
Definition: TGWin32.cxx:7473
Atom_t InternAtom(const char *atom_name, Bool_t only_if_exist)
Return atom handle for atom_name.
Definition: TGWin32.cxx:5099
Visual_t GetVisual() const
Returns handle to visual.
Definition: TGWin32.h:268
void SetKeyAutoRepeat(Bool_t on=kTRUE)
Turn key auto repeat on or off.
Definition: TGWin32.cxx:6173
float value
Definition: math.cpp:443
void QueryColor(Colormap_t cmap, ColorStruct_t &color)
Fill in the primary color components for a specific pixel value.
Definition: TGWin32.cxx:5522
const Int_t n
Definition: legend1.C:16
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)
TranslateCoordinates translates coordinates from the frame of reference of one window to another...
Definition: TGWin32.cxx:6695
TRandom3 R
a TMatrixD.
Definition: testIO.cxx:28
TObject * fRefreshTimer
Definition: TGWin32.h:143
void SetTextAlign(Short_t talign=11)
Set text alignment.
Definition: TGWin32.cxx:3883
This class stores a (key,value) pair using an external hash.
Definition: TExMap.h:35
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)
Copy a drawable (i.e.
Definition: TGWin32.cxx:6067
virtual void GetTextExtent(UInt_t &, UInt_t &, wchar_t *)
Returns the size of the specified character string "mess".
Definition: TGWin32.h:198
void DeleteGC(GContext_t gc)
Explicitely delete a graphics context.
Definition: TGWin32.cxx:5280
void SetPrimarySelectionOwner(Window_t id)
Makes the window id the current owner of the primary selection.
Definition: TGWin32.cxx:6578
void IconifyWindow(Window_t id)
Iconify the window.
Definition: TGWin32.cxx:4506
const char Int_t const char * image
Definition: TXSlave.cxx:46
ULong_t Handle_t
Definition: GuiTypes.h:27
void SetRGB(Int_t cindex, Float_t r, Float_t g, Float_t b)
Set color intensities for given color index.
Definition: TGWin32.cxx:3846