¤ wDrawLine, wDrawImageString, et al

Types

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

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.