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

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        : Dialog.h
  16. Purpose     : Dialog box include
  17. ----------------------------------------------------------------------
  18. Open items:
  19. None
  20. --------------------END-OF-HEADER-------------------------------------
  21. */
  22. #ifndef DIALOG_INTERN_H
  23. #define DIALOG_INTERN_H
  24. #include "WM.h"
  25. #if GUI_WINSUPPORT
  26. /*********************************************************************
  27. *
  28. *           typedefs
  29. *
  30. **********************************************************************
  31. */
  32. typedef struct  GUI_WIDGET_CREATE_INFO_struct GUI_WIDGET_CREATE_INFO;
  33. typedef WM_HWIN GUI_WIDGET_CREATE_FUNC       (const GUI_WIDGET_CREATE_INFO* pCreate, WM_HWIN hWin, int x0, int y0, WM_CALLBACK* cb);
  34. /*********************************************************************
  35. *
  36. *           structures
  37. *
  38. **********************************************************************
  39. */
  40. struct GUI_WIDGET_CREATE_INFO_struct {
  41.   GUI_WIDGET_CREATE_FUNC* pfCreateIndirect;
  42.   const char* pName;                     /* Text ... Not used on all widgets */
  43.   I16 Id;                                /* ID ... should be unique in a dialog */
  44.   I16 x0, y0, xSize, ySize;              /* Define position and size */
  45.   U16 Flags;                             /* Widget specific create flags (opt.) */
  46.   I32 Para;                              /* Widget specific parameter (opt.) */ 
  47. };
  48. /*********************************************************************
  49. *
  50. *           Create functions for well known widgets
  51. *
  52. **********************************************************************
  53. */
  54. WM_HWIN BUTTON_CreateIndirect   (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  55. WM_HWIN CHECKBOX_CreateIndirect (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  56. WM_HWIN EDIT_CreateIndirect     (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  57. WM_HWIN FRAMEWIN_CreateIndirect (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  58. WM_HWIN RADIO_CreateIndirect    (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  59. WM_HWIN SLIDER_CreateIndirect   (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  60. WM_HWIN SCROLLBAR_CreateIndirect(const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  61. WM_HWIN TEXT_CreateIndirect     (const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
  62. /*********************************************************************
  63. *
  64. *           Public API functions
  65. *
  66. **********************************************************************
  67. */
  68. int     GUI_ExecDialogBox  (const GUI_WIDGET_CREATE_INFO* paWidget, int NumWidgets, WM_CALLBACK* cb, WM_HWIN hParent, int x0, int y0);
  69. WM_HWIN GUI_CreateDialogBox(const GUI_WIDGET_CREATE_INFO* paWidget, int NumWidgets, WM_CALLBACK* cb, WM_HWIN hParent, int x0, int y0);
  70. void    GUI_EndDialog(WM_HWIN hWin, int r);
  71. LCD_COLOR DIALOG_GetBkColor(void);
  72. LCD_COLOR DIALOG_SetBkColor(LCD_COLOR BkColor);
  73. #endif   /* GUI_WINSUPPORT */
  74. #endif