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

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        : ProgBar.c
  16. Purpose     : Progress bar for emWin GSC
  17. ---------------------------END-OF-HEADER------------------------------
  18. */
  19. #include <string.h>             /* for memset */
  20. #include "GUI.h"
  21. #include "BUTTON.h"
  22. #include "FRAMEWIN.h"
  23. #include "TEXT.h"
  24. #include "DIALOG.h"
  25. #if GUI_WINSUPPORT
  26. /*********************************************************************
  27. *
  28. *       Defaults
  29. *
  30. **********************************************************************
  31. */
  32. #ifndef MESSAGEBOX_BORDER
  33.   #define MESSAGEBOX_BORDER 4
  34. #endif
  35. #ifndef MESSAGEBOX_XSIZEOK
  36.   #define MESSAGEBOX_XSIZEOK 50
  37. #endif
  38. #ifndef MESSAGEBOX_YSIZEOK
  39.   #define MESSAGEBOX_YSIZEOK 20
  40. #endif
  41. #ifndef MESSAGEBOX_BKCOLOR
  42.   #define MESSAGEBOX_BKCOLOR GUI_WHITE
  43. #endif
  44. #define ID_FRAME 100
  45. /*********************************************************************
  46. *
  47. *       Static functions
  48. *
  49. **********************************************************************
  50. */
  51. static WM_RESULT _MESSAGEBOX_cbCallback(WM_MESSAGE * pMsg) {
  52.   WM_HWIN hWin = pMsg->hWin;
  53.   switch (pMsg->MsgId) {
  54.     case WM_INIT_DIALOG:
  55.       FRAMEWIN_SetClientColor(hWin, MESSAGEBOX_BKCOLOR);
  56.       break;
  57.     case WM_KEY:
  58.       {
  59.         int Key = ((WM_KEY_INFO*)(pMsg->Data.p))->Key;
  60.         switch (Key) {
  61.         case GUI_KEY_ESCAPE:
  62.           GUI_EndDialog(hWin, 1);             /* End dialog with return value 1 if <ESC> is pressed */
  63.           break;
  64.         case GUI_KEY_ENTER:
  65.           GUI_EndDialog(hWin, 0);             /* End dialog with return value 0 if <ENTER> is pressed */
  66.           break;
  67.         }
  68.       }
  69.       break;
  70.     case WM_NOTIFY_PARENT:
  71.       {
  72.         int NCode = pMsg->Data.v;             /* Get notification code */
  73.         int Id    = WM_GetId(pMsg->hWinSrc);  /* Get control ID */
  74.         switch (NCode) {
  75.           case WM_NOTIFICATION_RELEASED:      /* React only if released */
  76.             if (Id == GUI_ID_OK) {
  77.               GUI_EndDialog(hWin, 0);         /* End dialog with return value 0 if OK */
  78.             }
  79.             break;
  80.         }
  81.       }
  82.       break;
  83.       
  84.     default:
  85.       WM_DefaultProc(pMsg);
  86.   }
  87. }
  88. /*********************************************************************
  89. *
  90. *       Exported routines
  91. *
  92. **********************************************************************
  93. */
  94. int GUI_MessageBox(const char * sMessage, const char * sCaption, int Flags) {
  95.   GUI_WIDGET_CREATE_INFO _aDialogCreate[3];                                     /* 0: FrameWin, 1: Text, 2: Button */
  96.   int BorderSize = FRAMEWIN_GetDefaultBorderSize();                             /* Default border size of frame window */
  97.   int xSizeFrame = MESSAGEBOX_XSIZEOK + 2 * BorderSize + MESSAGEBOX_BORDER * 2; /* XSize of frame window */
  98.   int ySizeFrame;                                                               /* YSize of frame window */
  99.   int x0, y0;                                                                   /* Position of frame window */
  100.   int xSizeMessage;                                                             /* Length in pixels of message */
  101.   int xSizeCaption;                                                             /* Length in pixels of caption */
  102.   int ySizeCaption;                                                             /* YSize of caption */
  103.   int ySizeMessage;                                                             /* YSize of message */
  104.   GUI_RECT Rect;
  105.   const GUI_FONT * pOldFont;
  106.   /* Zeroinit variables */
  107.   memset(_aDialogCreate, 0, sizeof(_aDialogCreate));
  108.   /* Get dimension of message */
  109.   pOldFont = GUI_SetFont(TEXT_GetDefaultFont());
  110.   GUI_GetTextExtend(&Rect, sMessage, 255);
  111.   xSizeMessage = Rect.x1 - Rect.x0 + MESSAGEBOX_BORDER * 2;
  112.   ySizeMessage = Rect.y1 - Rect.y0 + 1;
  113.   if (xSizeFrame < (xSizeMessage + 4 + MESSAGEBOX_BORDER * 2))
  114.     xSizeFrame = xSizeMessage + 4 + MESSAGEBOX_BORDER * 2;
  115.   ySizeCaption = GUI_GetYSizeOfFont(FRAMEWIN_GetDefaultFont());
  116.   if (ySizeCaption < FRAMEWIN_GetDefaultCaptionSize())
  117.     ySizeCaption = FRAMEWIN_GetDefaultCaptionSize();
  118.   ySizeFrame = ySizeMessage +            /* size of message */
  119.                MESSAGEBOX_YSIZEOK +      /* size of button */
  120.                ySizeCaption +            /* caption size */
  121.                MESSAGEBOX_BORDER * 3 +   /* inner border - text, text - button, button - bottom */
  122.                BorderSize * 2 +          /* top & bottom border */
  123.                1;                        /* inner border */
  124.   /* Get xsize of caption */
  125.   xSizeCaption = GUI_GetStringDistX(sCaption);
  126.   if (xSizeFrame < xSizeCaption + BorderSize * 2)
  127.     xSizeFrame = xSizeCaption + BorderSize * 2;
  128.   /* Check maximum */
  129.   if (xSizeFrame > LCD_GET_XSIZE())
  130.     xSizeFrame = LCD_GET_XSIZE();
  131.   if (ySizeFrame > LCD_GET_YSIZE())
  132.     ySizeFrame = LCD_GET_YSIZE();
  133.   /* Calculate position of framewin */
  134.   x0 = (LCD_GET_XSIZE() - xSizeFrame) / 2;
  135.   y0 = (LCD_GET_YSIZE() - ySizeFrame) / 2;
  136.   /* Fill frame win ressource */
  137.   _aDialogCreate[0].pfCreateIndirect = FRAMEWIN_CreateIndirect;
  138.   _aDialogCreate[0].pName            = sCaption;
  139.   _aDialogCreate[0].x0               = x0;
  140.   _aDialogCreate[0].y0               = y0;
  141.   _aDialogCreate[0].xSize            = xSizeFrame;
  142.   _aDialogCreate[0].ySize            = ySizeFrame;
  143.   if (Flags & GUI_MESSAGEBOX_CF_MOVEABLE) {
  144.     _aDialogCreate[0].Flags          = FRAMEWIN_CF_MOVEABLE;
  145.   }
  146.   /* Fill text ressource */
  147.   _aDialogCreate[1].pfCreateIndirect = TEXT_CreateIndirect;
  148.   _aDialogCreate[1].pName            = sMessage;
  149.   _aDialogCreate[1].x0               = (xSizeFrame - xSizeMessage - BorderSize * 2) / 2;
  150.   _aDialogCreate[1].y0               = MESSAGEBOX_BORDER;
  151.   _aDialogCreate[1].xSize            = xSizeMessage;
  152.   _aDialogCreate[1].ySize            = ySizeMessage;
  153.   _aDialogCreate[1].Para             = GUI_TA_TOP | GUI_TA_HCENTER;
  154.   /* Fill button ressource */
  155.   _aDialogCreate[2].pfCreateIndirect = BUTTON_CreateIndirect;
  156.   _aDialogCreate[2].pName            = "OK";
  157.   _aDialogCreate[2].Id               = GUI_ID_OK;
  158.   _aDialogCreate[2].x0               = (xSizeFrame - MESSAGEBOX_XSIZEOK - BorderSize * 2) / 2;
  159.   _aDialogCreate[2].y0               = MESSAGEBOX_BORDER * 2 + ySizeMessage;
  160.   _aDialogCreate[2].xSize            = MESSAGEBOX_XSIZEOK;
  161.   _aDialogCreate[2].ySize            = MESSAGEBOX_YSIZEOK;
  162.   /* Exec dialog */
  163.   GUI_ExecDialogBox(_aDialogCreate, GUI_COUNTOF(_aDialogCreate), _MESSAGEBOX_cbCallback, 0, 0, 0);
  164.   GUI_SetFont(pOldFont);
  165.   return 0;
  166. }
  167. #else
  168. void GUI_MessageBox_C(void) {} /* avoid empty object files */
  169. #endif /* GUI_WINSUPPORT */