?? fillrct.c
字號:
#include "nxlib.h"#include <stdio.h>intXFillRectangle(Display *xdpy, Drawable d, GC gc, int x, int y, unsigned int width, unsigned int height){ GrFillRect(d, gc->gid, x, y, width, height); return 1;}int XFillRectangles(Display *dpy, Drawable d, GC gc, XRectangle *rects, int nrects) { int i; for(i = 0; i < nrects; i++) XFillRectangle(dpy, d, gc, rects[i].x, rects[i].y, rects[i].width, rects[i].height); return 1;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -