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

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. ----------------------------------------------------------------------
  15. File        : GUIDEMO_Messagebox.c
  16. Purpose     : Messagebox samples
  17. ----------------------------------------------------------------------
  18. */
  19. #include <stddef.h>           /* needed for definition of NULL */
  20. #include "GUI.H"
  21. #include "GUIDEMO.H"
  22. //#include "LCD_ConfDefaults.h"
  23. #include "WM.h"
  24. #include "Dialog.h"
  25. #if GUI_WINSUPPORT
  26. /*********************************************************************
  27. *
  28. *       GUIDEMO_Dialog
  29. *
  30. **********************************************************************
  31. */
  32. void GUIDEMO_Messagebox(void) {
  33.   GUI_COLOR Color;
  34.   GUIDEMO_ShowIntro("Message boxes",
  35.                     "Message boxes" "ncan easily be created");
  36.   Color = WM_SetDesktopColor(GUI_RED);
  37.   GUI_MessageBox("Message", "Text", 0);
  38.   GUI_Delay(1000);
  39.   GUI_MessageBox("2. Message", "Text", 0);
  40.   GUI_Delay(1000);
  41.   WM_SetDesktopColor(Color);
  42.   GUIDEMO_NotifyStartNext();
  43. }
  44. #else
  45. void GUIDEMO_Messagebox(void) {}
  46. #endif /* GUI_SUPPORT_MEMDEV */