Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
[ANN] RTGUI 0.6.2 版本发布
发布于 2013-04-10 19:20:10 浏览:5048
订阅该版
本月是寂静的一个月。RTGUI 的文档已经在《RT-Thread 编程手册》的框架下开始着手编 写了。项目地址在 [https://github.com/RT-Thread/manual-doc](https://github.com/RT-Thread/manual-doc) 。欢迎大家提出意见和建 议。 **主要变化** [list=a][li]用 RT-Thread 主干 bsp/simulator 替换了 RTGUI 中 与 RTT 相关的部分。使得其能 够跟得上 RTT 内核的更新。感谢 prife 的大力支持。[/li][/list] [list=a][li]添加了 --build-tests 选项用来设置编译测试用例。[/li][/list] **Bug fixes** [list=a][li]d9eb416: 修正了窗口子控件销毁窗口会引起崩溃的问题。感谢论坛上的 softwind。[/li][/list] 下载链接:https://github.com/RT-Thread/RTGUI/archive/v0.6.2.zip
查看更多
9
个回答
默认排序
按发布时间排序
bernard
2013-04-11
这家伙很懒,什么也没写!
本月静悄悄。。。难道RTGUI已经很完善了?反馈也不多呐
grissiom
2013-04-11
这家伙很懒,什么也没写!
各种事情…… 时间晃晃晃就过去了…… ;( 还是有一些 bug 需要修复的~下面边写文档边梳理代码,看看能不能重构的更好些~
xiao苦
2013-04-12
这家伙很懒,什么也没写!
[s:169] 我0.61还没测就出0.62了。。。。。- -
xiao苦
2013-04-12
这家伙很懒,什么也没写!
改动很小呢, 只是把windows.c文件的540行,mouse_button事件代码从 rt_bool_t res = rtgui_container_dispatch_mouse_event(RTGUI_CONTAINER(win), (struct rtgui_event_mouse *)event); #ifndef RTGUI_USING_SMALL_SIZE if (RTGUI_WIDGET(object)->on_mouseclick != RT_NULL) { RTGUI_WIDGET(object)->on_mouseclick(object, event); } #endif /* check whether has widget which handled mouse event before. * * Note #1: that the widget should have already received mouse down * event and we should only feed the mouse up event to it here. * * Note #2: the widget is responsible to clean up * last_mevent_widget on mouse up event(but not overwrite other * widgets). If not, it will receive two mouse up events. */ if (((struct rtgui_event_mouse *)event)->button & RTGUI_MOUSE_BUTTON_UP && win->last_mevent_widget != RT_NULL) { RTGUI_OBJECT(win->last_mevent_widget)->event_handler( RTGUI_OBJECT(win->last_mevent_widget), event); /* clean last mouse event handled widget */ win->last_mevent_widget = RT_NULL; } return res; 改成了 rt_bool_t res; /* check whether has widget which handled mouse event before. * * Note #1: that the widget should have already received mouse down * event and we should only feed the mouse up event to it here. * * Note #2: the widget is responsible to clean up * last_mevent_widget on mouse up event(but not overwrite other * widgets). If not, it will receive two mouse up events. */ if (((struct rtgui_event_mouse *)event)->button & RTGUI_MOUSE_BUTTON_UP && win->last_mevent_widget != RT_NULL) { RTGUI_OBJECT(win->last_mevent_widget)->event_handler( RTGUI_OBJECT(win->last_mevent_widget), event); /* clean last mouse event handled widget */ win->last_mevent_widget = RT_NULL; } /** if a widget will destroy the window in the event_handler(or in * on_* callbacks), it should return RT_TRUE. Otherwise, it will * crash the application. * * TODO: add it in the doc */ res = rtgui_container_dispatch_mouse_event(RTGUI_CONTAINER(win), (struct rtgui_event_mouse *)event); #ifndef RTGUI_USING_SMALL_SIZE if (!res && RTGUI_WIDGET(object)->on_mouseclick != RT_NULL) { res = RTGUI_WIDGET(object)->on_mouseclick(object, event); } #endif
nongxiaoming
2013-04-14
rt-thread大师兄
论坛代码没有高亮功能看起来很头晕,比较难分辨是注释还是代码~
heryon
2013-05-07
这家伙很懒,什么也没写!
之前的版本使用中,发现如果窗体中使用Combobox,在destroy 的时候会出错 我觉的原因在于调用下面函数时,box->pd_win也许会为RT_NULL。查看0.6.2,这部分没有改,是否不是这个原因,而是我使用的问题? ``` static void _rtgui_combobox_destructor(rtgui_combobox_t *box) { /* destroy pull down window */ rtgui_win_destroy(box->pd_win); /* reset box field */ box->pd_win = RT_NULL; } ```
icevel
2013-08-05
这家伙很懒,什么也没写!
支持,这个是最新版吧,为什么这么后面?
fighter
2013-08-11
这家伙很懒,什么也没写!
list_view貌似有个bug
撰写答案
登录
注册新账号
关注者
0
被浏览
5k
关于作者
grissiom
这家伙很懒,什么也没写!
提问
19
回答
819
被采纳
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
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部