- XDrawLine(Display* d, Window win, GC gc, int x0, int y0, int x1, int y1)
座標 (x0, y0) と (x1, y1) の間を直線で結ぶ。
- XDrawString(Display* d, Window win, GC gc, int x0, int y0, char* msg, int len)
座標 (x0, y0) が左下すみになるように、 長さ len の文字列 msg を描く。
- XDrawRectangle(Display* d, Window win, GC gc, int x0, int y0, int width, int height)
座標 (x0, y0) が左上すみになるように、幅 width、高さ height の長方形を描く。
- XFillRectangle(Display* d, Window win, GC gc, int x0, int y0, int width, int height)
座標 (x0, y0) が左上すみになるように、幅 width、高さ height の長方形を塗りつぶす。
- XClearWindow(Display* d, Window win)
ウィンドウ w を背景色で塗りつぶす。