GUI_MOUSE.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        : GUI_MOUSE.C
  16. Purpose     : Generic mouse routines
  17. ----------------------------------------------------------------------
  18. */
  19. #include <string.h>           /* memcmp */
  20. #include "LCD_Private.H"      /* private modul definitions & config */
  21. #include "GUI_Protected.h"
  22. /*********************************************************************
  23. *
  24. *          Config defaults
  25. *
  26. **********************************************************************
  27. */
  28. #ifndef GUI_MOUSE_SWAP_XY    /* Is XY of touch swapped ? */
  29.   #define GUI_MOUSE_SWAP_XY 0
  30. #endif
  31. #ifndef GUI_MOUSE_MIRROR_X
  32.   #define GUI_MOUSE_MIRROR_X 0
  33. #endif
  34. #ifndef GUI_MOUSE_MIRROR_Y
  35.   #define GUI_MOUSE_MIRROR_Y 0
  36. #endif
  37. /*********************************************************************
  38. *
  39. *       Static data
  40. *
  41. **********************************************************************
  42. */
  43. static GUI_HID_STATE _State;
  44. /*********************************************************************
  45. *
  46. *              GUI_MOUSE_StoreState
  47. *
  48. **********************************************************************
  49. */
  50. void GUI_MOUSE_StoreState(const GUI_HID_STATE *pState) {
  51.     _State = _State;
  52.   #if GUI_SUPPORT_TOUCH
  53.     if (memcmp(pState, &_State, sizeof(_State))) {
  54.       _State = *pState;
  55.       GUI_HID_StoreState(pState);
  56.     }
  57.   #else
  58.     GUI_USE_PARA(pState);
  59.   #endif
  60. }