?? crt.d
字號(hào):
// new(Crt())// wraps a curses window, gate(crt, 0) produces events// new(CLineOut(), y, x, len)// LineOut, located at y, x, with line length len// new(CButton(), "text", y, x)// Button, located at y, x, sized for "text"% IcClass Crt: Ic { void * window; // curses WINDOW int rows; // size int cols;% void makeWindow (_self, int rows, int cols, int y, int x); void addStr(_self, int y, int x, const char * s); void crtBox(_self);%}%prot#define rows(c) (((const struct Crt *) c) -> rows)#define cols(c) (((const struct Crt *) c) -> cols)% IcClass CLineOut: Crt {%}% IcClass CButton: Crt { void * button; int y; int x;%}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -