gui.h

来自「MDE 图形引擎」· C头文件 代码 · 共 38 行

H
38
字号
#ifndef H_GUI#define H_GUI#ifdef __cplusplusextern "C" {#endif  /* __cplusplus *//********************** Interfaces of Splash ******************************/int GlobalInit (void);void GlobalCleanUp (void);void SetSplashInfo (HWND hDlg, char* szText);/************************** Interfaces of Header **************************/int InitHeader (HWND hSplash);void HeaderCleanUp (void);void SetHeadInfo (int id, int fc, int bc, char* szText, BOOL fUpdate);/********************** Interfaces of Footer *****************************/int InitFooter (HWND hSplash);void FooterCleanUp (void);void SetFooterRowInfo (int row, int num_cols, int *widths, BOOL fUpdata);void SetFooterCellInfo (int row, int col,        int fc, int bc, const char* text, BOOL fUpdate);#define CS_NORMAL       0x0000#define CS_ALARM        0x0001#define CS_INVERT       0x0002#define CS_TYPEMASK     0x000F#define CS_HILITED      0x0010#define CS_STATEMASK    0x00F0void SetFooterCellStyle (int row, int col, DWORD style, BOOL fUpdate);#ifdef __cplusplus}#endif  /* __cplusplus */#endif /* H_GUI */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?