-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainWindow.xaml.cs
212 lines (182 loc) · 6.67 KB
/
MainWindow.xaml.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
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Reflection;
using System.Windows;
using System.Windows.Input;
using Z_Toolbar.MainLogic;
using System.Linq;
using Z_Toolbar.Tools;
using System.Windows.Media.Imaging;
using System.Windows.Controls;
using System.Windows.Media;
using Hardcodet.Wpf.TaskbarNotification;
using Microsoft.WindowsAPICodePack.Dialogs;
using System.Threading.Tasks;
using Z_Toolbar.UiComponents;
namespace Z_Toolbar
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
//Globar Variables
internal static ObservableCollection<ApplicationItem> loa = new ObservableCollection<ApplicationItem>();
internal static string MainExecutable = Assembly.GetExecutingAssembly().Location;
internal static string MainLocation = Path.GetDirectoryName(MainExecutable); //MainExecutable.Remove(MainExecutable.LastIndexOf('\\'), (MainExecutable.Length - MainExecutable.LastIndexOf('\\')))
internal static string ConfigLocation = Path.Combine(MainLocation, "Apps.json");
//Globar Variables
public MainWindow()
{
InitializeComponent();
}
private void MenuItem_Click(object sender, RoutedEventArgs e)
{
Application.Current.Shutdown();
}
private void window_MouseDown(object sender, MouseButtonEventArgs e)
{
if (e.ChangedButton == MouseButton.Left) //Window drag event handler via the drag button
{
window.DragMove();
e.Handled = true;
}
}
private async void MenuItem_Click_plus(object sender, RoutedEventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog()
{
AddExtension = true,
CheckPathExists = true,
DefaultExt = "exe",
Filter = "Applications (*.exe)|*.exe|Batch Files (*.bat)|*.bat",
Multiselect = true,
Title = "Add Shortcuts",
ValidateNames = true
};
if (ofd.ShowDialog() == true)
{
foreach (var item in ofd.FileNames)
{
var app = new ApplicationItem()
{
Name = item.Remove(0, item.LastIndexOf('\\') + 1),
Path = item,
IconBytes = UITools.GetIcon(item, false),
IsFolder = false
};
if (!loa.AppExists(app)) //Check if app exists in the list
{
loa.Add(app);
}
}
lv.ItemsSource = loa;
await DataLogic.SaveDataAsync(loa).ConfigureAwait(false); //Save apps to Apps.json
}
}
private async void window_Initialized(object sender, EventArgs e)
{
if (File.Exists(ConfigLocation))
{
try
{
loa = await DataLogic.LoadDataAsync(); //Get apps from Apps.json
loa = UITools.PopulateIcons(loa);
lv.ItemsSource = loa;
await DataLogic.SaveDataAsync(loa).ConfigureAwait(false);
}
catch (Exception)
{
CustomMessageBox cmb = new CustomMessageBox("It Appears that app data is either missing or corrupt, if the \"Apps.json\" file is still present try deleting it and restarting the program.", MessageBoxIcon.Error);
cmb.ShowDialog();
}
}
}
private void window_MouseEnter(object sender, MouseEventArgs e)
{
Window win = sender as Window;
if (win.Top < 0) //Simple slide bottom animation
{
while (win.Top < 0)
{
win.Top += 0.5; //Adjust for smoother animation
if (win.Opacity < 1)
{
win.Opacity += 0.1;
}
}
}
e.Handled = true;
}
private void window_MouseLeave(object sender, MouseEventArgs e)
{
Window win = sender as Window;
if (win.Top >= 0) //Simple slide top animation
{
while (win.Top > -143)
{
win.Top -= 0.5; //Adjust for smoother animation
if (win.Opacity > 0.2)
{
win.Opacity -= 0.1;
}
}
}
e.Handled = true;
}
private void MenuItem_Click_Prop(object sender, RoutedEventArgs e)
{
UiComponents.Settings s = new UiComponents.Settings();
s.ShowDialog();
}
private void lv_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
{
Decorator border = VisualTreeHelper.GetChild((ListView)sender, 0) as Decorator;
ScrollViewer scrollviewer = border.Child as ScrollViewer;
if (e.Delta < 0)
{
scrollviewer.PageRight();
}
else
{
scrollviewer.PageLeft();
}
e.Handled = true;
}
private async void MenuItem_Click_Folder(object sender, RoutedEventArgs e)
{
CommonOpenFileDialog cofd = new CommonOpenFileDialog()
{
IsFolderPicker = true,
EnsureFileExists = true,
EnsurePathExists = true,
Multiselect = true,
Title = "Pick a folder",
EnsureValidNames = true
};
if (cofd.ShowDialog() == CommonFileDialogResult.Ok)
{
foreach (var item in cofd.FileNames)
{
var app = new ApplicationItem()
{
Name = item.Remove(0, item.LastIndexOf('\\') + 1),
Path = item,
IconBytes = UITools.GetIcon(item, true),
IsFolder = true
};
if (!loa.AppExists(app)) //Check if app exists in the list
{
loa.Add(app);
}
}
lv.ItemsSource = loa;
await DataLogic.SaveDataAsync(loa).ConfigureAwait(false); //Save apps to Apps.json
}
cofd.Dispose();
}
}
}