WM_SetFocus.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_SetFocus.c
  16. Purpose     : Implementation of WM_SetFocus
  17. ----------------------------------------------------------------------
  18. */
  19. #include "WM_Intern.H"
  20. #if GUI_WINSUPPORT    /* If 0, WM will not generate any code */
  21. /*********************************************************************
  22. *
  23. *       Public code
  24. *
  25. **********************************************************************
  26. */
  27. /*********************************************************************
  28. *
  29. *       WM__SetFocus
  30.   Sets the focus to the specified child. It sends 2 messages:
  31.     WM_SET_FOCUS(1) to window to receive focus
  32.     WM_SET_FOCUS(0) to window to lose focus
  33.   Return value:
  34.     0    on success (Focus could be set)
  35.     !=0  on failure (Windows could not take the focus)
  36. */
  37. int WM_SetFocus(WM_HWIN hWin) {
  38.   int r;
  39.   WM_MESSAGE Msg;
  40.   WM_LOCK();
  41.   if ((hWin) && (hWin != WM__hWinFocus)) {
  42.     Msg.MsgId  = WM_SET_FOCUS;
  43.     /* Send a "no more foucs" message to window losing focus */
  44.     Msg.Data.v = 0;
  45.     WM_SendMessage(WM__hWinFocus, &Msg);
  46.     /* Send "You have the focus now" message to the window */
  47.     Msg.Data.v = 1;
  48.     WM_SendMessage(WM__hWinFocus = hWin, &Msg);
  49.     r = Msg.Data.v;
  50.   } else {
  51.     r = 1;
  52.   }
  53.   WM_UNLOCK();
  54.   return r;
  55. }
  56. #else
  57.   void WM_SetFocus_C(void) {} /* avoid empty object files */
  58. #endif