• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/

Lines Matching defs:m_dc

34     wxMirrorDC(wxDC& dc, bool mirror) : m_dc((wxMirrorDC&)dc)
38 virtual void Clear() { m_dc.Clear(); }
39 virtual void SetFont(const wxFont& font) { m_dc.SetFont(font); }
40 virtual void SetPen(const wxPen& pen) { m_dc.SetPen(pen); }
41 virtual void SetBrush(const wxBrush& brush) { m_dc.SetBrush(brush); }
43 { m_dc.SetBackground(brush); }
44 virtual void SetBackgroundMode(int mode) { m_dc.SetBackgroundMode(mode); }
47 { m_dc.SetPalette(palette); }
49 virtual void DestroyClippingRegion() { m_dc.DestroyClippingRegion(); }
50 virtual wxCoord GetCharHeight() const { return m_dc.GetCharHeight(); }
51 virtual wxCoord GetCharWidth() const { return m_dc.GetCharWidth(); }
52 virtual bool CanDrawBitmap() const { return m_dc.CanDrawBitmap(); }
53 virtual bool CanGetTextExtent() const { return m_dc.CanGetTextExtent(); }
54 virtual int GetDepth() const { return m_dc.GetDepth(); }
55 virtual wxSize GetPPI() const { return m_dc.GetPPI(); }
57 virtual bool IsOk() const { return m_dc.Ok(); }
58 virtual void SetMapMode(int mode) { m_dc.SetMapMode(mode); }
60 { m_dc.SetUserScale(GetX(x, y), GetY(x, y)); }
62 { m_dc.SetLogicalOrigin(GetX(x, y), GetY(x, y)); }
64 { m_dc.SetDeviceOrigin(GetX(x, y), GetY(x, y)); }
66 { m_dc.SetAxisOrientation(GetX(xLeftRight, yBottomUp),
69 { m_dc.SetLogicalFunction(function); }
115 return m_dc.DoFloodFill(GetX(x, y), GetY(x, y), col, style);
120 return m_dc.DoGetPixel(GetX(x, y), GetY(x, y), col);
126 m_dc.DoDrawPoint(GetX(x, y), GetY(x, y));
131 m_dc.DoDrawLine(GetX(x1, y1), GetY(x1, y1), GetX(x2, y2), GetY(x2, y2));
140 m_dc.DoDrawArc(GetX(x1, y1), GetY(x1, y1),
148 m_dc.DoDrawCheckMark(GetX(x, y), GetY(x, y),
157 m_dc.DoDrawEllipticArc(GetX(x, y), GetY(x, y),
164 m_dc.DoDrawRectangle(GetX(x, y), GetY(x, y), GetX(w, h), GetY(w, h));
171 m_dc.DoDrawRoundedRectangle(GetX(x, y), GetY(x, y),
178 m_dc.DoDrawEllipse(GetX(x, y), GetY(x, y), GetX(w, h), GetY(w, h));
183 m_dc.DoCrossHair(GetX(x, y), GetY(x, y));
188 m_dc.DoDrawIcon(icon, GetX(x, y), GetY(x, y));
194 m_dc.DoDrawBitmap(bmp, GetX(x, y), GetY(x, y), useMask);
200 m_dc.DoDrawText(text, x, y);
207 m_dc.DoDrawRotatedText(text, x, y, angle);
216 return m_dc.DoBlit(GetX(xdest, ydest), GetY(xdest, ydest),
225 m_dc.DoGetSize(GetX(w, h), GetY(w, h));
230 m_dc.DoGetSizeMM(GetX(w, h), GetY(w, h));
238 m_dc.DoDrawLines(n, points,
250 m_dc.DoDrawPolygon(n, points,
265 m_dc.DoSetClippingRegion(GetX(x, y), GetY(x, y), GetX(w, h), GetY(w, h));
275 m_dc.DoGetTextExtent(string, x, y, descent, externalLeading, theFont);
279 wxMirrorDC& m_dc;