📄 bitmap.h
字号:
/* Structure used to hold bitmap data */typedef struct Bitmap_s { char *name; /* The file name */ char *data; /* bitmap format data */ int width; /* The width */ int height; /* And height */ Pixmap bitmap; /* The data as a bitmap */ Pixmap pixmap; /* The data as a pixmap */ Boolean draggable; /* Is this one draggable */ Widget state_icon; /* Drag state icon */} Bitmap_t, *Bitmap_p;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -