📄 button.h
字号:
#ifndef _BUTTON_H
#define _BUTTON_H
#include <ncurses.h>
typedef struct button
{
WINDOW *b[3];
int pair_color[3];
char *str;
int (*attack)(struct button *,int,int,int);
void (*setColor)(struct button *,int,int,int);
void (*free)(struct button **);
void (*show)(struct button *);
void (*pitch_on)(struct button *);
}BUTTON;
BUTTON *createButton(int startx,int starty,int h,int l,char *str);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -