Lines Matching refs:wxCoord

48         bool DoGetPixel(wxCoord, wxCoord, class wxColour *) const  in DoGetPixel()  argument
51 virtual bool DoBlit(wxCoord, wxCoord, wxCoord, wxCoord, class wxDC *,
52 wxCoord, wxCoord, int = wxCOPY, bool = 0, int = -1, int = -1) ;
54 void DoCrossHair(wxCoord, wxCoord) in DoCrossHair() argument
57 void DoDrawArc(wxCoord, wxCoord, wxCoord, wxCoord, wxCoord, wxCoord);
59 void DoDrawBitmap(const class wxBitmap &, wxCoord, wxCoord, bool = 0) ;
61 void DoDrawCheckMark(wxCoord x, wxCoord y, wxCoord width, wxCoord height) ;
63 void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height) ;
65 void DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea) ;
67 void DoDrawIcon(const class wxIcon &, wxCoord, wxCoord) ;
69 void DoDrawLine (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) ;
71 void DoDrawPoint(wxCoord, wxCoord) ;
73 … void DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset,int fillStyle) ;
75 void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) ;
77 void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle) ;
79 …void DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius = 2…
81 void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
83 bool DoFloodFill(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), const wxColour& WXUNUSED(col),
89 …void DoGetTextExtent(const wxString& string, wxCoord *w, wxCoord *h, wxCoord *descent = NULL, wxCo…
101 wxCoord XDEV2LOG(wxCoord x) const in XDEV2LOG()
103 wxCoord new_x = x - m_deviceOriginX; in XDEV2LOG()
105 return (wxCoord)((double)(new_x) / m_scaleX + 0.5) * m_signX + m_logicalOriginX; in XDEV2LOG()
107 return (wxCoord)((double)(new_x) / m_scaleX - 0.5) * m_signX + m_logicalOriginX; in XDEV2LOG()
112 wxCoord XDEV2LOGREL(wxCoord x) const in XDEV2LOGREL()
115 return (wxCoord)((double)(x) / m_scaleX + 0.5); in XDEV2LOGREL()
117 return (wxCoord)((double)(x) / m_scaleX - 0.5); in XDEV2LOGREL()
122 wxCoord YDEV2LOG(wxCoord y) const in YDEV2LOG()
124 wxCoord new_y = y - m_deviceOriginY; in YDEV2LOG()
126 return (wxCoord)((double)(new_y) / m_scaleY + 0.5) * m_signY + m_logicalOriginY; in YDEV2LOG()
128 return (wxCoord)((double)(new_y) / m_scaleY - 0.5) * m_signY + m_logicalOriginY; in YDEV2LOG()
133 wxCoord YDEV2LOGREL(wxCoord y) const in YDEV2LOGREL()
136 return (wxCoord)((double)(y) / m_scaleY + 0.5); in YDEV2LOGREL()
138 return (wxCoord)((double)(y) / m_scaleY - 0.5); in YDEV2LOGREL()
143 wxCoord XLOG2DEV(wxCoord x) const in XLOG2DEV()
145 wxCoord new_x = x - m_logicalOriginX; in XLOG2DEV()
147 return (wxCoord)((double)(new_x) * m_scaleX + 0.5) * m_signX + m_deviceOriginX; in XLOG2DEV()
149 return (wxCoord)((double)(new_x) * m_scaleX - 0.5) * m_signX + m_deviceOriginX; in XLOG2DEV()
154 wxCoord XLOG2DEVREL(wxCoord x) const in XLOG2DEVREL()
157 return (wxCoord)((double)(x) * m_scaleX + 0.5); in XLOG2DEVREL()
159 return (wxCoord)((double)(x) * m_scaleX - 0.5); in XLOG2DEVREL()
164 wxCoord YLOG2DEV(wxCoord y) const in YLOG2DEV()
166 wxCoord new_y = y - m_logicalOriginY; in YLOG2DEV()
168 return (wxCoord)((double)(new_y) * m_scaleY + 0.5) * m_signY + m_deviceOriginY; in YLOG2DEV()
170 return (wxCoord)((double)(new_y) * m_scaleY - 0.5) * m_signY + m_deviceOriginY; in YLOG2DEV()
175 wxCoord YLOG2DEVREL(wxCoord y) const in YLOG2DEVREL()
178 return (wxCoord)((double)(y) * m_scaleY + 0.5); in YLOG2DEVREL()
180 return (wxCoord)((double)(y) * m_scaleY - 0.5); in YLOG2DEVREL()
202 …bool Blit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, wxDC* source, wxCoord xsrc,…
208 void CrossHair(wxCoord x, wxCoord y) in CrossHair()
216 wxCoord DeviceToLogicalX(wxCoord x) const ;
218 wxCoord DeviceToLogicalXRel(wxCoord x) const ;
220 wxCoord DeviceToLogicalY(wxCoord y) const ;
222 wxCoord DeviceToLogicalYRel(wxCoord y) const ;
224 void DrawBitmap(const wxBitmap& bitmap, wxCoord x, wxCoord y, bool transparent) in DrawBitmap()
227 void DrawIcon(const wxIcon& icon, wxCoord x, wxCoord y) in DrawIcon()
230 void DoDrawLines(int n, wxPoint points[], wxCoord xoffset = 0, wxCoord yoffset = 0) ;
241 void FloodFill(wxCoord x, wxCoord y, wxColour *colour, int style=wxFLOOD_SURFACE)
244 wxCoord GetCharHeight() const;
246 wxCoord GetCharWidth() const;
248 …void GetClippingBox(wxCoord *WXUNUSED(x), wxCoord *WXUNUSED(y), wxCoord * WXUNUSED(width), wxCoord in GetClippingBox()
256 bool GetPixel(wxCoord x, wxCoord y, wxColour *colour) in GetPixel()
261 wxCoord LogicalToDeviceX(wxCoord x) const ;
263 wxCoord LogicalToDeviceXRel(wxCoord x) const ;
265 wxCoord LogicalToDeviceY(wxCoord y) const ;
267 wxCoord LogicalToDeviceYRel(wxCoord y) const ;
273 …void SetClippingRegion(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), wxCoord WXUNUSED(width), wxCoo… in SetClippingRegion()
297 void SetLogicalOrigin( wxCoord x, wxCoord y ) ;
299 void SetDeviceOrigin( wxCoord x, wxCoord y ) ;