diff options
| author | Mary Guillemard <mary@mary.zone> | 2024-03-02 12:51:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-02 12:51:05 +0100 |
| commit | ec6cb0abb4b7669895b6e96fd7581c93b5abd691 (patch) | |
| tree | 128c862ff5faea0b219467656d4023bee7faefb5 /src/Ryujinx.Ava/UI/Applet/ControllerAppletDialog.axaml | |
| parent | 53b5985da6b9d7b281d9fc25b93bfd1d1918a107 (diff) | |
infra: Make Avalonia the default UI (#6375)
* misc: Move Ryujinx project to Ryujinx.Gtk3
This breaks release CI for now but that's fine.
Signed-off-by: Mary Guillemard <mary@mary.zone>
* misc: Move Ryujinx.Ava project to Ryujinx
This breaks CI for now, but it's fine.
Signed-off-by: Mary Guillemard <mary@mary.zone>
* infra: Make Avalonia the default UI
Should fix CI after the previous changes.
GTK3 isn't build by the release job anymore, only by PR CI.
This also ensure that the test-ava update package is still generated to
allow update from the old testing channel.
Signed-off-by: Mary Guillemard <mary@mary.zone>
* Fix missing copy in create_app_bundle.sh
Signed-off-by: Mary Guillemard <mary@mary.zone>
* Fix syntax error
Signed-off-by: Mary Guillemard <mary@mary.zone>
---------
Signed-off-by: Mary Guillemard <mary@mary.zone>
Diffstat (limited to 'src/Ryujinx.Ava/UI/Applet/ControllerAppletDialog.axaml')
| -rw-r--r-- | src/Ryujinx.Ava/UI/Applet/ControllerAppletDialog.axaml | 145 |
1 files changed, 0 insertions, 145 deletions
diff --git a/src/Ryujinx.Ava/UI/Applet/ControllerAppletDialog.axaml b/src/Ryujinx.Ava/UI/Applet/ControllerAppletDialog.axaml deleted file mode 100644 index b2c22f6b..00000000 --- a/src/Ryujinx.Ava/UI/Applet/ControllerAppletDialog.axaml +++ /dev/null @@ -1,145 +0,0 @@ -<UserControl - x:Class="Ryujinx.Ava.UI.Applet.ControllerAppletDialog" - xmlns="https://github.com/avaloniaui" - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" - xmlns:d="http://schemas.microsoft.com/expression/blend/2008" - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:locale="clr-namespace:Ryujinx.Ava.Common.Locale" - xmlns:applet="using:Ryujinx.Ava.UI.Applet" - mc:Ignorable="d" - Width="400" - Focusable="True" - x:DataType="applet:ControllerAppletDialog"> - <Grid - HorizontalAlignment="Stretch" - VerticalAlignment="Stretch"> - <Grid.RowDefinitions> - <RowDefinition Height="Auto" /> - <RowDefinition Height="*" /> - <RowDefinition Height="Auto" /> - </Grid.RowDefinitions> - <Grid.ColumnDefinitions> - <ColumnDefinition Width="*" /> - <ColumnDefinition Width="Auto" /> - </Grid.ColumnDefinitions> - <Border - Grid.Column="0" - Grid.Row="0" - Grid.ColumnSpan="2" - Margin="0 0 0 10" - BorderBrush="{DynamicResource ThemeControlBorderColor}" - BorderThickness="1" - CornerRadius="5"> - <StackPanel - Spacing="10" - Margin="10"> - <TextBlock - Text="{locale:Locale ControllerAppletDescription}" /> - <TextBlock - IsVisible="{Binding IsDocked}" - FontWeight="Bold" - Text="{locale:Locale ControllerAppletDocked}" /> - </StackPanel> - </Border> - <Border - Grid.Column="0" - Grid.Row="1" - BorderBrush="{DynamicResource ThemeControlBorderColor}" - BorderThickness="1" - CornerRadius="5" - Margin="0 0 10 0"> - <StackPanel - Margin="10" - Spacing="10" - Orientation="Vertical"> - <TextBlock - HorizontalAlignment="Center" - VerticalAlignment="Center" - TextAlignment="Center" - FontWeight="Bold" - Text="{locale:Locale ControllerAppletControllers}" /> - <StackPanel - Spacing="10" - HorizontalAlignment="Center" - VerticalAlignment="Center" - Orientation="Horizontal"> - <Image - Height="50" - Width="50" - Stretch="Uniform" - Source="{Binding ProControllerImage}" - IsVisible="{Binding SupportsProController}" /> - <Image - Height="50" - Width="50" - Stretch="Uniform" - Source="{Binding JoyconPairImage}" - IsVisible="{Binding SupportsJoyconPair}" /> - <Image - Height="50" - Width="50" - Stretch="Uniform" - Source="{Binding JoyconLeftImage}" - IsVisible="{Binding SupportsLeftJoycon}" /> - <Image - Height="50" - Width="50" - Stretch="Uniform" - Source="{Binding JoyconRightImage}" - IsVisible="{Binding SupportsRightJoycon}" /> - </StackPanel> - </StackPanel> - </Border> - <Border - Grid.Column="1" - Grid.Row="1" - BorderBrush="{DynamicResource ThemeControlBorderColor}" - BorderThickness="1" - CornerRadius="5"> - <StackPanel - Margin="10" - Spacing="10" - Orientation="Vertical"> - <TextBlock - HorizontalAlignment="Center" - VerticalAlignment="Center" - TextAlignment="Center" - FontWeight="Bold" - Text="{locale:Locale ControllerAppletPlayers}" /> - <Border Height="50"> - <TextBlock - HorizontalAlignment="Center" - VerticalAlignment="Center" - TextAlignment="Center" - FontSize="40" - FontWeight="Thin" - Text="{Binding PlayerCount}" /> - </Border> - </StackPanel> - </Border> - <Panel - Margin="0 24 0 0" - Grid.Column="0" - Grid.Row="2" - Grid.ColumnSpan="2"> - <StackPanel - Orientation="Horizontal" - Spacing="10" - HorizontalAlignment="Right"> - <Button - Name="SaveButton" - MinWidth="90" - Command="{Binding OpenSettingsWindow}"> - <TextBlock Text="{locale:Locale DialogOpenSettingsWindowLabel}" /> - </Button> - <Button - Name="CancelButton" - MinWidth="90" - Command="{Binding Close}"> - <TextBlock Text="{locale:Locale SettingsButtonClose}" /> - </Button> - </StackPanel> - </Panel> - </Grid> -</UserControl> - |
