-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml.cs
380 lines (352 loc) · 14.1 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
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media.Imaging;
using Microsoft.Win32;
using TagLib;
using System.Windows.Threading;
using System.Windows.Media;
using System.Windows.Shapes;
namespace Dev_interface
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private bool isPlaying = false;
private bool isMuted = false;
private bool isFullScreen = false;
private Rect previousVideoPosition;
private Panel originalParent;
public MainWindow()
{
InitializeComponent();
LoadSongs();
LoadVideos();
// Registra o manipulador de eventos para o evento PreviewKeyDown
this.PreviewKeyDown += MainWindow_PreviewKeyDown;
}
private void Previous_Click(object sender, MouseButtonEventArgs e)
{
try
{
if (listBoxSongs.Items.Count > 0)
{
int selectedIndex = listBoxSongs.SelectedIndex;
int previousIndex = (selectedIndex - 1 + listBoxSongs.Items.Count) % listBoxSongs.Items.Count; // Calcula o índice da música anterior, garantindo que seja circular
listBoxSongs.SelectedIndex = previousIndex;
}
else
{
MessageBox.Show("No songs available.");
}
}
catch (Exception ex)
{
MessageBox.Show($"Error selecting previous song: {ex.Message}");
}
}
private void Next_Click(object sender, MouseButtonEventArgs e)
{
try
{
if (listBoxSongs.Items.Count > 0)
{
int selectedIndex = listBoxSongs.SelectedIndex;
int nextIndex = (selectedIndex + 1) % listBoxSongs.Items.Count; // Calcula o índice da próxima música, garantindo que seja circular
listBoxSongs.SelectedIndex = nextIndex;
}
else
{
MessageBox.Show("No songs available.");
}
}
catch (Exception ex)
{
MessageBox.Show($"Error selecting next song: {ex.Message}");
}
}
private void PlayButton_Click(object sender, MouseButtonEventArgs e)
{
try
{
if (listBoxSongs.Items.Count > 0)
{
if (listBoxSongs.SelectedItem == null)
{
listBoxSongs.SelectedIndex = 0; // Seleciona a primeira música da lista
}
mediaElement.Play();
isPlaying = true;
UpdatePlaybackIcons();
}
else
{
MessageBox.Show("No songs available to play.");
}
}
catch (Exception ex)
{
MessageBox.Show($"Error playing media: {ex.Message}");
}
}
private void PauseButton_Click(object sender, MouseButtonEventArgs e)
{
try
{
mediaElement.Pause();
isPlaying = false;
UpdatePlaybackIcons();
}
catch (Exception ex)
{
MessageBox.Show($"Error pausing media: {ex.Message}");
}
}
private void UpdatePlaybackIcons()
{
playButton.Visibility = isPlaying ? Visibility.Collapsed : Visibility.Visible;
pauseButton.Visibility = isPlaying ? Visibility.Visible : Visibility.Collapsed;
}
private void VolumeSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
mediaElement.Volume = e.NewValue;
}
private void MuteButton_Click(object sender, MouseButtonEventArgs e)
{
try
{
mediaElement.IsMuted = !mediaElement.IsMuted;
isMuted = true;
UpdateMutekIcons();
}
catch (Exception ex)
{
MessageBox.Show($"Error muting media: {ex.Message}");
}
}
private void PlaySoundButton_Click(object sender, MouseButtonEventArgs e)
{
try
{
mediaElement.IsMuted = !mediaElement.IsMuted;
isMuted = false;
UpdateMutekIcons();
}
catch (Exception ex)
{
MessageBox.Show($"Error unmuting media: {ex.Message}");
}
}
private void UpdateMutekIcons()
{
MuteButton.Visibility = isMuted ? Visibility.Collapsed : Visibility.Visible;
PlaySoundButton.Visibility = isMuted ? Visibility.Visible : Visibility.Collapsed;
}
private void LoadSongs()
{
try
{
string directoryPath = "C:\\Users\\Marcos\\Documents\\extensao\\Dev_interface\\Musics";
string[] songFiles = Directory.GetFiles(directoryPath);
foreach (string songFile in songFiles)
{
listBoxSongs.Items.Add(System.IO.Path.GetFileName(songFile));
}
}
catch (Exception ex)
{
MessageBox.Show($"Error loading songs: {ex.Message}");
}
}
private void listBoxSongs_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
string? selectedSong = listBoxSongs.SelectedItem as string;
if (selectedSong != null)
{
string directoryPath = @"C:\Users\Marcos\Documents\extensao\Dev_interface\Musics";
string songPath = System.IO.Path.Combine(directoryPath, selectedSong);
mediaElement.Source = new Uri("file://" + songPath);
mediaElement.Play();
isPlaying = true;
UpdatePlaybackIcons();
}
}
catch (Exception ex)
{
MessageBox.Show($"Error: {ex.Message}");
}
}
private void LoadVideos()
{
try
{
string directoryPath = "C:\\Users\\Marcos\\Documents\\extensao\\Dev_interface\\Videos";
string[] videoFiles = Directory.GetFiles(directoryPath);
foreach (string videoFile in videoFiles)
{
listBoxVideos.Items.Add(System.IO.Path.GetFileName(videoFile));
}
}
catch (Exception ex)
{
MessageBox.Show($"Error loading videos: {ex.Message}");
}
}
private void listBoxVideos_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
string? selectedVideo = listBoxVideos.SelectedItem as string;
if (selectedVideo != null)
{
string directoryPath = @"C:\Users\Marcos\Documents\extensao\Dev_interface\Videos";
string videoPath = System.IO.Path.Combine(directoryPath, selectedVideo);
if (mediaElement.Parent != null)
originalParent = mediaElement.Parent as Panel;
mediaElement.Source = new Uri("file://" + videoPath);
mediaElement.Play();
isPlaying = true;
UpdatePlaybackIcons();
}
}
catch (Exception ex)
{
MessageBox.Show($"Error: {ex.Message}");
}
}
private void Inicio_Click(object sender, MouseButtonEventArgs e)
{
Menu.Visibility = Visibility.Visible;
Inicio.Visibility = Visibility.Visible;
List_Music.Visibility = Visibility.Collapsed;
List_Video.Visibility = Visibility.Collapsed;
}
private void Music_Click(object sender, MouseButtonEventArgs e)
{
List_Music.Visibility = Visibility.Visible;
List_Video.Visibility = Visibility.Collapsed;
}
private void Video_Click(object sender, MouseButtonEventArgs e)
{
List_Video.Visibility = Visibility.Visible;
List_Music.Visibility = Visibility.Collapsed;
}
private void Menu_Click(object sender, MouseButtonEventArgs e)
{
Menu.Visibility = Visibility.Visible;
List_Music.Visibility = Visibility.Collapsed;
List_Video.Visibility = Visibility.Collapsed;
}
private void ShowFloatingMediaWindow_Click(object sender, RoutedEventArgs e)
{
try
{
// Verifica se mediaElement não é nulo antes de exibi-lo em uma janela flutuante
if (mediaElement != null)
{
originalParent = mediaElement.Parent as Panel; // Armazena o pai original do mediaElement
if (originalParent != null)
originalParent.Children.Remove(mediaElement);
var floatingWindow = new FloatingMediaWindow
{
MediaElementToDisplay = mediaElement
};
floatingWindow.Closed += (s, args) =>
{
// Quando a janela flutuante for fechada, adiciona o mediaElement de volta ao seu pai original (grid)
if (originalParent != null) // Verifica se originalParent não é nulo antes de adicionar o mediaElement de volta a ele
{
originalParent.Children.Add(mediaElement);
}
else
{
// Caso originalParent seja nulo, você pode lidar com isso aqui, se necessário.
// Por exemplo, você pode escolher adicionar o mediaElement a um pai alternativo ou ignorar a operação.
MessageBox.Show("O pai original do MediaElement não foi armazenado corretamente.");
}
};
floatingWindow.Show();
}
else
{
// Trata a situação em que mediaElement é nulo
MessageBox.Show("O MediaElement não está configurado ou é nulo.");
}
}
catch (InvalidOperationException ex)
{
// Trata a exceção de InvalidOperationException que pode ocorrer ao exibir a janela flutuante
MessageBox.Show($"Ocorreu um erro ao exibir a janela flutuante: {ex.Message}");
}
catch (Exception ex)
{
// Trata outras exceções não previstas
MessageBox.Show($"Ocorreu um erro inesperado: {ex.Message}");
}
}
private void FullScreenButton_Click(object sender, RoutedEventArgs e)
{
if (!isFullScreen)
{
// Armazena a posição e o tamanho original do vídeo antes de maximizar em tela cheia
previousVideoPosition = new Rect(mediaElement.Margin.Left, mediaElement.Margin.Top, mediaElement.Width, mediaElement.Height);
// Remove o mediaElement do seu pai atual
originalParent = mediaElement.Parent as Panel; // Armazena o pai original do mediaElement
if (originalParent != null)
originalParent.Children.Remove(mediaElement);
// Adiciona o mediaElement diretamente ao conteúdo da janela para permitir tela cheia
Content = mediaElement;
// Maximiza a janela em tela cheia
WindowStyle = WindowStyle.None;
WindowState = WindowState.Maximized;
ResizeMode = ResizeMode.NoResize;
// Altera a variável de controle para indicar que está em tela cheia
isFullScreen = true;
}
else
{
// Sai da tela cheia e volta ao tamanho normal
ExitMediaElementFullScreen();
}
}
private void MainWindow_PreviewKeyDown(object sender, KeyEventArgs e)
{
// Verifica se a tecla pressionada é a tecla "Esc"
if (e.Key == Key.Escape)
{
// Sai da tela cheia e volta ao tamanho normal
ExitMediaElementFullScreen();
}
}
private void ExitMediaElementFullScreen()
{
if (isFullScreen)
{
// Restaura o mediaElement para o tamanho original
mediaElement.Margin = new Thickness(previousVideoPosition.Left, previousVideoPosition.Top, 0, 0);
mediaElement.Width = previousVideoPosition.Width;
mediaElement.Height = previousVideoPosition.Height;
// Volta o mediaElement ao seu pai original (grid)
if (originalParent != null)
originalParent.Children.Add(mediaElement);
else
{
// Caso originalParent seja nulo, você pode lidar com isso aqui, se necessário.
// Por exemplo, você pode escolher adicionar o mediaElement a um pai alternativo ou ignorar a operação.
MessageBox.Show("O pai original do MediaElement não foi armazenado corretamente.");
}
// Altera a variável de controle para indicar que não está mais em tela cheia
isFullScreen = false;
}
}
}
}