¤ wDrawLine, wDrawImageString, et al

Types

wDrawLine :: GCId -> Line -> FRequest
wDrawImageString :: GCId -> Point -> String -> FRequest
wDrawString :: GCId -> Point -> String -> FRequest
wDrawRectangle :: GCId -> Rect -> FRequest
wFillRectangle :: GCId -> Rect -> FRequest
wFillPolygon :: GCId -> Shape -> CoordMode -> [Point] -> FRequest
wDrawArc :: GCId -> Rect -> Int -> Int -> FRequest
wFillArc :: GCId -> Rect -> Int -> Int -> FRequest
wDrawCircle :: GCId -> Point -> Int -> FRequest
wFillCircle :: GCId -> Point -> Int -> FRequest
wCopyArea :: GCId -> Drawable -> Rect -> Point -> FRequest
wCopyPlane :: GCId -> Drawable -> Rect -> Point -> Int -> FRequest
wDrawPoint :: GCId -> Point -> FRequest
wCreatePutImage :: GCId -> Rect -> ImageFormat -> [Pixel] -> FRequest

Description

These are convenience functions for drawing in windows.

Equalities

  wDrawLine gc l = Draw MyWindow gc (DrawLine l)
  wDrawImageString gc p s = Draw MyWindow gc (DrawImageString p s)
  .
  .
  .

See Also

DrawCommand, pmDrawLine.