-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWindow.xaml.cs
More file actions
433 lines (349 loc) · 13.7 KB
/
Copy pathMainWindow.xaml.cs
File metadata and controls
433 lines (349 loc) · 13.7 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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
using ScrollV.Core;
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
namespace ScrollV
{
public partial class MainWindow : Window
{
private ScrollVManager? _manager;
private bool _isRunning = true;
private LocalizationManager _loc = LocalizationManager.Instance;
private SmoothScrollBehavior? _smoothScroll;
public MainWindow()
{
InitializeComponent();
Loaded += MainWindow_Loaded;
// Initialize smooth scrolling for the menu
_smoothScroll = SmoothScrollBehavior.Attach(ContentScrollViewer);
}
private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
// Get or create manager
_manager = ((App)Application.Current).GetManager();
if (_manager == null)
{
_manager = new ScrollVManager();
}
// Load settings
LoadSettings();
// Initialize localization
_loc.CurrentLanguage = _manager.Settings.Language;
_loc.LanguageChanged += OnLanguageChanged;
UpdateLanguageUI();
// Start the manager
_manager.Start();
_isRunning = true;
// Subscribe to events
_manager.StatusChanged += Manager_StatusChanged;
_manager.ScrollActivity += Manager_ScrollActivity;
UpdateUI();
}
private void LoadSettings()
{
if (_manager == null) return;
var settings = _manager.Settings;
EnableToggle.IsChecked = settings.Enabled;
// Check registry for actual startup state
StartupToggle.IsChecked = App.IsStartWithWindowsEnabled();
AccelerationToggle.IsChecked = settings.UseAcceleration;
SmoothnessSlider.Value = settings.SmoothnessFactor * 100;
SpeedSlider.Value = settings.ScrollMultiplier * 100;
FrictionSlider.Value = settings.FrictionFactor * 100;
GlideSlider.Value = settings.MomentumFactor * 100;
// Set easing combo box
foreach (ComboBoxItem item in EasingComboBox.Items)
{
if (item.Tag?.ToString() == settings.EasingFunction.ToString())
{
EasingComboBox.SelectedItem = item;
break;
}
}
// Load excluded apps
RefreshExcludedAppsList();
}
private void RefreshExcludedAppsList()
{
if (_manager == null) return;
var count = _manager.Settings.ExcludedApps?.Count ?? 0;
ExcludedAppsCount.Text = count == 0
? _loc["NoAppsExcluded"]
: string.Format(_loc["AppsExcluded"], count);
}
private void Manager_StatusChanged(object? sender, string status)
{
// Status description removed from UI
}
private void Manager_ScrollActivity(object? sender, ScrollActivityEventArgs e)
{
// Could show activity indicator or log
}
private void UpdateUI()
{
if (_isRunning)
{
StatusIndicator.Fill = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#10B981"));
}
else
{
StatusIndicator.Fill = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#F59E0B"));
}
}
#region Language
private void FlagVN_Click(object sender, MouseButtonEventArgs e)
{
SetLanguage("vi");
}
private void FlagUS_Click(object sender, MouseButtonEventArgs e)
{
SetLanguage("en");
}
private void SetLanguage(string lang)
{
if (_manager == null) return;
_loc.CurrentLanguage = lang;
_manager.Settings.Language = lang;
SaveSettings();
}
private void OnLanguageChanged(object? sender, string lang)
{
Dispatcher.Invoke(() =>
{
UpdateLanguageUI();
UpdateFlagSelection();
});
}
private void UpdateLanguageUI()
{
// Section titles
LblSettings.Text = _loc["Settings"];
LblTuning.Text = _loc["Tuning"];
LblExceptions.Text = _loc["Exceptions"];
// Settings
LblEnableSmooth.Text = _loc["EnableSmooth"];
LblEnableSmoothDesc.Text = _loc["EnableSmoothDesc"];
LblStartWindows.Text = _loc["StartWithWindows"];
LblStartWindowsDesc.Text = _loc["StartWithWindowsDesc"];
LblAcceleration.Text = _loc["ScrollAcceleration"];
LblAccelerationDesc.Text = _loc["ScrollAccelerationDesc"];
// Tuning
LblSmoothness.Text = _loc["Smoothness"];
LblSpeed.Text = _loc["ScrollSpeed"];
LblMomentum.Text = _loc["Momentum"];
LblGlide.Text = _loc["Glide"];
LblAnimation.Text = _loc["Animation"];
// Exceptions
LblExcludedApps.Text = _loc["ExcludedApps"];
BrowseAppsButton.Content = _loc["Manage"];
// Footer
LblMadeBy.Text = _loc["MadeBy"];
// Update dynamic values
RefreshExcludedAppsList();
UpdateSliderLabels();
UpdateFlagSelection();
}
private void UpdateFlagSelection()
{
var activeColor = new SolidColorBrush((Color)ColorConverter.ConvertFromString("#8B5CF6"));
var inactiveColor = new SolidColorBrush(Colors.Transparent);
FlagVN.BorderBrush = _loc.CurrentLanguage == "vi" ? activeColor : inactiveColor;
FlagUS.BorderBrush = _loc.CurrentLanguage == "en" ? activeColor : inactiveColor;
}
private void UpdateSliderLabels()
{
// Force update slider labels with current values
SmoothnessSlider_ValueChanged(SmoothnessSlider, new RoutedPropertyChangedEventArgs<double>(0, SmoothnessSlider.Value));
FrictionSlider_ValueChanged(FrictionSlider, new RoutedPropertyChangedEventArgs<double>(0, FrictionSlider.Value));
GlideSlider_ValueChanged(GlideSlider, new RoutedPropertyChangedEventArgs<double>(0, GlideSlider.Value));
}
#endregion
#region Social Links
private void SocialFacebook_Click(object sender, MouseButtonEventArgs e)
{
OpenUrl("https://www.facebook.com/rain.107/");
}
private void SocialGithub_Click(object sender, MouseButtonEventArgs e)
{
OpenUrl("https://github.com/rainaku/Scroll-V");
}
private void SocialWebsite_Click(object sender, MouseButtonEventArgs e)
{
OpenUrl("https://rainaku.id.vn");
}
private void OpenUrl(string url)
{
try
{
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
FileName = url,
UseShellExecute = true
});
}
catch { }
}
#endregion
#region Window Controls
private void Header_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
if (e.ButtonState == MouseButtonState.Pressed)
DragMove();
}
private void MinimizeButton_Click(object sender, RoutedEventArgs e)
{
WindowState = WindowState.Minimized;
}
private void CloseButton_Click(object sender, RoutedEventArgs e)
{
HideWindow();
}
#endregion
#region Settings Controls
private void EnableToggle_Changed(object sender, RoutedEventArgs e)
{
if (_manager == null) return;
_manager.Settings.Enabled = EnableToggle.IsChecked == true;
_manager.ApplySettings();
SaveSettings();
}
private void StartupToggle_Changed(object sender, RoutedEventArgs e)
{
if (_manager == null) return;
bool enabled = StartupToggle.IsChecked == true;
_manager.Settings.StartWithWindows = enabled;
App.SetStartWithWindows(enabled);
SaveSettings();
}
private void AccelerationToggle_Changed(object sender, RoutedEventArgs e)
{
if (_manager == null) return;
_manager.Settings.UseAcceleration = AccelerationToggle.IsChecked == true;
_manager.ApplySettings();
SaveSettings();
}
private void SmoothnessSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (_manager == null || SmoothnessValue == null) return;
double value = SmoothnessSlider.Value / 100.0;
_manager.Settings.SmoothnessFactor = value;
_manager.ApplySettings();
// Update label
if (value < 0.08) SmoothnessValue.Text = _loc["VerySmooth"];
else if (value < 0.12) SmoothnessValue.Text = _loc["Smooth"];
else if (value < 0.18) SmoothnessValue.Text = _loc["Medium"];
else if (value < 0.25) SmoothnessValue.Text = _loc["Fast"];
else SmoothnessValue.Text = _loc["Instant"];
SaveSettings();
}
private void SpeedSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (_manager == null || SpeedValue == null) return;
double value = SpeedSlider.Value / 100.0;
// Set both ScrollMultiplier (base speed) and AccelerationFactor (rapid scroll boost)
_manager.Settings.ScrollMultiplier = value;
_manager.Settings.AccelerationFactor = 1.0 + (value - 1.0) * 0.5; // Proportional acceleration
_manager.ApplySettings();
SpeedValue.Text = $"{value:F1}x";
SaveSettings();
}
private void FrictionSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (_manager == null || FrictionValue == null) return;
double value = FrictionSlider.Value / 100.0;
_manager.Settings.FrictionFactor = value;
_manager.ApplySettings();
if (value < 0.85) FrictionValue.Text = _loc["Low"];
else if (value < 0.90) FrictionValue.Text = _loc["Medium"];
else if (value < 0.95) FrictionValue.Text = _loc["High"];
else FrictionValue.Text = _loc["VeryHigh"];
SaveSettings();
}
private void GlideSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (_manager == null || GlideValue == null) return;
double value = GlideSlider.Value / 100.0; // 1.0 - 5.0
_manager.Settings.MomentumFactor = value;
_manager.ApplySettings();
if (value < 1.5) GlideValue.Text = _loc["Subtle"];
else if (value < 2.5) GlideValue.Text = _loc["Medium"];
else if (value < 3.5) GlideValue.Text = _loc["Strong"];
else if (value < 4.5) GlideValue.Text = _loc["VeryStrong"];
else GlideValue.Text = _loc["Maximum"];
SaveSettings();
}
private void EasingComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (_manager == null || EasingComboBox.SelectedItem == null) return;
var item = (ComboBoxItem)EasingComboBox.SelectedItem;
if (Enum.TryParse<EasingType>(item.Tag?.ToString(), out var easing))
{
_manager.Settings.EasingFunction = easing;
_manager.ApplySettings();
SaveSettings();
}
}
#endregion
#region Per-App Settings
private void BrowseAppsButton_Click(object sender, RoutedEventArgs e)
{
if (_manager == null) return;
var dialog = new RunningAppsDialog(_manager.Settings);
dialog.Owner = this;
dialog.ShowDialog();
// Refresh the count and save
RefreshExcludedAppsList();
SaveSettings();
}
#endregion
#region System Tray
private void TrayIcon_TrayMouseDoubleClick(object sender, RoutedEventArgs e)
{
ShowWindow();
}
private void TrayOpen_Click(object sender, RoutedEventArgs e)
{
ShowWindow();
}
private void ShowWindow()
{
Visibility = Visibility.Visible;
Show();
WindowState = WindowState.Normal;
Activate();
Topmost = true; // Bring to front
Topmost = false; // Allow other windows on top again
}
public void HideWindow()
{
Visibility = Visibility.Hidden;
Hide();
// Optimize memory when hiding
App.OptimizeMemory();
}
private void TrayToggle_Click(object sender, RoutedEventArgs e)
{
_manager?.Toggle();
_isRunning = !_isRunning;
UpdateUI();
}
private void TrayExit_Click(object sender, RoutedEventArgs e)
{
TrayIcon.Dispose();
_manager?.Dispose();
Application.Current.Shutdown();
}
#endregion
private void SaveSettings()
{
_manager?.SaveSettings();
}
protected override void OnClosed(EventArgs e)
{
TrayIcon.Dispose();
base.OnClosed(e);
}
}
}