WM_Move.c
上传用户: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        : WM_Move.C
  16. Purpose     : Windows manager, add. module
  17. ----------------------------------------------------------------------
  18. */
  19. #include "WM_Intern.H"
  20. #if GUI_WINSUPPORT    /* If 0, WM will not generate any code */
  21. /*********************************************************************
  22. *
  23. *       Static code
  24. *
  25. **********************************************************************
  26. */
  27. static void _MoveAllChildren(WM_HWIN hChild, int dx, int dy) {
  28.   while (hChild) {
  29.     WM_Obj* pChild = WM_HANDLE2PTR(hChild);
  30.     WM__MoveWindow(hChild, dx, dy);
  31.     hChild = pChild->hNext;
  32.   }
  33. }
  34. /*********************************************************************
  35. *
  36. *       Public module internal code
  37. *
  38. **********************************************************************
  39. */
  40. void WM__MoveWindow(WM_HWIN hWin, int dx, int dy) {
  41.   GUI_RECT r;
  42.   WM_Obj* pWin;
  43.   pWin = WM_HANDLE2PTR(hWin);
  44.   r = pWin->Rect;
  45.   GUI_MoveRect(&pWin->Rect, dx, dy);
  46.   /* Invalidate old and new area ... */
  47.   if (pWin->Status & WM_SF_ISVIS) {
  48.     WM_InvalidateArea(&pWin->Rect);     /* Invalidate new area */
  49.     WM_InvalidateArea(&r)         ;     /* Invalidate old area */
  50.   }
  51.   WM__SendMsgNoData(hWin, WM_MOVE); /* Notify window it has been moved */
  52.   _MoveAllChildren(pWin->hFirstChild, dx, dy);  /* Children need to be moved along ...*/
  53. }
  54. void WM__MoveTo(WM_HWIN hWin, int x, int y) {
  55.   WM_Obj* pWin = WM_HANDLE2PTR(hWin);
  56.   x -= pWin->Rect.x0;
  57.   y -= pWin->Rect.y0;
  58.   WM__MoveWindow(hWin, x, y);
  59. }
  60. /*********************************************************************
  61. *
  62. *       Public API code
  63. *
  64. **********************************************************************
  65. */
  66. void WM_MoveWindow(WM_HWIN hWin, int dx, int dy) {
  67.   WM_LOCK(); {
  68.     WM__MoveWindow(hWin, dx, dy);
  69.   } WM_UNLOCK();
  70. }
  71. void WM_MoveTo(WM_HWIN hWin, int x, int y) {
  72.   WM_LOCK(); {
  73.     WM__MoveTo(hWin, x, y);
  74.   } WM_UNLOCK();
  75. }
  76. #else
  77. void WM_Move_c(void) {} /* avoid empty object files */
  78. #endif /* WM_MAX_WINDOW */