-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.cs
351 lines (303 loc) · 14 KB
/
MainForm.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
using System;
using System.Reflection;
using System.Threading;
using System.Windows.Forms;
namespace Snapper
{
public partial class MainForm : Form
{
private enum KeyModifier : int
{
None = 0,
Alt = 1,
Control = 2,
Shift = 4,
WinKey = 8
}
private readonly int HOTKEY_MODIFIER = KeyModifier.WinKey.GetHashCode() | KeyModifier.Alt.GetHashCode();
private readonly int TOP_HOTKEY_KEY = Keys.Up.GetHashCode();
private const int TOP_HOTKEY_ID = 0;
private readonly int BOTTOM_HOTKEY_KEY = Keys.Down.GetHashCode();
private const int BOTTOM_HOTKEY_ID = 1;
private Mutex singletonMutex = new Mutex(false, "polyomino.xyz Snapper SingletonApplicationWarning");
private bool aquiredSingletonMutex = false;
/// <summary>
/// Register hotkeys with the system.
/// </summary>
private void RegisterKeys()
{
Native.RegisterHotKey(this.Handle, TOP_HOTKEY_ID, HOTKEY_MODIFIER, TOP_HOTKEY_KEY);
Native.RegisterHotKey(this.Handle, BOTTOM_HOTKEY_ID, HOTKEY_MODIFIER, BOTTOM_HOTKEY_KEY);
}
/// <summary>
/// Unregister hotkeys with the system.
/// </summary>
private void UnRegisterKeys()
{
Native.UnregisterHotKey(this.Handle, TOP_HOTKEY_ID);
Native.UnregisterHotKey(this.Handle, BOTTOM_HOTKEY_ID);
}
/// <summary>
/// Main form, registers hotkeys on instantiation.
/// </summary>
public MainForm()
{
InitializeComponent();
SingletonCheck();
HandleFirstLaunch();
SetVersionText();
RegisterKeys();
}
/// <summary>
/// Set the version label to the assembly version before display.
/// </summary>
private void SetVersionText()
{
lblVersion.Text = Assembly.GetEntryAssembly().GetName().Version.ToString();
}
/// <summary>
/// Ensure that only one copy of the application is running at a time.
/// </summary>
private void SingletonCheck()
{
if (singletonMutex.WaitOne(TimeSpan.Zero))
{
aquiredSingletonMutex = true;
}
else
{
MessageBox.Show("Only one instance of this application should really be running at a time.", "This application is already running!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
/// <summary>
/// Handle displaying an info box on first launch (and only on first launch).
/// </summary>
private void HandleFirstLaunch()
{
// If settings require an upgrade, as detailed by the "Upgrade Required" settings:
if (Properties.Settings.Default.UpgradeRequired)
{
// Do upgrade, and then save.
Properties.Settings.Default.Upgrade();
Properties.Settings.Default.UpgradeRequired = false;
Properties.Settings.Default.Save();
}
// If this is the first launch of the application:
if (Properties.Settings.Default.FirstLaunch)
{
// Display a helpful message box to tell people it's in their tray.
MessageBox.Show("Snapper! is running in the background.\r\n" +
"You can open it from your system tray.\r\n" +
"(You won't see this message again.)", "Snapper! is running in the background.",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
Properties.Settings.Default.FirstLaunch = false;
Properties.Settings.Default.Save();
}
}
/// <summary>
/// Get window border width on left or right.
/// </summary>
/// <param name="window">HWND handle of the window to get the border of.</param>
/// <returns>The width of the window's left or right border in pixels.</returns>
private int GetWindowXBorder(IntPtr window)
{
Native.RECT clientRect = new Native.RECT();
Native.RECT windowRect = new Native.RECT();
Native.GetClientRect(window, out clientRect);
Native.GetWindowRect(window, out windowRect);
return ((windowRect.Right - windowRect.Left) - clientRect.Right) / 2;
}
/// <summary>
/// Get window border height of the top border.
/// </summary>
/// <param name="window">HWND handle of the window to get the border of.</param>
/// <returns>The height of the window's top border in pixels.</returns>
private int GetWindowYBorder(IntPtr window)
{
Native.RECT clientRect = new Native.RECT();
Native.RECT windowRect = new Native.RECT();
Native.GetClientRect(window, out clientRect);
Native.GetWindowRect(window, out windowRect);
return ((windowRect.Bottom - windowRect.Top) - clientRect.Bottom) / 2;
}
/// <summary>
/// Get the size the specified window should be to take up half the working area of the screen it is on's height.
/// </summary>
/// <param name="window">HWND handle of the window to get the half screen height of.</param>
/// <returns>The calculated height in pixels.</returns>
private int GetHalfScreenWindowHeight(IntPtr window)
{
Screen windowScreen = Screen.FromHandle(window);
return windowScreen.WorkingArea.Height / 2 + GetWindowYBorder(window) * 2;
}
/// <summary>
/// Set the position and size of a window.
/// </summary>
/// <param name="window">HWND handle of the window to set the position of.</param>
/// <param name="x">The new x position of the top left hand corner.</param>
/// <param name="y">The new y position of the top left hand corner.</param>
/// <param name="width">The new width of the window.</param>
/// <param name="height">The new height of the window.</param>
/// <param name="async">Whether the resize should be done asynchronously or not.</param>
private void SetWindowPosition(IntPtr window, int x, int y, int width, int height, bool async)
{
Native.SetWindowPos(window, IntPtr.Zero, x, y, width, height, Native.SWP_NOCOPYBITS | (async ? Native.SWP_ASYNCWINDOWPOS : 0x0));
}
/// <summary>
/// Set the position and size of a window.
/// </summary>
/// <param name="window">HWND handle of the window to set the position of.</param>
/// <param name="x">The new x position of the top left hand corner.</param>
/// <param name="y">The new y position of the top left hand corner.</param>
/// <param name="width">The new width of the window.</param>
/// <param name="height">The new height of the window.</param>
private void SetWindowPosition(IntPtr window, int x, int y, int width, int height)
{
SetWindowPosition(window, x, y, width, height, false);
}
/// <summary>
/// Snap the currently focussed window to the top of the screen.
/// </summary>
private void SnapTop()
{
// Get current window and the screen it's on.
IntPtr focussedWindow = Native.GetForegroundWindow();
Screen windowScreen = Screen.FromHandle(focussedWindow);
// Windows gets confused if you move a maximised window, interestingly breaking the maximise button.
// To avoid any such issues we restore the window before moving it.
Native.ShowWindow(focussedWindow, Native.SW_RESTORE);
// Get window x border.
int windowBorderX = GetWindowXBorder(focussedWindow);
// Calculate new window size.
int newWindowWidth = windowScreen.WorkingArea.Width + windowBorderX * 2;
int newWindowHeight = GetHalfScreenWindowHeight(focussedWindow);
// Calculate new window position.
int newWindowTopLeftCornerX = windowScreen.WorkingArea.Location.X - windowBorderX;
int newWindowTopLeftCornerY = windowScreen.WorkingArea.Location.Y;
// Move window.
SetWindowPosition(focussedWindow, newWindowTopLeftCornerX, newWindowTopLeftCornerY, newWindowWidth, newWindowHeight);
Native.POINT actualBottomPosition = new Native.POINT(newWindowTopLeftCornerX, newWindowTopLeftCornerY + newWindowHeight);
Native.ScreenToClient(focussedWindow, ref actualBottomPosition);
// Some applications have more complex borders, this second check catches that and resizes the window again.
if (actualBottomPosition.Y != newWindowHeight)
{
newWindowHeight = actualBottomPosition.Y;
SetWindowPosition(focussedWindow, newWindowTopLeftCornerX, newWindowTopLeftCornerY, newWindowWidth, newWindowHeight, true);
}
}
/// <summary>
/// Snap the currently focussed window to the bottom of the screen.
/// </summary>
private void SnapBottom()
{
// Get current window and the screen it's on.
IntPtr focussedWindow = Native.GetForegroundWindow();
Screen windowScreen = Screen.FromHandle(focussedWindow);
// Windows gets confused if you move a maximised window, interestingly breaking the maximise button.
// To avoid any such issues we restore the window before moving it.
Native.ShowWindow(focussedWindow, Native.SW_RESTORE);
// Get window x border.
int windowBorderX = GetWindowXBorder(focussedWindow);
// Calculate new window size.
int newWindowWidth = windowScreen.WorkingArea.Width + windowBorderX * 2;
int newWindowHeight = GetHalfScreenWindowHeight(focussedWindow);
// Calculate new window position.
int newWindowTopLeftCornerX = windowScreen.WorkingArea.Location.X - windowBorderX;
int newWindowTopLeftCornerY = windowScreen.WorkingArea.Bottom - newWindowHeight + GetWindowYBorder(focussedWindow) * 2;
// Move window.
SetWindowPosition(focussedWindow, newWindowTopLeftCornerX, newWindowTopLeftCornerY, newWindowWidth, newWindowHeight);
Native.POINT actualBottomPosition = new Native.POINT(newWindowTopLeftCornerX, newWindowTopLeftCornerY + newWindowHeight);
Native.ScreenToClient(focussedWindow, ref actualBottomPosition);
// Some applications have more complex borders, this second check catches that and resizes the window again.
if (actualBottomPosition.Y != newWindowHeight)
{
newWindowHeight = actualBottomPosition.Y;
SetWindowPosition(focussedWindow, newWindowTopLeftCornerX, newWindowTopLeftCornerY, newWindowWidth, newWindowHeight, true);
}
}
/// <summary>
/// Override the base WndProc adding the hotkey handler.
/// </summary>
/// <param name="m">The message to be handled.</param>
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
// Handle the hotkey message
if (m.Msg == Native.WM_HOTKEY)
{
// If we recognise the hotkey id, handle it.
switch (m.WParam.ToInt32())
{
case TOP_HOTKEY_ID:
SnapTop();
break;
case BOTTOM_HOTKEY_ID:
SnapBottom();
break;
default:
break;
}
}
}
/// <summary>
/// Show the form after being minimised to the tray.
/// </summary>
private void ShowFromTray()
{
Show();
WindowState = FormWindowState.Normal;
}
/// <summary>
/// Form resize handler.
/// </summary>
private void MainForm_Resize(object sender, EventArgs e)
{
// If form was just minimised.
if (WindowState == FormWindowState.Minimized)
{
// Hide the form as well, it can be show using the tray icon.
Hide();
}
}
/// <summary>
/// Form closing handler.
/// </summary>
private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
{
// Clean up hotkey registration.
UnRegisterKeys();
if (aquiredSingletonMutex)
singletonMutex.ReleaseMutex();
}
/// <summary>
/// Tray icon double click handler.
/// </summary>
private void TrayIcon_MouseDoubleClick(object sender, MouseEventArgs e)
{
ShowFromTray();
}
/// <summary>
/// Form closed handler.
/// </summary>
private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
{
// This needs to be done manually as we started with this form hidden.
Application.Exit();
}
/// <summary>
/// Tray tool strip show handler.
/// </summary>
private void ShowToolStripMenuItem_Click(object sender, EventArgs e)
{
ShowFromTray();
}
/// <summary>
/// Tray tool strip quit handler.
/// </summary>
private void QuitToolStripMenuItem_Click(object sender, EventArgs e)
{
Close();
}
}
}