tchScr.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:1k
源码类别:

uCOS

开发平台:

C/C++

  1. #include "../inc/macro.h"
  2. #ifndef __TCHSCR_H__
  3. #define __TCHSCR_H__
  4. /////////触摸屏动作////////
  5. #define TCHSCR_ACTION_NULL 0
  6. #define TCHSCR_ACTION_CLICK 1 //触摸屏单击
  7. #define TCHSCR_ACTION_DBCLICK 2 //触摸屏双击
  8. #define TCHSCR_ACTION_DOWN 3 //触摸屏按下
  9. #define TCHSCR_ACTION_UP 4 //触摸屏抬起
  10. #define TCHSCR_ACTION_MOVE 5 //触摸屏移动
  11. typedef struct {
  12. int x;
  13. int y;
  14. int action;
  15. }tsdata, *Ptsdata;
  16. void TchScr_GetScrXY(int *x, int *y);
  17. void Touch_Screen_Task(void *Id); //触摸屏任务
  18. #endif //#ifndef __TCHSCR_H__