?? gui_stockc.h
字號:
/****************************************************************************************
* 文件名:GUI_STOCKC.H
* 功能:設(shè)置前景色及背景色變量,用于ASCII碼、漢字、窗口、單色位圖顯示。(頭文件)
* 作者:黃紹斌
* 日期:2004.02.28
* 備注:
****************************************************************************************/
#ifndef GUI_STOCKC_H
#define GUI_STOCKC_H
extern uint8 const DCB2HEX_TAB[8];
extern TCOLOR disp_color;
extern TCOLOR back_color;
/****************************************************************************
* 名稱:GUI_SetColor()
* 功能:設(shè)置顯示色及背景色。用于ASCII字符顯示及漢字顯示。
* 入口參數(shù):color1 顯示色的值
* color2 背景色的值
* 出口參數(shù):無
* 說明:
****************************************************************************/
extern void GUI_SetColor(TCOLOR color1, TCOLOR color2);
/****************************************************************************
* 名稱:GUI_GetBackColor()
* 功能:最得當(dāng)前背景色。
* 入口參數(shù):bakc 保存顏色的變量地址
* 出口參數(shù):無
* 說明:
****************************************************************************/
extern void GUI_GetBackColor(TCOLOR *bakc);
/****************************************************************************
* 名稱:GUI_GetDispColor()
* 功能:最得當(dāng)前前景色。
* 入口參數(shù):bakc 保存顏色的變量地址
* 出口參數(shù):無
* 說明:
****************************************************************************/
extern void GUI_GetDispColor(TCOLOR *bakc);
/****************************************************************************
* 名稱:GUI_ExchangeColor()
* 功能:交換前景色與背景色。用于反相顯示。
* 入口參數(shù):無
* 出口參數(shù):無
* 說明:
****************************************************************************/
extern void GUI_ExchangeColor(void);
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -