Checkbox.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        : CHECKBOX.H
  16. Purpose     : CHECKBOX include
  17. --------------------END-OF-HEADER-------------------------------------
  18. */
  19. #ifndef CHECKBOX_H
  20. #define CHECKBOX_H
  21. #include "WM.H"
  22. #include "Dialog.h"      /* Req. for Create indirect data structure */
  23. #if GUI_WINSUPPORT
  24. /*********************************************************************
  25. *
  26. *            Defaults for public configuration switches
  27. *
  28. **********************************************************************
  29. The following are defaults for config switches which affect the
  30. interface specified in this module
  31. */
  32. /* Default for ... */
  33. #ifndef CHECKBOX_XXX_DEFAULT
  34.   #define CHECKBOX_XXX_DEFAULT xx
  35. #endif
  36. /*********************************************************************
  37. *
  38. *           defines
  39. *
  40. **********************************************************************
  41. */
  42. /*********************************************************************
  43. *
  44. *       States
  45. */
  46. #define CHECKBOX_STATE_CHECKED              WIDGET_STATE_USER0
  47. /*********************************************************************
  48. *
  49. *                         Public Types
  50. *
  51. **********************************************************************
  52. */
  53. typedef WM_HMEM CHECKBOX_Handle;
  54. /*********************************************************************
  55. *
  56. *                 Create functions
  57. *
  58. **********************************************************************
  59. */
  60. CHECKBOX_Handle CHECKBOX_Create        (int x0, int y0, int xsize, int ysize, WM_HWIN hParent, int Id, int Flags);
  61. CHECKBOX_Handle CHECKBOX_CreateIndirect(const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  62. /*********************************************************************
  63. *
  64. *                 Member functions
  65. *
  66. **********************************************************************
  67. */
  68. void CHECKBOX_Check(CHECKBOX_Handle hObj);
  69. void CHECKBOX_Uncheck(CHECKBOX_Handle hObj);
  70. /*********************************************************************
  71. *
  72. *                 Query state
  73. *
  74. **********************************************************************
  75. */
  76. int CHECKBOX_IsChecked(CHECKBOX_Handle hObj);
  77. #endif   /* if GUI_WINSUPPORT */
  78. #endif   /* CHECKBOX_H */