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

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_BringToTop.c
  16. Purpose     : Windows manager routine
  17. ----------------------------------------------------------------------
  18. */
  19. #include "WM_Intern.h"
  20. #if GUI_WINSUPPORT    /* If 0, WM will not generate any code */
  21. /*********************************************************************
  22. *
  23. *                Pull window in foreground (top of stack)
  24. *
  25. **********************************************************************
  26. */
  27. void WM_BringToTop(WM_HWIN hWin) {
  28.   WM_HWIN hPrev, hLast;
  29.   WM_Obj* pWin;
  30.   WM_Obj* pLast;
  31.   if (hWin) {
  32.     WM_LOCK();
  33.     pWin = WM_H2P(hWin);
  34.   /* First of all check if window is already top of stack */
  35.     if (pWin->hNext && pWin->hParent) {
  36.       /* unlink hWin */
  37.       if ((hPrev = WM__GetPrevSibling(hWin)) != 0) {
  38.         WM_Obj* pPrev;
  39.         pPrev = WM_H2P(hPrev);
  40.         pPrev->hNext = pWin->hNext;
  41.       } else {
  42.         WM_Obj* pParent;
  43.         pParent= WM_H2P(pWin->hParent);
  44.         pParent->hFirstChild = pWin->hNext;
  45.       }
  46.       /* Link last sibling */
  47.       hLast = WM__GetLastSibling(hWin);
  48.       pLast = WM_H2P(hLast);
  49.       pLast->hNext = hWin;
  50.       pWin->hNext = 0;
  51.       /* Send message in order to make sure top window will be drawn */
  52.       WM_InvalidateArea(&pWin->Rect);     /* Invalidate new area */
  53.     }
  54.     WM_UNLOCK();
  55.   }
  56. }
  57. #else
  58. void WM_BringToTop_c(void) {} /* avoid empty object files */
  59. #endif /* WM_MAX_WINDOW */