📄 input.h
字号:
#ifndef _INPUT_H
#define _INPUT_H
#include <ncurses.h>
#include <string.h>
#include "frame.h"
typedef struct input_frame
{
char *str;
FRAME *f;
int length;
int neighbor[3];
int (*input_char)(struct input_frame *,int,int,int);
void (*free)(struct input_frame **);
void(*del_str)(struct input_frame *);
}INPUT;
INPUT *create_input(FRAME *f1,int l,int front,int next,int tab);
#endif/*_INPUT_H*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -