GUI_EditBin.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        : GUI_EditBin.c
  16. Purpose     : Widget, add. module
  17. ----------------------------------------------------------------------
  18. */
  19. #include "EDIT.h"
  20. #include "GUI_Protected.h"
  21. #include "EDIT_Private.h"
  22. #if GUI_WINSUPPORT
  23. /*********************************************************************
  24. *
  25. *             Exported routines
  26. *
  27. **********************************************************************
  28. */
  29. U32 GUI_EditBin(U32 Value, U32 Min, U32 Max, int Len, int xsize) {
  30.   U32 Ret = Value;
  31.   int Key, x, y, ysize, Id;
  32.   EDIT_Handle hEdit;
  33.   EDIT_Obj* pObj;
  34.   const GUI_FONT * pOldFont = GUI_SetFont(EDIT_GetDefaultFont());
  35.   x = GUI_GetDispPosX();
  36.   y = GUI_GetDispPosY();
  37.   if (xsize == 0)
  38.     xsize = GUI_GetCharDistX('X') * Len + 6;
  39.   ysize = GUI_GetFontSizeY();
  40.   Id = 0x1234;
  41.   hEdit = EDIT_Create(x, y, xsize, ysize, Id, Len, 0);
  42.   pObj = EDIT_H2P(hEdit);
  43.   EDIT_SetBinMode(hEdit, Value, Min, Max);
  44.   WM_SetFocus(hEdit);
  45.   do {
  46.     Key = GUI_WaitKey();
  47.   } while ((Key != GUI_KEY_ESCAPE) && (Key != GUI_KEY_ENTER) && (Key != 0));
  48.   GUI_SetFont(pOldFont);
  49.   if (Key == GUI_KEY_ENTER)
  50.     Ret = pObj->CurrentValue;
  51.   EDIT_Delete(hEdit);
  52.   return Ret;
  53. }
  54. #else /* avoid empty object files */
  55. void GUI_EditBin_C(void);
  56. #endif