-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml.cs
More file actions
241 lines (203 loc) · 7.89 KB
/
MainWindow.xaml.cs
File metadata and controls
241 lines (203 loc) · 7.89 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
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
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text.RegularExpressions;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using AlwaysOnTop.Models;
using AlwaysOnTop.Services;
namespace AlwaysOnTop
{
public partial class MainWindow : Window
{
private readonly WindowEnumerator _enumerator;
private readonly WindowManager _windowManager;
private readonly ObservableCollection<WindowInfo> _windows;
public MainWindow()
{
InitializeComponent();
_enumerator = new WindowEnumerator();
_windowManager = new WindowManager();
_windows = new ObservableCollection<WindowInfo>();
WindowListView.ItemsSource = _windows;
// Start monitoring
_windowManager.StartMonitoring();
// Load windows on startup
LoadWindows();
}
private void LoadWindows()
{
try
{
var windows = _enumerator.GetAllWindows();
_windows.Clear();
foreach (var window in windows.OrderBy(w => w.DisplayName))
{
_windows.Add(window);
}
UpdateCounts();
}
catch (Exception ex)
{
MessageBox.Show($"Error loading windows: {ex.Message}",
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
private void UpdateCounts()
{
WindowCountText.Text = _windows.Count.ToString();
SelectedCountText.Text = _windows.Count(w => w.IsSelected).ToString();
}
private void RefreshButton_Click(object sender, RoutedEventArgs e)
{
LoadWindows();
}
private void WindowListView_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
// Optional: handle selection changes if needed
}
private void WindowCheckBox_Changed(object sender, RoutedEventArgs e)
{
UpdateCounts();
}
private void PriorityTextBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
// Only allow numbers
Regex regex = new Regex("[^0-9]+");
e.Handled = regex.IsMatch(e.Text);
}
private void ApplyButton_Click(object sender, RoutedEventArgs e)
{
try
{
var selectedWindows = _windows.Where(w => w.IsSelected).ToList();
if (selectedWindows.Count == 0)
{
MessageBox.Show("Please select at least one window.",
"No Selection", MessageBoxButton.OK, MessageBoxImage.Information);
return;
}
// Validate priorities
var invalidPriorities = selectedWindows.Where(w => w.Priority <= 0).ToList();
if (invalidPriorities.Any())
{
MessageBox.Show("Please assign a priority number (1 or higher) to all selected windows.",
"Invalid Priority", MessageBoxButton.OK, MessageBoxImage.Warning);
return;
}
// Check for duplicate priorities
var duplicates = selectedWindows.GroupBy(w => w.Priority)
.Where(g => g.Count() > 1)
.ToList();
if (duplicates.Any())
{
var result = MessageBox.Show(
"Some windows have the same priority. Windows with the same priority may not stack predictably.\n\n" +
"Do you want to continue anyway?",
"Duplicate Priorities",
MessageBoxButton.YesNo,
MessageBoxImage.Question);
if (result != MessageBoxResult.Yes)
return;
}
// Apply always-on-top to selected windows
int successCount = 0;
foreach (var window in selectedWindows)
{
if (_windowManager.AddManagedWindow(window, window.Priority))
{
successCount++;
}
}
// Enforce the Z-order based on priorities
_windowManager.EnforceZOrder();
MessageBox.Show(
$"Successfully applied Always On Top to {successCount} window(s).\n\n" +
"The windows will maintain their priority order automatically.",
"Success",
MessageBoxButton.OK,
MessageBoxImage.Information);
// Refresh the list to show updated status
RefreshWindowStatus();
}
catch (Exception ex)
{
MessageBox.Show($"Error applying Always On Top: {ex.Message}",
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
private void RemoveButton_Click(object sender, RoutedEventArgs e)
{
try
{
var selectedWindows = _windows.Where(w => w.IsSelected).ToList();
if (selectedWindows.Count == 0)
{
MessageBox.Show("Please select at least one window to remove.",
"No Selection", MessageBoxButton.OK, MessageBoxImage.Information);
return;
}
int successCount = 0;
foreach (var window in selectedWindows)
{
if (_windowManager.RemoveManagedWindow(window))
{
window.IsSelected = false;
successCount++;
}
}
MessageBox.Show($"Removed Always On Top from {successCount} window(s).",
"Success", MessageBoxButton.OK, MessageBoxImage.Information);
RefreshWindowStatus();
}
catch (Exception ex)
{
MessageBox.Show($"Error removing Always On Top: {ex.Message}",
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
private void ClearAllButton_Click(object sender, RoutedEventArgs e)
{
try
{
var result = MessageBox.Show(
"This will remove Always On Top from all managed windows.\n\nContinue?",
"Confirm Clear All",
MessageBoxButton.YesNo,
MessageBoxImage.Question);
if (result != MessageBoxResult.Yes)
return;
_windowManager.ClearAll();
foreach (var window in _windows)
{
window.IsSelected = false;
window.Priority = 0;
}
MessageBox.Show("All windows have been cleared.",
"Success", MessageBoxButton.OK, MessageBoxImage.Information);
RefreshWindowStatus();
}
catch (Exception ex)
{
MessageBox.Show($"Error clearing windows: {ex.Message}",
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
private void RefreshWindowStatus()
{
foreach (var window in _windows)
{
_enumerator.UpdateWindowInfo(window);
}
}
protected override void OnClosed(EventArgs e)
{
base.OnClosed(e);
// Clean up
_windowManager.StopMonitoring();
_windowManager.Dispose();
}
}
}