Liu

Results 75 comments of Liu

Adding GPU backend support to LCUI's graphics library is expensive, so I plan to make LCUI support drawing using other open source graphics libraries. I've improved the graphics library of...

你是说文档里的例子?有部分示例代码是直接写文档里的,没时间建项目一个个测试。

现有的设计没提供手动创建和管理多窗口的方法,只提供了个无缝显示模式,也就是给根部件里的每个子部件单独创建窗口,你试试? ```c LCUIDisplay_SetMode(LCUI_DMODE_SEAMLESS); ``` 这块功能的代码很久没更新了,我不确定是否还有效果。 3.0 版本对这块做了调整,可手动管理窗口,示例代码: ```c #include #include #include ... ui_widget_t *widget; app_window_t *window; lcui_init(); widget = ui_create_widget(NULL); window = app_window_create("窗口", 0, 0, 800, 600); // 连接部件和窗口 ui_server_connect(widget,...

> @lc-soft , I can take a look at this. Would it make more sense to have this PR build upon the solution to #191, which I've already made a...

@jduo The description of this issue needs to be updated. I plan to redesign the requirements of this feature in the future, so please do not consider working on this...

@jduo @jananiram The description of this issue has been updated, please re-evaluate its workload, and then update the bounty request. ![image](https://user-images.githubusercontent.com/1730073/86726369-14b32e00-c05d-11ea-8b55-332cb07fd1c5.png)

@jduo I think issue #192 is much simpler than issue #210, because the workload of issue #210 is more than 10 times that of issue #192, but from your bounty...

@jduo I have increased the bonus from $35 to $185.10, and you can start doing it.

There are three fees in payment, reward and withdrawal: stripe fee (3.74%), service fee (10%), transaction fee (3.6%), I think the fees charged are too much.

> 1. Should the number of elements in the chart be fixed? Should it be configurable? Should it be dynamic based on the size of the window? Do you mean...