2022-05-15 13:30:15 +02:00
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Input;
|
|
|
|
using Avalonia.Interactivity;
|
|
|
|
using Avalonia.Markup.Xaml;
|
2022-12-29 15:24:05 +01:00
|
|
|
using Ryujinx.Ava.UI.Helpers;
|
|
|
|
using Ryujinx.Ava.UI.ViewModels;
|
2022-05-15 13:30:15 +02:00
|
|
|
using Ryujinx.Ui.App.Common;
|
|
|
|
using System;
|
|
|
|
|
2022-12-29 15:24:05 +01:00
|
|
|
namespace Ryujinx.Ava.UI.Controls
|
2022-05-15 13:30:15 +02:00
|
|
|
{
|
|
|
|
public partial class GameListView : UserControl
|
|
|
|
{
|
|
|
|
public static readonly RoutedEvent<ApplicationOpenedEventArgs> ApplicationOpenedEvent =
|
|
|
|
RoutedEvent.Register<GameGridView, ApplicationOpenedEventArgs>(nameof(ApplicationOpened), RoutingStrategies.Bubble);
|
|
|
|
|
|
|
|
public event EventHandler<ApplicationOpenedEventArgs> ApplicationOpened
|
|
|
|
{
|
2023-01-21 02:57:37 +01:00
|
|
|
add { AddHandler(ApplicationOpenedEvent, value); }
|
2022-05-15 13:30:15 +02:00
|
|
|
remove { RemoveHandler(ApplicationOpenedEvent, value); }
|
|
|
|
}
|
|
|
|
|
2023-01-21 02:57:37 +01:00
|
|
|
public GameListView()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
{
|
|
|
|
AvaloniaXamlLoader.Load(this);
|
|
|
|
}
|
|
|
|
|
2022-05-15 13:30:15 +02:00
|
|
|
public void GameList_DoubleTapped(object sender, RoutedEventArgs args)
|
|
|
|
{
|
|
|
|
if (sender is ListBox listBox)
|
|
|
|
{
|
|
|
|
if (listBox.SelectedItem is ApplicationData selected)
|
|
|
|
{
|
|
|
|
RaiseEvent(new ApplicationOpenedEventArgs(selected, ApplicationOpenedEvent));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void GameList_SelectionChanged(object sender, SelectionChangedEventArgs args)
|
|
|
|
{
|
|
|
|
if (sender is ListBox listBox)
|
|
|
|
{
|
2023-01-21 02:57:37 +01:00
|
|
|
(DataContext as MainWindowViewModel).ListSelectedApplication = listBox.SelectedItem as ApplicationData;
|
2022-05-15 13:30:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SearchBox_OnKeyUp(object sender, KeyEventArgs e)
|
|
|
|
{
|
|
|
|
(DataContext as MainWindowViewModel).SearchText = (sender as TextBox).Text;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|