?? 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 + -