📄 htmltype.h
字号:
/*SCCSID @(#)htmltype.h 1.5 12/10/97 */
#ifndef HTMLTYPE_INCLUDE_H
#define HTMLTYPE_INCLUDE_H
#define HISTORY_SIZE 30
#define BOOKMARK_SIZE 10
#define BOOKMARK_TITLE_SIZE 32
typedef struct {
int begTime;
char *page_buffer; /* pointer to the page buffer */
char *overlay_buffer;
struct { int fX, fY; } cursor;
} HTMLResource;
typedef struct {
int ntot;
int indx;
unsigned long url_loc[HISTORY_SIZE];
int link[HISTORY_SIZE];
} HTMLHistory;
typedef struct {
int ntot;
int indx;
unsigned long url_loc[BOOKMARK_SIZE];
char title[BOOKMARK_SIZE][BOOKMARK_TITLE_SIZE];
} HTMLBookmark;
typedef struct {
int white;
int black;
int red;
int error;
} HTMLColors;
#define HTML_MAX_YBM 4
typedef struct {
int nimgs;
int loc[HTML_MAX_YBM];
int sz[HTML_MAX_YBM];
} HTML_YBM_info;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -