A class correspond to GdkDrawable in GDK
The drawing methods such as draw_xxxx in this class take
Gdk::GC
object as 1st argument.
draw_arc(gc, filled, x, y, width, height, angle1, angle2)
draw_bitmap(gc, src, xsrc, ysrc, xdest, ydest, width, height)
draw_image(gc, src, xsrc, ysrc, xdest, ydest, width, height)
draw_line(gc, x1, y1, x2, y2)
Draw a line from ( x1, y1) to ( x2, y2).
draw_lines(gc, points)
draw_pixmap(gc, src, xsrc, ysrc, xdest, ydest, width, height)
draw_point(gc, x, y)
Draw a point at ( x, y).
draw_points(gc, points)
draw_polygon(gc, filled, points)
draw_rectangle(gc, filled, x, y, width, height)
Draw a rectangle. Argument
filledspecifies
whether fill within the rectangle as
true
or
false
.
draw_segments(gc, segs)
draw_string(font, gc, x, y, string)
draw_text(font, gc, x, y, text)
draw_text is alias of draw_string.
Generated at Wed Oct 20 03:51:45 JST 1999 by rubyapi2