• 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 refs:GetX

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),
79 wxCoord GetX(wxCoord x, wxCoord y) const { return m_mirror ? y : x; }
81 double GetX(double x, double y) const { return m_mirror ? y : x; }
83 bool GetX(bool x, bool y) const { return m_mirror ? y : x; }
87 wxCoord *GetX(wxCoord *x, wxCoord *y) const { return m_mirror ? y : x; }
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),
141 GetX(x2, y2), GetY(x2, y2),
148 m_dc.DoDrawCheckMark(GetX(x, y), GetY(x, y),
149 GetX(w, h), GetY(w, h));
157 m_dc.DoDrawEllipticArc(GetX(x, y), GetY(x, y),
158 GetX(w, h), GetY(w, h),
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),
172 GetX(w, h), GetY(w, h),
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);
216 return m_dc.DoBlit(GetX(xdest, ydest), GetY(xdest, ydest),
217 GetX(w, h), GetY(w, h),
218 source, GetX(xsrc, ysrc), GetY(xsrc, ysrc),
220 GetX(xsrcMask, ysrcMask), GetX(xsrcMask, ysrcMask));
225 m_dc.DoGetSize(GetX(w, h), GetY(w, h));
230 m_dc.DoGetSizeMM(GetX(w, h), GetY(w, h));
239 GetX(xoffset, yoffset), GetY(xoffset, yoffset));
251 GetX(xoffset, yoffset), GetY(xoffset, yoffset),
265 m_dc.DoSetClippingRegion(GetX(x, y), GetY(x, y), GetX(w, h), GetY(w, h));