-
Notifications
You must be signed in to change notification settings - Fork 4
/
WaitingForm.cs
390 lines (343 loc) · 14.6 KB
/
WaitingForm.cs
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Runtime.InteropServices;
namespace KMZ_Viewer
{
public class WaitingBoxForm
{
private class WaitingForm : Form
{
private const int CP_NOCLOSE_BUTTON = 0x200;
protected override CreateParams CreateParams
{
get
{
CreateParams myCp = base.CreateParams;
myCp.ClassStyle = myCp.ClassStyle | CP_NOCLOSE_BUTTON;
return myCp;
}
}
public WaitingForm()
{
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.progressBar1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 2);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 5F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(492, 145);
this.tableLayoutPanel1.TabIndex = 0;
//
// label1
//
this.label1.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(209, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(73, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Please Wait...";
//
// progressBar1
//
this.progressBar1.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.progressBar1.Location = new System.Drawing.Point(2, 2);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(490, 23);
this.progressBar1.TabIndex = 2;
//
// WaitingForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.StartPosition = FormStartPosition.CenterParent;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(492, 55);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "WaitingForm";
this.Text = "Working in the background";
this.Load += new System.EventHandler(this.WaitingForm_Load);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ShowInTaskbar = false;
this.ResumeLayout(false);
}
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Label label1;
private void WaitingForm_Load(object sender, EventArgs e)
{
progressBar1.Style = ProgressBarStyle.Marquee;
try
{
this.BringToFront();
if (this.StartPosition != FormStartPosition.Manual)
this.CenterToScreen();
}
catch { };
}
internal string Label
{
get
{
return label1.Text;
}
set
{
label1.Text = value;
}
}
}
private Thread showThread;
private bool showForm = false;
private string formCaption = "Working..";
private string formText = "Please wait...";
private Point parentCenter;
private Form parent;
private IntPtr parentWnd = IntPtr.Zero;
private bool isModal = true;
public WaitingBoxForm() { }
public WaitingBoxForm(Form parent)
{
if (parent != null)
{
this.parentWnd = parent.Handle;
this.parent = parent;
this.parentCenter = new Point(parent.DesktopLocation.X + (int)parent.Width / 2, parent.DesktopLocation.Y + (int)parent.Height / 2);
};
}
public WaitingBoxForm(string Caption, string Text)
{
this.formCaption = Caption;
this.formText = Text;
}
public WaitingBoxForm(string Caption, string Text, Form parent)
{
this.formCaption = Caption;
this.formText = Text;
if (parent != null)
{
this.parentWnd = parent.Handle;
this.parent = parent;
this.parentCenter = new Point(parent.DesktopLocation.X + (int)parent.Width / 2, parent.DesktopLocation.Y + (int)parent.Height / 2);
};
}
public string Caption
{
get
{
return this.formCaption;
}
set
{
this.formCaption = value;
}
}
public string Text
{
get
{
return this.formText;
}
set
{
this.formText = value;
}
}
public bool Modal
{
get
{
return isModal;
}
set
{
isModal = value;
}
}
public bool Activated
{
get { return showForm; }
}
private bool ApplicationIsActive(out IntPtr foregroundWindow)
{
foregroundWindow = GetForegroundWindow();
if (foregroundWindow == IntPtr.Zero) return false;
int foregroundWindowProcessID;
GetWindowThreadProcessId(foregroundWindow, out foregroundWindowProcessID);
return foregroundWindowProcessID == System.Diagnostics.Process.GetCurrentProcess().Id;
}
[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
private static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern int GetWindowThreadProcessId(IntPtr handle, out int processId);
[DllImport("user32.dll")]
private static extern bool SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll")]
private static extern int GetWindowTextLength(IntPtr hWnd);
[DllImport("user32.dll")]
private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
[DllImport("user32.dll")]
private static extern UInt32 GetWindowLong(IntPtr hWnd, int index);
[DllImport("user32.dll")]
private static extern IntPtr GetParent(IntPtr hWnd);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);
[DllImport("user32.dll", ExactSpelling = true)]
static extern IntPtr GetAncestor(IntPtr hwnd, uint flags);
private void ShowThread()
{
WaitingForm waitingform = new WaitingForm();
waitingform.Text = this.formCaption;
waitingform.Label = this.formText;
IntPtr mainWindowHandle = System.Diagnostics.Process.GetCurrentProcess().MainWindowHandle;
if (this.parentCenter != null)
{
waitingform.StartPosition = FormStartPosition.Manual;
waitingform.Location = new Point(parentCenter.X - waitingform.Width / 2, parentCenter.Y - waitingform.Height / 2);
};
waitingform.Show();
waitingform.Refresh();
while (showForm)
{
Application.DoEvents();
if (waitingform.Text != this.formCaption) waitingform.Text = this.formCaption;
if (waitingform.Label != this.formText) waitingform.Label = this.formText;
waitingform.Refresh();
IntPtr topw;
if (isModal && ApplicationIsActive(out topw))
{
bool skip = topw == waitingform.Handle;
if ((!skip) && (topw != mainWindowHandle))
{
string clnm = GetWindowClass(topw);
if (clnm.StartsWith("#")) skip = true; // Dialog window on top
if (!skip)
{
IntPtr rHwd = GetAncestor(topw, 3); // Top Window through childs
if ((mainWindowHandle != IntPtr.Zero) && (rHwd == IntPtr.Zero)) skip = true; // Not Application, it may be .Net Error Window
if ((mainWindowHandle != IntPtr.Zero) && (rHwd == topw)) skip = true; // Not Our Application, it may be .Net Error Window
};
if (!skip)
{
IntPtr pHwd = GetParent(topw);
if ((pHwd == IntPtr.Zero) && (parentWnd != IntPtr.Zero) && (topw != parentWnd) && (topw != mainWindowHandle)
&& (GetWindowText(topw) == waitingform.Text))
skip = true; // .Net Standard Error Window
};
};
if (!skip)
{
waitingform.BringToFront();
waitingform.Activate();
waitingform.Focus();
waitingform.Refresh();
};
};
System.Threading.Thread.Sleep(50);
};
waitingform.Close();
waitingform.Dispose();
waitingform = null;
}
private static string GetWindowText(IntPtr hWnd)
{
int length = GetWindowTextLength(hWnd);
StringBuilder text = new StringBuilder(length + 1);
GetWindowText(hWnd, text, text.Capacity);
return text.ToString();
}
private static string GetWindowClass(IntPtr hWnd)
{
StringBuilder text = new StringBuilder(256);
GetClassName(hWnd, text, text.Capacity);
return text.ToString();
}
private static bool GetWindowIsTool(IntPtr hWnd)
{
// https://docs.microsoft.com/en-us/windows/win32/winmsg/window-styles
int GWL_STYLE = -16;
uint WS_SYSMENU = 0x00080000;
uint WS_BORDER = 0x00800000;
uint WS_CHILD = 0x40000000;
uint WS_POPUP = 0x80000000;
uint WS_POPUPWINDOW = WS_POPUP | WS_BORDER | WS_SYSMENU;
// https://docs.microsoft.com/en-us/windows/win32/winmsg/extended-window-styles
int GWL_EXSTYLE = -20;
uint WS_EX_TOOLWINDOW = 0x00000080;
uint res = GetWindowLong(hWnd, GWL_EXSTYLE);
return (res & WS_EX_TOOLWINDOW) > 0;
}
public void Show()
{
if (this.showThread != null)
{
this.showForm = false;
this.showThread.Join();
};
if (this.parent != null) this.parentCenter = new Point(parent.DesktopLocation.X + (int)parent.Width / 2, parent.DesktopLocation.Y + (int)parent.Height / 2);
this.showThread = new Thread(new ThreadStart(ShowThread));
showForm = true;
showThread.Start();
}
public void Show(Form parent)
{
this.parent = parent;
if (parent != null)
this.parentCenter = new Point(parent.DesktopLocation.X + (int)parent.Width / 2, parent.DesktopLocation.Y + (int)parent.Height / 2);
else
this.parentCenter = Point.Empty;
this.Show();
}
public void Show(string Caption, string Text)
{
this.formCaption = Caption;
this.formText = Text;
if (!this.Activated)
this.Show();
}
public void Show(string Caption, string Text, Form parent)
{
this.formCaption = Caption;
this.formText = Text;
this.parent = parent;
if (parent != null)
this.parentCenter = new Point(parent.DesktopLocation.X + (int)parent.Width / 2, parent.DesktopLocation.Y + (int)parent.Height / 2);
else
this.parentCenter = Point.Empty;
this.Show();
}
public void Hide()
{
this.showForm = false;
if (this.showThread != null) this.showThread.Join();
this.showThread = null;
if (this.parent != null)
{
this.parent.BringToFront();
this.parent.Activate();
this.parent.Focus();
this.parent.Refresh();
};
}
}
}