-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgressDialog.h
More file actions
63 lines (48 loc) · 1.38 KB
/
Copy pathProgressDialog.h
File metadata and controls
63 lines (48 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma once
#include <windows.h>
#include <string>
#include <atomic>
#include <commctrl.h>
#pragma comment(lib, "comctl32.lib")
// 自定义消息
#define WM_UPDATE_PROGRESS (WM_USER + 1)
// 进度信息结构
struct ProgressInfo {
ULONGLONG current;
ULONGLONG total;
std::wstring* message;
};
// 进度对话框类 - 模态对话框
class ProgressDialog
{
public:
ProgressDialog();
~ProgressDialog();
// 创建进度对话框(在当前线程)
bool Create(HWND parent);
// 关闭进度对话框
void Close();
// 更新进度(线程安全)
void UpdateProgress(ULONGLONG current, ULONGLONG total, const std::wstring& message);
// 检查是否被取消
bool IsCancelled() const { return m_cancelled; }
// 获取对话框句柄
HWND GetHandle() const { return m_hDlg; }
// 处理消息(需要在工作线程中定期调用)
void ProcessMessages();
private:
HWND m_hDlg;
HWND m_hParent;
HWND m_hProgressBar;
HWND m_hStatusText;
HWND m_hDetailText;
HWND m_hCancelButton;
std::atomic<bool> m_cancelled;
std::atomic<bool> m_created;
// 窗口过程
static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
// 初始化对话框
void InitDialog();
// 格式化文件大小
static std::wstring FormatFileSize(ULONGLONG size);
};