📄 input.h
字号:
/***input.h - structure declarations and function prototypes for input.cWritten by Gerard Paul JavaCopyright (c) Gerard Paul Java 1997***/#include <string.h>#include <stdlib.h>#include <malloc.h>#include "winops.h"#define CTRL_X 24struct FIELD { char *buf; unsigned int len; unsigned int tlen; unsigned int xpos; unsigned int ypos; struct FIELD *prevfield; struct FIELD *nextfield;};struct FIELDLIST { struct FIELD *list; WINDOW *fieldwin; PANEL *fieldpanel; int dlgtextattr; int fieldattr;};void tx_initfields(struct FIELDLIST *list, int leny, int lenx, int begy, int begx, int dlgtextattr, int dlgfieldattr);void tx_addfield(struct FIELDLIST *list, unsigned int len, unsigned int y, unsigned int x, const char *initstr);void tx_getinput(struct FIELDLIST *list, struct FIELD *field, int *exitkey);void tx_fillfields(struct FIELDLIST *list, int *aborted);void tx_destroyfields(struct FIELDLIST *list);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -