Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
请教:RTGUI怎么实现滑动效果???
发布于 2013-03-24 20:41:41 浏览:2512
订阅该版
我想实现触屏滑动解锁功能 但是在驱动里面有个触摸松手检查我去掉之后鼠标功能就不正常了 请问下面这段代码怎么改 ``` void touch_timeout(void* parameter) { static unsigned int touched_down = 0; struct rtgui_event_mouse emouse; static struct _touch_previous { rt_uint32_t x; rt_uint32_t y; } touch_previous; /* touch time is too short and we lost the position already. */ if ((!touched_down) && GPIO_ReadInputDataBit(GPIOG, GPIO_Pin_7) != 0) return; if (GPIO_ReadInputDataBit(GPIOG,GPIO_Pin_7) != 0) { int tmer = RT_TICK_PER_SECOND/8 ; EXTI_Enable(1); emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON; emouse.button = (RTGUI_MOUSE_BUTTON_LEFT |RTGUI_MOUSE_BUTTON_UP); /* use old value */ emouse.x = touch->x; emouse.y = touch->y; /* stop timer */ rt_timer_stop(touch->poll_timer); rt_kprintf("touch up: (%d, %d) ", emouse.x, emouse.y); touched_down = 0; if ((touch->calibrating == RT_TRUE) && (touch->calibration_func != RT_NULL)) { /* callback function */ touch->calibration_func(emouse.x, emouse.y); } rt_timer_control(touch->poll_timer , RT_TIMER_CTRL_SET_TIME , &tmer); } else { if(touched_down == 0) { int tmer = RT_TICK_PER_SECOND/20 ; /* calculation */ rtgui_touch_calculate(); /* send mouse event */ emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON; emouse.parent.sender = RT_NULL; emouse.x = touch->x; emouse.y = touch->y; touch_previous.x = touch->x; touch_previous.y = touch->y; /* init mouse button */ emouse.button = (RTGUI_MOUSE_BUTTON_LEFT |RTGUI_MOUSE_BUTTON_DOWN); // rt_kprintf("touch down: (%d, %d) ", emouse.x, emouse.y); touched_down = 1; rt_timer_control(touch->poll_timer , RT_TIMER_CTRL_SET_TIME , &tmer); } else { /* calculation */ rtgui_touch_calculate(); #define previous_keep 8 //判断移动距离是否小于previous_keep,减少误动作. if( (touch_previous.x
x+previous_keep) && (touch_previous.x>touch->x-previous_keep) && (touch_previous.y
y+previous_keep) && (touch_previous.y>touch->y-previous_keep) ) { return; } touch_previous.x = touch->x; touch_previous.y = touch->y; /* send mouse event */ emouse.parent.type = RTGUI_EVENT_MOUSE_BUTTON ; emouse.parent.sender = RT_NULL; emouse.x = touch->x; emouse.y = touch->y; /* init mouse button */ emouse.button = (RTGUI_MOUSE_BUTTON_RIGHT |RTGUI_MOUSE_BUTTON_DOWN); // rt_kprintf("touch motion: (%d, %d) ", emouse.x, emouse.y); } } /* send event to server */ if (touch->calibrating != RT_TRUE) rtgui_server_post_event(&emouse.parent, sizeof(struct rtgui_event_mouse)); } ```
查看更多
5
个回答
默认排序
按发布时间排序
王周旺
2013-03-24
这家伙很懒,什么也没写!
弄了一个晚上也弄出来的只要 ``` emouse.button = (RTGUI_MOUSE_BUTTON_LEFT|RTGUI_MOUSE_BUTTON_DOWN); ``` 改成左键就可以滑动了
xiao苦
2013-03-25
这家伙很懒,什么也没写!
- -我能说话吗?RTGUI滑动是没问题的,它本来驱动就有分三种情况,一个是按下, 一个是滑动,一个是松开。 需要注意的是,当有按下,需要定时采集坐标判断有没有滑动,有就发送移动事件。所以驱动是不用怎么改的。 我是用一个线程一直去采的(RTGUI_MOUSE_BUTTON_RIGHT |RTGUI_MOUSE_BUTTON_DOWN)表示的就是滑动事件,而(RTGUI_MOUSE_BUTTON_LEFT |RTGUI_MOUSE_BUTTON_DOWN)则是表示第一次按下的。。
王周旺
2013-03-26
这家伙很懒,什么也没写!
>我是用一个线程一直去采的 --- 能具具体点吗 我不懂你是怎么弄的 还有触屏移动时发送RTGUI_MOUSE_BUTTON_RIGHT 事件但是我看了下服务端没有这个事件的处理函数 我把它改成RTGUI_MOUSE_BUTTON_LEFT 会不会影响其他地方?
nongxiaoming
2013-04-14
rt-thread大师兄
窗口的事件中可以获取到触摸屏的滑动事件的吧,那样实现就没什么问题了~
撰写答案
登录
注册新账号
关注者
0
被浏览
2.5k
关于作者
王周旺
这家伙很懒,什么也没写!
提问
14
回答
33
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
TinyUSB Demo运行教程
2
RT-Thread学习大礼包一键带走!
3
freemodbus从机调试说明
4
【1024】瑞萨 RA 系列 BSP 制作与适配最新版本的 Keil 、 RSC、固件,较新的 FSP
5
基于 RT-Thread 星火一号开发板的俄罗斯方块
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
ART-Pi
FinSH
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
cubemx
PWM
flash
packages_软件包
freemodbus
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
用户名由3_15位
10
个答案
1
次被采纳
KunYi
4
个答案
1
次被采纳
踩姑娘的小蘑菇
2
个答案
1
次被采纳
bernard
1
个答案
1
次被采纳
rv666
1
个答案
1
次被采纳
本月文章贡献
出出啊
1
篇文章
2
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
4
次点赞
crystal266
2
篇文章
2
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部