comparison dwt/graphics/GCData.d @ 53:0405e18fec7f

Gdiplus implemented - test build of dwt.lib successful; updated graphics package as necessary
author John Reimer <terminal.node@gmail.com
date Sun, 03 Feb 2008 15:48:14 -0800
parents 7b3e88548661
children 36f5cb12e1a2
comparison
equal deleted inserted replaced
52:0553f4e8ed93 53:0405e18fec7f
54 public HBRUSH hBrush, hOldBrush; 54 public HBRUSH hBrush, hOldBrush;
55 public HBITMAP hNullBitmap; 55 public HBITMAP hNullBitmap;
56 public HWND hwnd; 56 public HWND hwnd;
57 public PAINTSTRUCT* ps; 57 public PAINTSTRUCT* ps;
58 public int layout = -1; 58 public int layout = -1;
59 public Gdip.Graphics* gdipGraphics; 59 public Gdip.Graphics gdipGraphics;
60 public Gdip.Pen* gdipPen; 60 public Gdip.Pen gdipPen;
61 public Gdip.Brush* gdipBrush; 61 public Gdip.Brush gdipBrush;
62 public Gdip.SolidBrush* gdipFgBrush; 62 public Gdip.SolidBrush gdipFgBrush;
63 public Gdip.SolidBrush* gdipBgBrush; 63 public Gdip.SolidBrush gdipBgBrush;
64 public Gdip.Font* gdipFont; 64 public Gdip.Font gdipFont;
65 public float gdipXOffset, gdipYOffset; 65 public float gdipXOffset, gdipYOffset;
66 } 66 }
67 67