GUI_SetDefault.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*********************************************************************
  2. *                SEGGER MICROCONTROLLER SYSTEME GmbH                 *
  3. *        Solutions for real time microcontroller applications        *
  4. **********************************************************************
  5. *                                                                    *
  6. *        (c) 2002         SEGGER Microcontroller Systeme GmbH        *
  7. *                                                                    *
  8. *        Internet: www.segger.com    Support:  support@segger.com    *
  9. *                                                                    *
  10. **********************************************************************
  11. **** emWin/GSC Grafical user interface for embedded applications ****
  12. emWin is protected by international copyright laws. Knowledge of the
  13. source code may not be used to write a similar product. This file may
  14. only be used in accordance with a license and should not be re-
  15. distributed in any way. We appreciate your understanding and fairness.
  16. ----------------------------------------------------------------------
  17. File        : GUI_SetDefault.c
  18. Purpose     : Implementation of GUI_SetDefault for emWin GSC
  19. ---------------------------END-OF-HEADER------------------------------
  20. */
  21. #include "GUI_Protected.H"
  22. void GL_SetDefault(void) {
  23.   GUI_SetBkColor(GUI_DEFAULT_BKCOLOR);
  24.   GUI_SetColor  (GUI_DEFAULT_COLOR);
  25.   GUI_SetPenSize(1);
  26.   GUI_SetTextAlign(0);
  27.   GUI_SetTextMode(0);
  28.   GUI_SetDrawMode(0);
  29.   GUI_SetFont(GUI_DEFAULT_FONT);
  30.   GUI_SetLineStyle(GUI_LS_SOLID);
  31. }
  32. void GUI_SetDefault(void) {
  33.   GUI_LOCK();
  34.   GL_SetDefault();
  35.   GUI_UNLOCK();
  36. }