mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 14:48:34 +00:00
719dc97bbd
* Start Refactor * Dialogue opens * Changes * Switch to ListBox * Fix bugs and stuff * Fix spacing * Implement OpenLocation * Change icon * Color * Color * Remove background * Make no update the same height * Fix height and smooth scroll * Height * Fix update selection * Make window smaller * Add back remove all button * Make selection more obvious * Hide selection bar on SaveManager * Fix autoscroll * Fix no update not staying selected * Better file opener * Fix * Revert that * Update Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * Update Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * Update Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * Log warning * Update Ryujinx.Ava/UI/ViewModels/TitleUpdateViewModel.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> Co-authored-by: Ac_K <Acoustik666@gmail.com>
116 lines
3.6 KiB
C#
116 lines
3.6 KiB
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Styling;
|
|
using FluentAvalonia.UI.Controls;
|
|
using Ryujinx.Ava.Common.Locale;
|
|
using Ryujinx.Ava.UI.Helpers;
|
|
using Ryujinx.Ava.UI.Models;
|
|
using Ryujinx.Ava.UI.ViewModels;
|
|
using Ryujinx.Common.Utilities;
|
|
using Ryujinx.HLE.FileSystem;
|
|
using Ryujinx.Ui.Common.Helper;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Button = Avalonia.Controls.Button;
|
|
|
|
namespace Ryujinx.Ava.UI.Windows
|
|
{
|
|
public partial class TitleUpdateWindow : UserControl
|
|
{
|
|
public TitleUpdateViewModel ViewModel;
|
|
|
|
public TitleUpdateWindow()
|
|
{
|
|
DataContext = this;
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
public TitleUpdateWindow(VirtualFileSystem virtualFileSystem, ulong titleId, string titleName)
|
|
{
|
|
DataContext = ViewModel = new TitleUpdateViewModel(virtualFileSystem, titleId, titleName);
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static async Task Show(VirtualFileSystem virtualFileSystem, ulong titleId, string titleName)
|
|
{
|
|
ContentDialog contentDialog = new()
|
|
{
|
|
PrimaryButtonText = "",
|
|
SecondaryButtonText = "",
|
|
CloseButtonText = "",
|
|
Content = new TitleUpdateWindow(virtualFileSystem, titleId, titleName),
|
|
Title = string.Format(LocaleManager.Instance[LocaleKeys.GameUpdateWindowHeading], titleName, titleId.ToString("X16"))
|
|
};
|
|
|
|
Style bottomBorder = new(x => x.OfType<Grid>().Name("DialogSpace").Child().OfType<Border>());
|
|
bottomBorder.Setters.Add(new Setter(IsVisibleProperty, false));
|
|
|
|
contentDialog.Styles.Add(bottomBorder);
|
|
|
|
await ContentDialogHelper.ShowAsync(contentDialog);
|
|
}
|
|
|
|
private void Close(object sender, RoutedEventArgs e)
|
|
{
|
|
((ContentDialog)Parent).Hide();
|
|
}
|
|
|
|
public void Save(object sender, RoutedEventArgs e)
|
|
{
|
|
ViewModel._titleUpdateWindowData.Paths.Clear();
|
|
|
|
ViewModel._titleUpdateWindowData.Selected = "";
|
|
|
|
foreach (TitleUpdateModel update in ViewModel.TitleUpdates)
|
|
{
|
|
ViewModel._titleUpdateWindowData.Paths.Add(update.Path);
|
|
|
|
if (update == ViewModel.SelectedUpdate)
|
|
{
|
|
ViewModel._titleUpdateWindowData.Selected = update.Path;
|
|
}
|
|
}
|
|
|
|
using (FileStream titleUpdateJsonStream = File.Create(ViewModel._titleUpdateJsonPath, 4096, FileOptions.WriteThrough))
|
|
{
|
|
titleUpdateJsonStream.Write(Encoding.UTF8.GetBytes(JsonHelper.Serialize(ViewModel._titleUpdateWindowData, true)));
|
|
}
|
|
|
|
if (VisualRoot is MainWindow window)
|
|
{
|
|
window.ViewModel.LoadApplications();
|
|
}
|
|
|
|
((ContentDialog)Parent).Hide();
|
|
}
|
|
|
|
private void OpenLocation(object sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button button)
|
|
{
|
|
if (button.DataContext is TitleUpdateModel model)
|
|
{
|
|
OpenHelper.LocateFile(model.Path);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void RemoveUpdate(object sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button button)
|
|
{
|
|
ViewModel.RemoveUpdate((TitleUpdateModel)button.DataContext);
|
|
}
|
|
}
|
|
|
|
private void RemoveAll(object sender, RoutedEventArgs e)
|
|
{
|
|
ViewModel.TitleUpdates.Clear();
|
|
|
|
ViewModel.SortUpdates();
|
|
}
|
|
}
|
|
} |