| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using Avalonia.Threading;
- using Ryujinx.Ava.UI.ViewModels;
- namespace Ryujinx.Ava.Common
- {
- public static class XCITrimmerLog
- {
- internal class MainWindow : Ryujinx.Common.Logging.XCIFileTrimmerLog
- {
- private readonly MainWindowViewModel _viewModel;
- public MainWindow(MainWindowViewModel viewModel)
- {
- _viewModel = viewModel;
- }
- public override void Progress(long current, long total, string text, bool complete)
- {
- Dispatcher.UIThread.Post(() =>
- {
- _viewModel.StatusBarProgressMaximum = (int)(total);
- _viewModel.StatusBarProgressValue = (int)(current);
- });
- }
- }
-
- internal class TrimmerWindow : Ryujinx.Common.Logging.XCIFileTrimmerLog
- {
- private readonly XCITrimmerViewModel _viewModel;
- public TrimmerWindow(XCITrimmerViewModel viewModel)
- {
- _viewModel = viewModel;
- }
- public override void Progress(long current, long total, string text, bool complete)
- {
- Dispatcher.UIThread.Post(() =>
- {
- _viewModel.SetProgress((int)(current), (int)(total));
- });
- }
- }
- }
- }
|