feat(sim/oled): 移除未使用的头文件 "graphics.h" 和 "conio.h"

 feat(lib/CMakeLists.txt): 添加 LUI 库支持

 feat(lib/utils/inc/argpase.h): 引入 "stdbool.h" 以支持布尔类型

 feat(sim/display/sim_display.cpp): 重新引入 "graphics.h" 和 "conio.h" 以修复依赖

 feat(sim/lvgl/lv_port_indev.cpp): 移除未使用的头文件 "graphics.h" 和 "easyx.h"

 feat(main.c): 添加 LUI 库支持以增强功能

 feat(lib/lui/lame_ui.c): 新增 LUI 库实现以支持 UI 组件
This commit is contained in:
JiXieShi
2024-12-19 22:49:08 +08:00
parent fd68396b30
commit 040b9be6b9
14 changed files with 10347 additions and 23 deletions

View File

@@ -12,8 +12,6 @@
*********************/
#include "lv_port_indev.h"
#include "lvgl.h"
#include "graphics.h"
#include <easyx.h>
/*********************
* DEFINES
*********************/
@@ -253,8 +251,8 @@ static void mouse_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
static bool mouse_is_pressed(void)
{
/*Your code comes here*/
ExMessage msg;peekmessage(&msg, EM_MOUSE);
if(msg.message==WM_LBUTTONDOWN) return true;
// ExMessage msg;peekmessage(&msg, EM_MOUSE);
// if(msg.message==WM_LBUTTONDOWN) return true;
return false;
}
@@ -262,13 +260,13 @@ static bool mouse_is_pressed(void)
static void mouse_get_xy(lv_coord_t * x, lv_coord_t * y)
{
/*Your code comes here*/
ExMessage msg;
if(peekmessage(&msg, EM_MOUSE))
{
(*x) = msg.x;
(*y) = msg.y;
printf("\nX:%d,Y:%d",*x,*y);
}
// ExMessage msg;
// if(peekmessage(&msg, EM_MOUSE))
// {
// (*x) = msg.x;
// (*y) = msg.y;
// printf("\nX:%d,Y:%d",*x,*y);
// }
}
/*------------------