57 lines
1.8 KiB
C
57 lines
1.8 KiB
C
/*
|
|
*********************************************************************************************************
|
|
* uC/GUI
|
|
* Universal graphic software for embedded applications
|
|
*
|
|
* (c) Copyright 2002, Micrium Inc., Weston, FL
|
|
* (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
|
|
*
|
|
* µC/GUI is protected by international copyright laws. Knowledge of the
|
|
* source code may not be used to write a similar product. This file may
|
|
* only be used in accordance with a license and should not be redistributed
|
|
* in any way. We appreciate your understanding and fairness.
|
|
*
|
|
----------------------------------------------------------------------
|
|
File : RADIO_SetFont.c
|
|
Purpose : Implementation of RADIO_SetFont
|
|
---------------------------END-OF-HEADER------------------------------
|
|
*/
|
|
|
|
#include "RADIO_Private.h"
|
|
|
|
#if GUI_WINSUPPORT
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Public code
|
|
*
|
|
**********************************************************************
|
|
*/
|
|
/*********************************************************************
|
|
*
|
|
* RADIO_SetFont
|
|
*/
|
|
void RADIO_SetFont(RADIO_Handle hObj, const GUI_FONT GUI_UNI_PTR* pFont) {
|
|
if (hObj) {
|
|
RADIO_Obj* pObj;
|
|
WM_LOCK();
|
|
pObj = RADIO_H2P(hObj);
|
|
if (pFont != pObj->pFont) {
|
|
pObj->pFont = pFont;
|
|
if (GUI_ARRAY_GetNumItems(&pObj->TextArray)) {
|
|
WM_InvalidateWindow(hObj);
|
|
}
|
|
}
|
|
WM_UNLOCK();
|
|
}
|
|
}
|
|
|
|
#else /* avoid empty object files */
|
|
|
|
void RADIO_SetFont_c(void);
|
|
void RADIO_SetFont_c(void) {}
|
|
|
|
#endif /* #if GUI_WINSUPPORT */
|
|
|
|
/************************* end of file ******************************/
|