2 Commits
8 changed files with 384 additions and 60 deletions
+5 -2
View File
@@ -5,7 +5,10 @@
#define MAIN_FRAME_TITTLE L"DLT Splitter —— Dev by : LuChiChick" #define MAIN_FRAME_TITTLE L"DLT Splitter —— Dev by : LuChiChick"
// 主窗体最小面积 // 主窗体最小面积
#define MAIN_FRAME_SIZE_WIDTH_MIN 350 #define MAIN_FRAME_SIZE_WIDTH_MIN 400
#define MAIN_FRAME_SIZE_HEIGHT_MIN 350 * 1.5 #define MAIN_FRAME_SIZE_HEIGHT_MIN 400 * 1.5
// 单次允许选择的最大文件数量
#define MAX_SINGLE_SELECT_FILE_COUNT 512
#endif #endif
+3
View File
@@ -13,6 +13,9 @@ extern "C"
#include "Type_Descriptions.hpp" #include "Type_Descriptions.hpp"
// 主窗体句柄
extern HWND Main_Window_hWnd;
// D3D11 相关 // D3D11 相关
extern ID3D11Device *g_pd3dDevice; // D3D11 设备句柄 extern ID3D11Device *g_pd3dDevice; // D3D11 设备句柄
extern ID3D11DeviceContext *g_pd3dDeviceContext; // D3D11 设备上下文句柄 extern ID3D11DeviceContext *g_pd3dDeviceContext; // D3D11 设备上下文句柄
+3
View File
@@ -17,6 +17,9 @@ namespace Widgets
// 工作流区域 // 工作流区域
void Workflow_Area(const ImVec2 &size = ImVec2(0, 0)); void Workflow_Area(const ImVec2 &size = ImVec2(0, 0));
// 控制面板区域
void Control_Panel(const ImVec2 &size = ImVec2(0, 0));
} }
#endif #endif
-21
View File
@@ -12,27 +12,6 @@ DLT_Log File;
// 命令行处理 // 命令行处理
void Pre_Command_Solve(void) void Pre_Command_Solve(void)
{ {
CSV_Table CSV;
CSV.insert_column_before((unsigned)0, "First insert");
CSV.append_column("Test column");
CSV.append_column("Test column 2");
CSV.append_column("Test column 3");
CSV.insert_column_after("Test column 2", "Test insert column");
CSV.insert_column_after("Test column 3", "Test insert column after End");
CSV.insert_column_before("Test column", "Test insert column before Head");
CSV.insert_column_before("Test column", "Test insert column before Origin");
CSV.insert_cell_before("Test column 2", 0, "0");
CSV.append_cell("Test column 2", "1");
CSV.insert_cell_before("Test column 2", 0, "Insert");
CSV.insert_cell_after("Test column 3", (unsigned)0, "Insert Cell");
CSV.append_cell("Test column 3", "1");
CSV.append_cell("Test column 3", "MyWawwww,dwadawdawd");
CSV.append_cell("Test column 3", "3");
CSV.export_to_file("new.csv");
// 获取命令行 // 获取命令行
int argc; int argc;
LPWSTR *argv; LPWSTR *argv;
+2
View File
@@ -405,5 +405,7 @@ DLT_Type::DLT_Err DLT_Log::export_to_csv(const char *file_name_str)
p_msg = p_msg->p_next; p_msg = p_msg->p_next;
} }
fclose(p_file);
return DLT_Type::DLT_ERROR_NONE; return DLT_Type::DLT_ERROR_NONE;
} }
+3
View File
@@ -1,5 +1,8 @@
#include "Global_Variables.hpp" #include "Global_Variables.hpp"
// 主窗体句柄
HWND Main_Window_hWnd = nullptr;
// D3D11 相关 // D3D11 相关
ID3D11Device *g_pd3dDevice = nullptr; // D3D11 设备句柄 ID3D11Device *g_pd3dDevice = nullptr; // D3D11 设备句柄
ID3D11DeviceContext *g_pd3dDeviceContext = nullptr; // D3D11 设备上下文句柄 ID3D11DeviceContext *g_pd3dDeviceContext = nullptr; // D3D11 设备上下文句柄
+43 -23
View File
@@ -12,6 +12,7 @@ extern "C"
#include "d3d11.h" #include "d3d11.h"
#include "tchar.h" #include "tchar.h"
#include "wchar.h" #include "wchar.h"
#include "locale.h"
} }
// 自定义头文件 // 自定义头文件
@@ -35,6 +36,9 @@ extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg
// 入口主函数 // 入口主函数
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{ {
// 设置本地化以支持特殊字符
setlocale(LC_ALL, ".UTF-8");
// 命令行前置处理 // 命令行前置处理
Pre_Command_Solve(); Pre_Command_Solve();
@@ -61,20 +65,20 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
RegisterClassExW(&wc); RegisterClassExW(&wc);
// 创建窗体 // 创建窗体
HWND hwnd = CreateWindowW(wc.lpszClassName, // 创建的窗体类名 Main_Window_hWnd = CreateWindowW(wc.lpszClassName, // 创建的窗体类名
MAIN_FRAME_TITTLE, // 窗体标题 MAIN_FRAME_TITTLE, // 窗体标题
WS_OVERLAPPEDWINDOW, // 窗体风格为标准可重叠的顶层窗口 WS_OVERLAPPEDWINDOW, // 窗体风格为标准可重叠的顶层窗口
100, // 起始坐标x (GetSystemMetrics(SM_CXSCREEN) - (MAIN_FRAME_SIZE_WIDTH_MIN * main_scale)) / 2, // 起始坐标x,设置为屏幕正中
100, // 起始坐标y (GetSystemMetrics(SM_CYSCREEN) - (MAIN_FRAME_SIZE_HEIGHT_MIN * main_scale)) / 2, // 起始坐标y,设置为屏幕正中
(int)(MAIN_FRAME_SIZE_WIDTH_MIN * main_scale), // 窗体长 (int)(MAIN_FRAME_SIZE_WIDTH_MIN * main_scale), // 窗体长
(int)(MAIN_FRAME_SIZE_HEIGHT_MIN * main_scale), // 窗体宽 (int)(MAIN_FRAME_SIZE_HEIGHT_MIN * main_scale), // 窗体宽
nullptr, // 父窗体句柄 nullptr, // 父窗体句柄
nullptr, // 菜单句柄 nullptr, // 菜单句柄
wc.hInstance, // 创建实例句柄 wc.hInstance, // 创建实例句柄
nullptr); // 额外的事件参数指针 nullptr); // 额外的事件参数指针
// 在窗体内创建 Direct 3D 设备 // 在窗体内创建 Direct 3D 设备
if (!CreateDeviceD3D(hwnd)) if (!CreateDeviceD3D(Main_Window_hWnd))
{ {
// 未创建完成时清理 Direct 3D 设备并清理窗体注册类 // 未创建完成时清理 Direct 3D 设备并清理窗体注册类
CleanupDeviceD3D(); CleanupDeviceD3D();
@@ -85,11 +89,11 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
} }
// 启用文件拖拽输入 // 启用文件拖拽输入
DragAcceptFiles(hwnd, TRUE); DragAcceptFiles(Main_Window_hWnd, TRUE);
// 显示窗体并强制更新一次窗体 // 显示窗体并强制更新一次窗体
ShowWindow(hwnd, SW_SHOWDEFAULT); ShowWindow(Main_Window_hWnd, SW_SHOWDEFAULT);
UpdateWindow(hwnd); UpdateWindow(Main_Window_hWnd);
// 检查版本 // 检查版本
IMGUI_CHECKVERSION(); IMGUI_CHECKVERSION();
@@ -133,7 +137,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
} }
// 初始化渲染器后端(Renderer backends) // 初始化渲染器后端(Renderer backends)
ImGui_ImplWin32_Init(hwnd); ImGui_ImplWin32_Init(Main_Window_hWnd);
ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext); ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext);
// 字体配置相关 // 字体配置相关
@@ -164,7 +168,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
{ {
// 非阻塞式获取所有窗体消息,Pick消息后从消息队列删除,并转译和派发消息 // 非阻塞式获取所有窗体消息,Pick消息后从消息队列删除,并转译和派发消息
MSG msg; MSG msg;
while (PeekMessage(&msg, nullptr, 0U, 0U, PM_REMOVE)) while (PeekMessageW(&msg, nullptr, 0U, 0U, PM_REMOVE))
{ {
TranslateMessage(&msg); // 转译 TranslateMessage(&msg); // 转译
DispatchMessageW(&msg); // 派发 DispatchMessageW(&msg); // 派发
@@ -236,7 +240,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
ImNodes::DestroyContext(); // 销毁 ImNodes 上下文 ImNodes::DestroyContext(); // 销毁 ImNodes 上下文
CleanupDeviceD3D(); // 清理 Direct 3D 设备 CleanupDeviceD3D(); // 清理 Direct 3D 设备
DestroyWindow(hwnd); // 销毁窗体 DestroyWindow(Main_Window_hWnd); // 销毁窗体
UnregisterClassW(wc.lpszClassName, wc.hInstance); // 取消窗体注册类 UnregisterClassW(wc.lpszClassName, wc.hInstance); // 取消窗体注册类
return 0; return 0;
@@ -342,6 +346,10 @@ LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
// 获取拖拽的文件总数 // 获取拖拽的文件总数
UINT fileCount = DragQueryFileW(hDrop, 0xFFFFFFFF, NULL, 0); UINT fileCount = DragQueryFileW(hDrop, 0xFFFFFFFF, NULL, 0);
// 非法输入检测
bool with_illegal_input = false;
bool with_duplicated_input = false;
// 添加到文件列表 // 添加到文件列表
for (UINT count = 0; count < fileCount; count++) for (UINT count = 0; count < fileCount; count++)
{ {
@@ -357,26 +365,31 @@ LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
int size_needed = WideCharToMultiByte(CP_UTF8, 0, filePath, -1, NULL, 0, NULL, NULL); int size_needed = WideCharToMultiByte(CP_UTF8, 0, filePath, -1, NULL, 0, NULL, NULL);
WideCharToMultiByte(CP_UTF8, 0, filePath, -1, file_path_multi_byte, size_needed, NULL, NULL); WideCharToMultiByte(CP_UTF8, 0, filePath, -1, file_path_multi_byte, size_needed, NULL, NULL);
/**
* @todo 文件类型筛选
*/
// 重复文件剔除 // 重复文件剔除
bool duplicated = false; bool duplicated = false;
for (Input_File_Node *p_file_node = input_dlt_file_list_head; p_file_node != nullptr; p_file_node = p_file_node->p_next) for (Input_File_Node *p_file_node = input_dlt_file_list_head; p_file_node != nullptr; p_file_node = p_file_node->p_next)
if (!strcmp(p_file_node->file_name_str, file_path_multi_byte)) if (!strcmp(p_file_node->file_name_str, file_path_multi_byte))
{ {
duplicated = true; duplicated = true;
with_duplicated_input = true;
break; break;
} }
if (duplicated) if (duplicated)
continue; continue;
// 文件类型后缀过滤
const char *p_extension_name = file_path_multi_byte + (strlen(file_path_multi_byte) - 4);
if (p_extension_name[0] != '.' || toupper(p_extension_name[1]) != 'D' || toupper(p_extension_name[2]) != 'L' || toupper(p_extension_name[3]) != 'T')
{
with_illegal_input = true;
continue;
}
// 开辟新文件节点 // 开辟新文件节点
Input_File_Node *p_new_file_node = (Input_File_Node *)malloc(sizeof(Input_File_Node)); Input_File_Node *p_new_file_node = (Input_File_Node *)malloc(sizeof(Input_File_Node));
p_new_file_node->file_name_str = (char *)malloc(strlen(file_path_multi_byte) + 1); p_new_file_node->file_name_str = (char *)malloc(strlen(file_path_multi_byte) + 1);
memset(p_new_file_node->file_name_str, '\0', strlen(file_path_multi_byte) + 1); memset(p_new_file_node->file_name_str, '\0', strlen(file_path_multi_byte) + 1);
memcpy(p_new_file_node->file_name_str, file_path_multi_byte, strlen(file_path_multi_byte)); memcpy(p_new_file_node->file_name_str, file_path_multi_byte, strlen(file_path_multi_byte) + 1);
p_new_file_node->p_next = nullptr; p_new_file_node->p_next = nullptr;
// 插入文件列表 // 插入文件列表
@@ -396,6 +409,13 @@ LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
// 释放拖拽资源(必须调用,否则内存泄漏) // 释放拖拽资源(必须调用,否则内存泄漏)
DragFinish(hDrop); DragFinish(hDrop);
if (with_duplicated_input)
MessageBoxW(hWnd, L"存在重复输入", L"", MB_OK | MB_ICONWARNING);
if (with_illegal_input)
MessageBoxW(hWnd, L"存在非法输入,仅支持 .dlt 文件", L"", MB_OK | MB_ICONWARNING);
return 0; return 0;
} }
case WM_SIZE: // 窗体大小变事件 case WM_SIZE: // 窗体大小变事件
+325 -14
View File
@@ -1,9 +1,17 @@
#include "UI_Layout.hpp" #include "UI_Layout.hpp"
#include "imgui_impl_win32.h"
#include "Global_Variables.hpp"
#include "Config.hpp"
#include "DLT_Utilities.hpp"
extern "C" extern "C"
{ {
#include "windows.h" #include "windows.h"
#include "stdio.h"
} }
#include "thread"
// UI布局 // UI布局
void UI_Layout() void UI_Layout()
{ {
@@ -31,16 +39,21 @@ void UI_Layout()
ImGui::Begin("Main Panel", NULL, window_flags); // 创建主面板 ImGui::Begin("Main Panel", NULL, window_flags); // 创建主面板
ImGui::PopStyleVar(2); // 退出绘制风格栈中的设置项 ImGui::PopStyleVar(2); // 退出绘制风格栈中的设置项
{ {
const ImGuiStyle &style = ImGui::GetStyle();
float main_scale = ImGui_ImplWin32_GetDpiScaleForMonitor(MonitorFromPoint(POINT{0, 0}, MONITOR_DEFAULTTOPRIMARY));
// 拖拽输入区域 // 拖拽输入区域
Widgets::Drag_Input_Area(ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().x / 2)); Widgets::Drag_Input_Area(ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().x / 2 > MAIN_FRAME_SIZE_WIDTH_MIN / 2 ? MAIN_FRAME_SIZE_WIDTH_MIN / 2 : ImGui::GetContentRegionAvail().x / 2));
// 文件列表组件 // 文件列表组件
Widgets::File_List_Area(); Widgets::File_List_Area(ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().y - (ImGui::GetTextLineHeightWithSpacing() + 20 * main_scale + style.ItemSpacing.y)));
// 导出文件
Widgets::Control_Panel(ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetTextLineHeightWithSpacing() + 20 * main_scale));
} }
ImGui::End(); ImGui::End();
ImGui::ShowDemoWindow(nullptr); // ImGui::ShowDemoWindow(nullptr);
} }
void Widgets::Drag_Input_Area(const ImVec2 &size) void Widgets::Drag_Input_Area(const ImVec2 &size)
@@ -51,7 +64,130 @@ void Widgets::Drag_Input_Area(const ImVec2 &size)
ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0f); ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 1.0f);
// 显示一个按钮,作为拖拽源 // 显示一个按钮,作为拖拽源
static bool pressed_hover = false; static bool pressed_hover = false;
ImGui::Button(pressed_hover ? u8"松开左键以添加" : u8"拖拽文件到此处", ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().y));
if (ImGui::Button(pressed_hover ? u8"松开左键以添加" : u8"单击选择文件或拖拽文件到此处", ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().y)))
{
OPENFILENAMEW ofn; // common dialog box structure
wchar_t szFile[MAX_PATH * MAX_SINGLE_SELECT_FILE_COUNT] = {L'\0'}; // buffer for file name
// Initialize OPENFILENAME
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(ofn); // 结构体大小
ofn.hwndOwner = Main_Window_hWnd; // 对话框唤起窗体
ofn.lpstrFile = szFile; // 输出缓冲区
ofn.nMaxFile = sizeof(szFile); // 缓冲区大小
ofn.lpstrFilter = L"(.dlt)\0*.dlt\0"; // 文件格式筛选器
ofn.nFilterIndex = 1; // 默认选择的筛选器
// 文件路径必须存在 | 文件本身必须存在 | 允许多文件选择 | 使用资源管理器
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST | OFN_ALLOWMULTISELECT | OFN_EXPLORER;
// Display the Open dialog box.
// 处理文件输入
if (GetOpenFileNameW(&ofn))
{
// 重复输入检测
bool with_duplicated_input = false;
wchar_t *p_first_str = ofn.lpstrFile;
// 单文件
if ((p_first_str[wcslen(p_first_str)] == L'\0') && (p_first_str[wcslen(p_first_str) + 1] == L'\0'))
{
char file_path_multi_byte[MAX_PATH] = {'\0'};
int size_needed = WideCharToMultiByte(CP_UTF8, 0, p_first_str, -1, NULL, 0, NULL, NULL);
WideCharToMultiByte(CP_UTF8, 0, p_first_str, -1, file_path_multi_byte, size_needed, NULL, NULL);
for (Input_File_Node *p_file_node = input_dlt_file_list_head; p_file_node != nullptr; p_file_node = p_file_node->p_next)
if (!strcmp(p_file_node->file_name_str, file_path_multi_byte))
{
with_duplicated_input = true;
break;
}
if (with_duplicated_input)
{
MessageBoxW(Main_Window_hWnd, L"存在重复输入", L"", MB_OK | MB_ICONWARNING);
}
else
{
// 开辟新文件节点
Input_File_Node *p_new_file_node = (Input_File_Node *)malloc(sizeof(Input_File_Node));
p_new_file_node->file_name_str = (char *)malloc(strlen(file_path_multi_byte) + 1);
memset(p_new_file_node->file_name_str, '\0', strlen(file_path_multi_byte) + 1);
memcpy(p_new_file_node->file_name_str, file_path_multi_byte, strlen(file_path_multi_byte) + 1);
p_new_file_node->p_next = nullptr;
// 插入文件列表
if (input_dlt_file_list_head == nullptr)
input_dlt_file_list_head = p_new_file_node;
else
{
Input_File_Node *p_target_node = input_dlt_file_list_head;
for (size_t count = 1; count < input_dlt_file_count; count++)
p_target_node = p_target_node->p_next;
p_target_node->p_next = p_new_file_node;
}
input_dlt_file_count++;
}
}
else
{
// 多文件输入时
char public_path_multi_byte[MAX_PATH] = {'\0'};
int size_needed = WideCharToMultiByte(CP_UTF8, 0, p_first_str, -1, NULL, 0, NULL, NULL);
WideCharToMultiByte(CP_UTF8, 0, p_first_str, -1, public_path_multi_byte, size_needed, NULL, NULL);
for (wchar_t *p_file_name_str = ofn.lpstrFile + wcslen(ofn.lpstrFile) + 1; *p_file_name_str != L'\0'; p_file_name_str += (wcslen(p_file_name_str) + 1))
{
char file_name_multi_byte[MAX_PATH] = {'\0'};
char file_path_multi_byte[MAX_PATH] = {'\0'};
int size_needed = WideCharToMultiByte(CP_UTF8, 0, p_file_name_str, -1, NULL, 0, NULL, NULL);
WideCharToMultiByte(CP_UTF8, 0, p_file_name_str, -1, file_name_multi_byte, size_needed, NULL, NULL);
// 拼接完整路径
sprintf(file_path_multi_byte, "%s\\%s", public_path_multi_byte, file_name_multi_byte);
for (Input_File_Node *p_file_node = input_dlt_file_list_head; p_file_node != nullptr; p_file_node = p_file_node->p_next)
if (!strcmp(p_file_node->file_name_str, file_path_multi_byte))
{
with_duplicated_input = true;
break;
}
if (with_duplicated_input)
continue;
// 开辟新文件节点
Input_File_Node *p_new_file_node = (Input_File_Node *)malloc(sizeof(Input_File_Node));
p_new_file_node->file_name_str = (char *)malloc(strlen(file_path_multi_byte) + 1);
memset(p_new_file_node->file_name_str, '\0', strlen(file_path_multi_byte) + 1);
memcpy(p_new_file_node->file_name_str, file_path_multi_byte, strlen(file_path_multi_byte) + 1);
p_new_file_node->p_next = nullptr;
// 插入文件列表
if (input_dlt_file_list_head == nullptr)
input_dlt_file_list_head = p_new_file_node;
else
{
Input_File_Node *p_target_node = input_dlt_file_list_head;
for (size_t count = 1; count < input_dlt_file_count; count++)
p_target_node = p_target_node->p_next;
p_target_node->p_next = p_new_file_node;
}
input_dlt_file_count++;
}
if (with_duplicated_input)
{
MessageBoxW(Main_Window_hWnd, L"存在重复输入", L"", MB_OK);
}
}
}
}
// 仅在外部拖拽入内时触发,内部拖拽不触发 // 仅在外部拖拽入内时触发,内部拖拽不触发
pressed_hover = (ImGui::IsItemHovered() && (GetAsyncKeyState(VK_LBUTTON) < 0) && (!ImGui::IsMouseDown(ImGuiMouseButton_Left))); pressed_hover = (ImGui::IsItemHovered() && (GetAsyncKeyState(VK_LBUTTON) < 0) && (!ImGui::IsMouseDown(ImGuiMouseButton_Left)));
@@ -63,22 +199,52 @@ void Widgets::Drag_Input_Area(const ImVec2 &size)
void Widgets::File_List_Area(const ImVec2 &size) void Widgets::File_List_Area(const ImVec2 &size)
{ {
ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 10.0f); ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 10.0f);
ImGui::BeginChild("File_List_Area", ImVec2(size.x, size.y), ImGuiChildFlags_Border); ImGui::BeginChild("File_List_Area_Wrapper", size, ImGuiChildFlags_Border);
ImGui::PopStyleVar(); ImGui::PopStyleVar();
{ {
ImGui::Dummy(ImVec2(ImGui::GetContentRegionAvail().x - 30, ImGui::GetContentRegionAvail().y)); int element_id = 0;
Input_File_Node *p_file_node_pre = nullptr;
Input_File_Node *p_file_node = input_dlt_file_list_head;
for (size_t count = 0; count < input_dlt_file_count; count++)
{
ImGui::PushID(element_id++);
const float spacing = 4; // 点击了删除
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(spacing, spacing)); if (ImGui::Button("X"))
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 10.0f); // 绘制风格栈压入窗口圆角为10 {
ImGui::PushStyleVar(ImGuiStyleVar_GrabRounding, 10.0f); // 抓取条圆角 if (p_file_node == input_dlt_file_list_head)
static int int_value = 0; {
ImGui::SameLine(); free(input_dlt_file_list_head->file_name_str);
input_dlt_file_list_head = input_dlt_file_list_head->p_next;
free(p_file_node);
p_file_node = input_dlt_file_list_head;
}
else
{
p_file_node_pre->p_next = p_file_node->p_next;
free(p_file_node->file_name_str);
free(p_file_node);
}
input_dlt_file_count--;
count--;
ImGui::PopID();
continue;
}
ImGui::VSliderInt("int", ImVec2(30, ImGui::GetContentRegionAvail().y), &int_value, 0, 5); ImGui::SameLine();
ImGui::PopStyleVar(3); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
ImGui::InputText("##Text_Show", p_file_node->file_name_str, strlen(p_file_node->file_name_str) + 1, ImGuiInputTextFlags_ElideLeft | ImGuiInputTextFlags_ReadOnly | ImGuiInputTextFlags_NoUndoRedo);
ImGui::PopID();
p_file_node = p_file_node->p_next;
if (count == 0)
p_file_node_pre = input_dlt_file_list_head;
else
p_file_node_pre = p_file_node_pre->p_next;
}
} }
ImGui::EndChild(); ImGui::EndChild();
} }
@@ -105,4 +271,149 @@ void Widgets::Workflow_Area(const ImVec2 &size)
ImNodes::EndNode(); ImNodes::EndNode();
} }
ImNodes::EndNodeEditor(); ImNodes::EndNodeEditor();
}
void Widgets::Control_Panel(const ImVec2 &size)
{
ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 10.0f);
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
ImGui::BeginChild("Control_Panel", size, ImGuiChildFlags_Border);
ImGui::PopStyleVar(2);
{
static bool export_confirmed = false;
static bool export_task_created = false;
static char export_file_path_str[MAX_PATH] = {'\0'};
if (!export_confirmed)
{
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 10.0f);
if (ImGui::Button(u8"导出", ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().y)))
{
if (input_dlt_file_list_head == nullptr)
MessageBoxW(Main_Window_hWnd, L"需要至少输入一个文件", L"", MB_OK | MB_ICONERROR);
else
{
OPENFILENAMEW ofn; // common dialog box structure
static wchar_t szFile[MAX_PATH] = {L'\0'}; // buffer for file name
// Initialize OPENFILENAME
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(ofn); // 结构体大小
ofn.hwndOwner = Main_Window_hWnd; // 对话框唤起窗体
ofn.lpstrFile = szFile; // 输出缓冲区
ofn.nMaxFile = sizeof(szFile); // 缓冲区大小
ofn.lpstrFilter = L"(.csv)\0*.csv\0"; // 文件格式筛选器
ofn.nFilterIndex = 1; // 默认选择的筛选器
// 文件路径必须存在 | 文件本身必须存在 | 使用资源管理器
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST | OFN_EXPLORER;
if (GetSaveFileNameW(&ofn))
{
// 提取文件路径
memset(export_file_path_str, '\0', sizeof(export_file_path_str));
int size_needed = WideCharToMultiByte(CP_UTF8, 0, szFile, -1, NULL, 0, NULL, NULL);
WideCharToMultiByte(CP_UTF8, 0, szFile, -1, export_file_path_str, size_needed, NULL, NULL);
wchar_t File_Name[MAX_PATH] = {L'\0'};
wchar_t *p_str_end = szFile + wcslen(szFile);
// 处理后缀
char *p_extension_name = export_file_path_str + (strlen(export_file_path_str) - 4);
if (p_extension_name[0] != '.' || toupper(p_extension_name[1]) != 'C' || toupper(p_extension_name[2]) != 'S' || toupper(p_extension_name[3]) != 'V')
{
p_extension_name += 4;
p_extension_name[0] = '.';
p_extension_name[1] = 'c';
p_extension_name[2] = 's';
p_extension_name[3] = 'v';
p_str_end[0] = L'.';
p_str_end[1] = L'c';
p_str_end[2] = L's';
p_str_end[3] = L'v';
}
while (p_str_end != szFile && *(p_str_end - 1) != L'\\')
p_str_end--;
size_t len = wcslen(p_str_end);
for (size_t count = 0; count < len; count++, p_str_end++)
File_Name[count] = *p_str_end;
memcpy(szFile, File_Name, sizeof(File_Name));
// 判定是否覆盖文件
FILE *p_file = fopen(export_file_path_str, "rb");
if (p_file != nullptr)
{
fclose(p_file);
if (MessageBoxW(Main_Window_hWnd, L"文件已存在,是否覆盖?", L"", MB_YESNO | MB_DEFBUTTON2 | MB_ICONWARNING) == IDYES)
export_confirmed = true;
}
else
export_confirmed = true;
}
}
}
ImGui::PopStyleVar();
}
else
{
// 创建导出任务
if (!export_task_created)
{
export_task_created = true;
// 执行导出任务的线程
std::thread export_thread(
[&]()
{
DLT_Log Log;
Input_File_Node *p_file_list = input_dlt_file_list_head;
DLT_Type::DLT_Err err;
while (p_file_list != nullptr)
{
err = Log.load_from_file(p_file_list->file_name_str);
if (err != DLT_Type::DLT_ERROR_NONE)
break;
p_file_list = p_file_list->p_next;
}
if (err != DLT_Type::DLT_ERROR_NONE)
{
switch (err)
{
case DLT_Type::DLT_ERROR_FILE_OPEN_FAILED: // 文件打开失败
MessageBoxW(Main_Window_hWnd, L"文件打开失败,检查路径是否存在特殊字符", L"", MB_OK | MB_ICONERROR);
break;
default:
MessageBoxW(Main_Window_hWnd, L"文件加载失败", L"", MB_OK | MB_ICONERROR);
}
}
else
{
err = Log.export_to_csv(export_file_path_str);
if (err == DLT_Type::DLT_ERROR_NONE)
MessageBoxW(Main_Window_hWnd, L"导出完成", L"", MB_OK);
else
MessageBoxW(Main_Window_hWnd, L"导出失败,检查文件占用", L"", MB_OK | MB_ICONERROR);
}
export_confirmed = false;
export_task_created = false;
});
// 分离线程
export_thread.detach();
}
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 12.5f);
ImGui::ProgressBar(-1.0f * (float)ImGui::GetTime(), ImVec2(ImGui::GetContentRegionAvail().x, ImGui::GetContentRegionAvail().y), u8"正在导出...");
ImGui::PopStyleVar();
}
}
ImGui::EndChild();
} }