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

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.H
  16. Purpose     : Progressbar include
  17. --------------------END-OF-HEADER-------------------------------------
  18. */
  19. #ifndef PROGBAR_H        /* Avoid multiple inclusion  */
  20. #define PROGBAR_H
  21. #include "WM.h"
  22. #include "Dialog_Intern.h"      /* Req. for Create indirect data structure */
  23. #if GUI_WINSUPPORT
  24. typedef WM_HMEM PROGBAR_Handle;
  25. /************************************************************
  26. *
  27. *           Create
  28. *
  29. *************************************************************
  30. */
  31. PROGBAR_Handle PROGBAR_Create(int x0, int y0, int xsize, int ysize, int Flags);
  32. PROGBAR_Handle PROGBAR_CreateEx(int x0, int y0, int xsize, int ysize, WM_HWIN hParent, int Id, int Flags);
  33. PROGBAR_Handle PROGBAR_CreateIndirect(const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  34. /************************************************************
  35. *
  36. *                 Standard member functions
  37. *
  38. *************************************************************
  39. */
  40. #define PROGBAR_EnableMemdev(hObj)  WM_EnableMemdev(hObj)
  41. #define PROGBAR_DisableMemdev(hObj) WM_DisableMemdev(hObj)
  42. #define PROGBAR_Delete(hObj)        WM_DeleteWindow(hObj)
  43. #define PROGBAR_Paint(hObj)         WM_Paint(hObj)
  44. /************************************************************
  45. *
  46. *           Individual member functions
  47. *
  48. *************************************************************
  49. */
  50. void            PROGBAR_SetBarColor (PROGBAR_Handle hObj, int index, GUI_COLOR color);
  51. void            PROGBAR_SetFont     (PROGBAR_Handle hObj, const GUI_FONT* pfont);
  52. void            PROGBAR_SetMinMax(PROGBAR_Handle hObj, int Min, int Max);
  53. void            PROGBAR_SetText     (PROGBAR_Handle hObj, const char* s);
  54. void            PROGBAR_SetTextAlign(PROGBAR_Handle hObj, int Align);
  55. void            PROGBAR_SetTextColor(PROGBAR_Handle hObj, int index, GUI_COLOR color);
  56. void            PROGBAR_SetTextPos  (PROGBAR_Handle hObj, int XOff, int YOff);
  57. void            PROGBAR_SetValue    (PROGBAR_Handle hObj, int v);
  58. #endif   /* GUI_WINSUPPORT */
  59. #endif   /* PROGBAR_H */