?? gui_getcolor.c
字號:
/*************************************************************************************************************
uC/GUI
嵌入式通用圖形軟件
File : GUI_GetColor.C
Purpose : Implementation of different GUI_GetColor routines
************************************************************************************************************/
#include "GUI_Protected.H"
// 返回當前背景顏色的索引
int GUI_GetBkColorIndex (void)
{
int r;
GUI_LOCK();
r = LCD_GetBkColorIndex();
GUI_UNLOCK();
return r;
}
// 返回當前背景顏色
GUI_COLOR GUI_GetBkColor(void)
{
GUI_COLOR r;
GUI_LOCK();
r = LCD_Index2Color(LCD_GetBkColorIndex());
GUI_UNLOCK();
return r;
}
// 返回當前前景顏色的索引
int GUI_GetColorIndex (void)
{
int r;
GUI_LOCK();
r = LCD_GetColorIndex();
GUI_UNLOCK();
return r;
}
// 返回當前前景顏色
GUI_COLOR GUI_GetColor(void)
{
GUI_COLOR r;
GUI_LOCK();
r = LCD_Index2Color(LCD_GetColorIndex());
GUI_UNLOCK();
return r;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -