📄 mapwindow.c
字号:
#include "nxlib.h"intXMapWindow(Display *dpy, Window w){ GrMapWindow(w); return 1;}intXMapSubwindows(Display *dpy, Window w){ GR_WINDOW_ID parent; GR_WINDOW_ID *child, *cp; int i, nchild; GrQueryTree(w, &parent, &child, &nchild); cp = child; for (i=0; i<nchild; ++i) GrMapWindow(*cp++); free(child); return 1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -