Terminal.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        : TERMINAL.H
  16. Purpose     : TERMINAL include
  17. --------------------END-OF-HEADER-------------------------------------
  18. */
  19. #ifndef TERMINAL_H
  20. #define TERMINAL_H
  21. #include "GUI.H"
  22. #if GUI_WINSUPPORT
  23. #include "WM.H"
  24. #include "Dialog_Intern.h"      /* Req. for Create indirect data structure */
  25. /*********************************************************************
  26. *
  27. *            Defaults for public configuration switches
  28. *
  29. **********************************************************************
  30. The following are defaults for config switches which affect the
  31. interface specified in this module
  32. */
  33. /* Default for ... */
  34. #ifndef TERMINAL_XXX_DEFAULT
  35.   #define TERMINAL_XXX_DEFAULT xx
  36. #endif
  37. /*********************************************************************
  38. *
  39. *                         Public Types
  40. *
  41. **********************************************************************
  42. */
  43. typedef WM_HMEM TERMINAL_Handle;
  44. /*********************************************************************
  45. *
  46. *                 Standard member functions
  47. *
  48. **********************************************************************
  49. */
  50. #define TERMINAL_EnableMemdev(hObj)  WM_EnableMemdev(hObj)
  51. #define TERMINAL_DisableMemdev(hObj) WM_DisableMemdev(hObj)
  52. #define TERMINAL_Delete(hObj)        WM_DeleteWindow(hObj)
  53. #define TERMINAL_Paint(hObj)         WM_Paint(hObj)
  54. /*********************************************************************
  55. *
  56. *                 Create functions
  57. *
  58. **********************************************************************
  59. */
  60. TERMINAL_Handle TERMINAL_Create(    int x0, int y0, int xsize, int ysize,
  61.                                     int MaxLen,
  62.                                     int Flags);
  63. TERMINAL_Handle TERMINAL_CreateAsChild(
  64.                                     int x0, int y0, int xsize, int ysize,
  65.                                     WM_HWIN hWinParent,
  66.                                     int MaxLen,
  67.                                     int Flags);
  68. /*********************************************************************
  69. *
  70. *                 Member functions
  71. *
  72. **********************************************************************
  73. */
  74. /* Methods changing properties */
  75. /* Note: These are just examples. The actual methods available for the
  76.    widget will depend on the type of widget. */
  77. void         TERMINAL_Add(TERMINAL_Handle hObj, const char* sAdd);
  78. void         TERMINAL_SetFont     (TERMINAL_Handle pObj, const GUI_FONT* pFont);
  79. void         TERMINAL_SetText     (TERMINAL_Handle pObj, const char* s);
  80. void         TERMINAL_SetTextAlign(TERMINAL_Handle pObj, int Align);
  81. void         TERMINAL_SetTextPos  (TERMINAL_Handle pObj, int XOff, int YOff);
  82. /* Get data */
  83. void TERMINAL_GetText(TERMINAL_Handle hObj, char* sDest, int MaxLen);
  84. #endif /* GUI_WINSUPPORT */
  85. #endif   /* TERMINAL_H */