Demo widgets and layout for drag drop and file list

This commit is contained in:
2025-11-27 21:57:17 +08:00
parent 0814aaaf17
commit 38b498e841
2 changed files with 85 additions and 20 deletions
+12
View File
@@ -6,5 +6,17 @@
// UI布局
void UI_Layout();
// 组件
namespace Widgets
{
// 拖拽输入区域
void Drag_Input_Area(const ImVec2 &size = ImVec2(0, 0));
// 文件列表区域
void File_List_Area(const ImVec2 &size = ImVec2(0, 0));
// 工作流区域
void Workflow_Area(const ImVec2 &size = ImVec2(0, 0));
}
#endif