XUI移植基本完成 https://gitee.com/891085309/xui , enjoy it!
离线
有个头依赖问题,下面是临时的修复方式
diff --git a/xui/xui.c b/xui/xui.c
index 6718af0..0e4ebcb 100644
--- a/xui/xui.c
+++ b/xui/xui.c
@@ -31,7 +31,8 @@
#include <xui/xui.h>
#include <shash.h>
#include <graphic/surface.h>
-#include <bsd/string.h>
+//#include <bsd/string.h>^M
+extern size_t strlcpy(char * dest, const char * src, size_t n);^M
static const char style_default[] = X({
"primary": {
@@ -1646,4 +1647,4 @@ void xui_add_font(struct xui_context_t * ctx, const char * family, const char *
{
if(ctx)
font_add(ctx->f, family, path);
-}
\ No newline at end of file
+}^M
离线
离线
支持linux framebuffer吗 支持argb1555吗
离线
请问 @xboot
https://github.com/xboot/xboot/tree/master/src/framework/romdisk/application
这些 demo 是基于 XUI 的吗?
离线
请问 @xboot
https://github.com/xboot/xboot/tree/master/src/framework/romdisk/application
这些 demo 是基于 XUI 的吗?
不是,这些demo是lua 框架的,非xui
离线
raspberryman 说:请问 @xboot
https://github.com/xboot/xboot/tree/master/src/framework/romdisk/application
这些 demo 是基于 XUI 的吗?
不是,这些demo是lua 框架的,非xui
怎么在xboot使用xui呢?
或者有没有lua绑定的demo?
最近编辑记录 cube (2021-07-16 11:12:59)
离线
如何使用xui,参考cmd-overview.c这个程序,用c写的。
lua没有绑定xui,两者完全独立的
离线
如何使用xui,参考cmd-overview.c这个程序,用c写的。
lua没有绑定xui,两者完全独立的
原来如此。那xboot有没有xui 绑定 lua的计划呢?
离线
暂时没有,lua期望能上更高级点的gui,声明式之类的,xui还是c写更简单点。
离线